commit eabe2e29694c0dfc90558542e84c49980201a045 Author: jonasgaudian <43753916+jonasgaudian@users.noreply.github.com> Date: Thu Feb 19 17:18:23 2026 +0100 welcome gitea diff --git a/__pycache__/check_duplicates.cpython-311.pyc b/__pycache__/check_duplicates.cpython-311.pyc new file mode 100644 index 0000000..246dd43 Binary files /dev/null and b/__pycache__/check_duplicates.cpython-311.pyc differ diff --git a/__pycache__/check_duplicates.cpython-312.pyc b/__pycache__/check_duplicates.cpython-312.pyc new file mode 100644 index 0000000..1a586e8 Binary files /dev/null and b/__pycache__/check_duplicates.cpython-312.pyc differ diff --git a/__pycache__/config.cpython-311.pyc b/__pycache__/config.cpython-311.pyc new file mode 100644 index 0000000..9b373b0 Binary files /dev/null and b/__pycache__/config.cpython-311.pyc differ diff --git a/__pycache__/config.cpython-312.pyc b/__pycache__/config.cpython-312.pyc new file mode 100644 index 0000000..b785d64 Binary files /dev/null and b/__pycache__/config.cpython-312.pyc differ diff --git a/__pycache__/first.cpython-311.pyc b/__pycache__/first.cpython-311.pyc new file mode 100644 index 0000000..96c7152 Binary files /dev/null and b/__pycache__/first.cpython-311.pyc differ diff --git a/__pycache__/first.cpython-312.pyc b/__pycache__/first.cpython-312.pyc new file mode 100644 index 0000000..f9fce4a Binary files /dev/null and b/__pycache__/first.cpython-312.pyc differ diff --git a/__pycache__/generate.cpython-311.pyc b/__pycache__/generate.cpython-311.pyc new file mode 100644 index 0000000..d6bdd35 Binary files /dev/null and b/__pycache__/generate.cpython-311.pyc differ diff --git a/__pycache__/generate.cpython-312.pyc b/__pycache__/generate.cpython-312.pyc new file mode 100644 index 0000000..d1a2e98 Binary files /dev/null and b/__pycache__/generate.cpython-312.pyc differ diff --git a/__pycache__/llm_client.cpython-311.pyc b/__pycache__/llm_client.cpython-311.pyc new file mode 100644 index 0000000..eff6599 Binary files /dev/null and b/__pycache__/llm_client.cpython-311.pyc differ diff --git a/__pycache__/llm_client.cpython-312.pyc b/__pycache__/llm_client.cpython-312.pyc new file mode 100644 index 0000000..22463db Binary files /dev/null and b/__pycache__/llm_client.cpython-312.pyc differ diff --git a/__pycache__/manifest_manager.cpython-311.pyc b/__pycache__/manifest_manager.cpython-311.pyc new file mode 100644 index 0000000..a480374 Binary files /dev/null and b/__pycache__/manifest_manager.cpython-311.pyc differ diff --git a/__pycache__/manifest_manager.cpython-312.pyc b/__pycache__/manifest_manager.cpython-312.pyc new file mode 100644 index 0000000..d25f63e Binary files /dev/null and b/__pycache__/manifest_manager.cpython-312.pyc differ diff --git a/__pycache__/models.cpython-311.pyc b/__pycache__/models.cpython-311.pyc new file mode 100644 index 0000000..f39a068 Binary files /dev/null and b/__pycache__/models.cpython-311.pyc differ diff --git a/__pycache__/models.cpython-312.pyc b/__pycache__/models.cpython-312.pyc new file mode 100644 index 0000000..1837d7d Binary files /dev/null and b/__pycache__/models.cpython-312.pyc differ diff --git a/batch.yaml b/batch.yaml new file mode 100644 index 0000000..c3e3394 --- /dev/null +++ b/batch.yaml @@ -0,0 +1,2466 @@ +# VocabListGenerator — Batch Configuration +# ========================================== +# Run with: python batch_generate.py +# +# MULTI-LANGUAGE EXPANSION +# If you list more than 2 IDs under 'languages', all C(n,2) unordered pairs +# are generated automatically. The output_filename gets auto-suffixed with the ISO +# codes, e.g. "verbs_beginners_de_pt.json". The name stays as-is ("Verbs - Beginners") +# because language IDs are already stored in the language_ids field of each manifest entry. +# +# Examples: +# languages: [15, 7] → 1 list (DE-PT) +# languages: [15, 7, 1] → 3 lists (DE-PT, DE-EN, PT-EN) +# languages: [15, 7, 1, 3] → 6 lists +# languages: [15, 7, 1, 3, 14] → 10 lists +# +# CEFR levels: A1 · A2 · B1 · B2 · C1 · C2 +# Language IDs (from languages.xml): +# 1=English 2=Mandarin 3=Spanish 4=Hindi 5=Arabic +# 7=Portuguese 8=Russian 13=Korean 14=French 15=German +# 19=Indonesian 20=Italian 21=Japanese 24=Polish 39=Romanian +# +# Skip a batch without deleting it: skip: true +# Abort whole run on first error: settings.stop_on_error: true + +settings: + output_dir: "output" # Copy this entire folder to your server + manifest_filename: "vocab_manifest.json" + # stop_on_error: false + + +# ============================================================ +# LANGUAGE COVERAGE STRATEGY +# ============================================================ +# +# Each batch entry with N languages expands to C(N,2) output files. +# Language tiers and target pack counts: +# +# TIER 1 — EN (1), ES (3), PT (7) → ~35 packs each +# Appear in ALL 35 batches below. +# +# TIER 2 — DE (15), FR (14), IT (20) → ~20 packs each +# Appear in batches 01-20 (12 all-lang + 8 European). +# +# TIER 3 — JA (21), ZH (2), KO (13), PL (24) → ~12 packs each +# Appear in batches 01-12 (all-language batches). +# +# Batch groups: +# Batches 01-12 : all 10 languages [1,3,7,15,14,20,21,2,13,24] C(10,2)=45 files each +# Batches 13-20 : 6 European langs [1,3,7,15,14,20] C(6,2)=15 files each +# Batches 21-35 : top 3 langs [1,3,7] C(3,2)=3 files each +# +# NON-LATIN SCRIPT HANDLING: +# Language-specific instructions (transcriptions, variants, etc.) are defined in +# language_instructions.yaml and automatically applied based on the languages used. +# ============================================================ + +batches: + + # ────────────────────────────────────────────────────────── + # BATCHES 01-12 — All 10 languages + # [EN, ES, PT, DE, FR, IT, JA, ZH, KO, PL] + # C(10,2) = 45 files per batch + # ────────────────────────────────────────────────────────── + + - name: "Verbs - Beginners" + emoji: "🏃" + level: "A1" + description: > + The most essential action verbs for absolute beginners — covering daily movement, + communication, household tasks, and basic human actions. + category: "Verbs - Beginners" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 100 + output_filename: "verbs_beginners.json" + instructions: > + Generate the most common everyday verbs in their infinitive/dictionary form. + Cover movement, communication, emotions, and household tasks. + Prefer single-word entries. + + - name: "Greetings & Introductions" + emoji: "👋" + level: "A1" + description: > + Essential phrases and vocabulary for greetings, farewells, and introducing yourself — + the very first words every language learner needs. + category: "Greetings & Introductions" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "greetings.json" + instructions: > + Include greetings (hello, good morning, good evening), farewells, courtesy expressions + (please, thank you, sorry), and self-introduction vocabulary (name, age, nationality). + Focus on high-frequency social phrases. Where phrases are necessary, keep them short. + + - name: "Numbers & Time" + emoji: "🕐" + level: "A1" + description: > + Numbers, days, months, seasons, and time expressions for everyday use. + category: "Numbers & Time" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "numbers_time.json" + instructions: > + Include cardinal numbers 1-20 and key round numbers (30, 40, 50, 100, 1000), + ordinal numbers, days of the week, months of the year, seasons, + and common time words (morning, afternoon, evening, hour, minute, today, tomorrow, yesterday). + + - name: "Colors & Shapes" + emoji: "🎨" + level: "A1" + description: > + Basic colors, shades, and geometric shapes — fundamental vocabulary + for describing the world around you. + category: "Colors & Shapes" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "colors_shapes.json" + instructions: > + Include the main colors (red, blue, green, yellow, black, white, etc.), common shades + (light, dark, pale), and basic geometric shapes (circle, square, triangle, rectangle, etc.). + Prefer single-word adjective forms. + + - name: "Animals & Wildlife" + emoji: "🐾" + level: "A1" + description: > + Common animals from pets and farm animals to wild and exotic species — + beloved vocabulary for all ages. + category: "Animals & Wildlife" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 80 + output_filename: "animals.json" + instructions: > + Include pets (dog, cat, bird), farm animals (cow, horse, pig, chicken), + wild animals (lion, tiger, elephant, bear), sea creatures (fish, whale, shark), + and insects (butterfly, bee, ant). Prefer single-word noun forms. + + - name: "Food & Cooking" + emoji: "🍳" + level: "A2" + description: > + Vocabulary for food, ingredients, and cooking — from supermarket to restaurant. + category: "Food & Cooking" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 80 + output_filename: "food.json" + instructions: > + Include common ingredients, fruits, vegetables, dishes, kitchen utensils, and cooking verbs. + Cover breakfast, lunch, and dinner foods. Prefer everyday items found in + supermarkets and restaurants worldwide. + + - name: "Body Parts & Health" + emoji: "🫀" + level: "A2" + description: > + Vocabulary for the human body, basic health, and physical well-being. + category: "Body Parts & Health" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 70 + output_filename: "body_health.json" + instructions: > + Include external body parts (head, arm, leg, hand, foot), internal organs (heart, lung, liver), + and basic health vocabulary (pain, fever, cold, tired, healthy, sick, doctor, medicine). + Prefer single-word noun forms. + + - name: "Family & Home" + emoji: "🏠" + level: "A1" + description: > + Vocabulary about family members, the home, rooms, and everyday household life. + category: "Family & Home" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 70 + output_filename: "home_family.json" + instructions: > + Include family members (mother, father, sibling, grandparent, cousin), + rooms of the house (kitchen, bedroom, bathroom, living room), + and common furniture and household items (table, chair, bed, sofa, lamp). + + - name: "Travel & Transport" + emoji: "✈️" + level: "A2" + description: > + Key vocabulary for travelling — airports, hotels, directions, and modes of transport. + category: "Travel & Transport" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 70 + output_filename: "travel.json" + instructions: > + Cover airports, train and bus stations, hotels, directions (left, right, straight), + tickets, passport, luggage, and common travel situations. + Include modes of transport (car, bus, train, plane, ship). Prefer single-word entries. + + - name: "Daily Routines" + emoji: "⏰" + level: "A2" + description: > + Verbs and vocabulary describing everyday morning, daytime, and evening routines. + category: "Daily Routines" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "daily_routines.json" + instructions: > + Include verbs for morning routines (wake up, shower, dress, eat breakfast), + work or school day (work, study, meet, lunch), and evening routines (cook, eat dinner, relax, sleep). + Also include time-of-day expressions and frequency adverbs (always, often, sometimes, never). + + - name: "Emotions & Feelings" + emoji: "😊" + level: "A2" + description: > + Vocabulary for expressing emotions, moods, and inner states — essential for + meaningful human communication. + category: "Emotions & Feelings" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "emotions.json" + instructions: > + Include positive emotions (happy, joyful, excited, proud, calm, grateful), + negative emotions (sad, angry, scared, worried, lonely, ashamed), + and neutral states (surprised, confused, bored, tired, curious). + Prefer single-word adjective forms. + + - name: "Weather & Seasons" + emoji: "🌤️" + level: "A1" + description: > + Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation. + category: "Weather & Seasons" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "weather.json" + instructions: > + Include weather conditions (sunny, cloudy, rainy, snowy, windy, foggy, stormy), + temperature vocabulary (hot, warm, cool, cold, freezing), the four seasons, + and natural phenomena (thunder, lightning, rainbow, flood, drought). + Prefer single-word adjective and noun forms. + + + # ────────────────────────────────────────────────────────── + # BATCHES 13-20 — 6 European languages + # [EN, ES, PT, DE, FR, IT] + # C(6,2) = 15 files per batch + # ────────────────────────────────────────────────────────── + + - name: "Medical Terms" + emoji: "🏥" + level: "B1" + description: > + Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies. + category: "Medical Terms" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "medical.json" + instructions: > + Focus on practical vocabulary a patient or caregiver would need. + Include body systems, symptoms (headache, nausea, swelling), common conditions + (diabetes, allergy, infection), medications, and medical procedures. + Prefer single-word clinical terms. + + - name: "Business & Office" + emoji: "💼" + level: "B2" + description: > + Professional vocabulary for business meetings, email, contracts, and office life. + category: "Business & Office" + languages: [1, 3, 7, 15, 14, 20] + amount: 80 + output_filename: "business.json" + instructions: > + Focus on vocabulary used in professional settings: meetings, presentations, + negotiations, contracts, HR, and corporate communication. + Include both nouns (deadline, agenda, invoice) and verbs (delegate, negotiate, report). + Prefer formal register. + + - name: "Clothing & Fashion" + emoji: "👗" + level: "A2" + description: > + Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire. + category: "Clothing & Fashion" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "clothing.json" + instructions: > + Include everyday clothing items (shirt, trousers, dress, jacket, shoes), + accessories (belt, scarf, hat, bag, watch), fabrics (cotton, silk, wool), + and clothing-related adjectives (tight, loose, elegant, casual). + + - name: "Sports & Leisure" + emoji: "⚽" + level: "A2" + description: > + Vocabulary for popular sports, physical activities, and leisure pastimes. + category: "Sports & Leisure" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "sports.json" + instructions: > + Include popular sports (football, basketball, tennis, swimming, cycling), + sports-related nouns (goal, team, match, score, champion, referee), + and leisure activities (hiking, fishing, dancing, reading, gaming). + + - name: "Technology & Internet" + emoji: "💻" + level: "B1" + description: > + Vocabulary for computers, smartphones, the internet, and modern digital life. + category: "Technology & Internet" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "technology.json" + instructions: > + Include hardware (laptop, keyboard, screen, processor, battery), + internet vocabulary (website, download, upload, password, browser, search), + social media terms (profile, post, share, follow, message), + and software concepts (app, update, crash, install, cloud). + + - name: "Education & School" + emoji: "📚" + level: "B1" + description: > + Vocabulary for school life, academic subjects, and the learning process. + category: "Education & School" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "education.json" + instructions: > + Include school vocabulary (classroom, homework, exam, grade, timetable), + academic subjects (mathematics, history, geography, chemistry, literature), + roles (teacher, student, principal), and learning verbs (study, explain, understand, revise). + + - name: "Shopping & Money" + emoji: "🛒" + level: "A2" + description: > + Vocabulary for shopping, prices, payments, and managing money. + category: "Shopping & Money" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "shopping.json" + instructions: > + Include shopping vocabulary (shop, price, receipt, discount, queue, cashier, refund), + payment methods (cash, card, transfer), and money management terms + (budget, savings, loan, tax, invoice, cost). Prefer single-word entries. + + - name: "Home Furniture & Rooms" + emoji: "🛋️" + level: "A1" + description: > + Vocabulary for rooms of the house, furniture, appliances, and home décor. + category: "Home Furniture & Rooms" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "furniture.json" + instructions: > + Include rooms (bedroom, bathroom, kitchen, living room, garden, garage), + furniture (sofa, wardrobe, desk, shelf, mirror, curtain), + and household appliances (fridge, oven, microwave, washing machine, vacuum cleaner). + + + # ────────────────────────────────────────────────────────── + # BATCHES 21-35 — Top 3 languages: EN, ES, PT + # C(3,2) = 3 files per batch + # ────────────────────────────────────────────────────────── + + - name: "Adjectives - Beginners" + emoji: "✨" + level: "A1" + description: > + The most useful everyday adjectives for describing people, objects, and situations. + category: "Adjectives - Beginners" + languages: [1, 3, 7] + amount: 80 + output_filename: "adjectives_beginners.json" + instructions: > + Include high-frequency descriptive adjectives: size (big, small, tall, short), + quality (good, bad, new, old, clean, dirty), appearance (beautiful, ugly, thin, fat), + and character (kind, funny, serious, friendly, shy). Prefer single-word forms. + + - name: "Prepositions & Connectors" + emoji: "🔗" + level: "B1" + description: > + Essential prepositions, conjunctions, and discourse connectors for building fluent sentences. + category: "Prepositions & Connectors" + languages: [1, 3, 7] + amount: 60 + output_filename: "prepositions.json" + instructions: > + Include spatial prepositions (in, on, under, between, next to, behind), + time prepositions (before, after, during, since, until), + and conjunctions/connectors (because, although, however, therefore, moreover, unless). + + - name: "Verbs - Intermediate" + emoji: "💪" + level: "B1" + description: > + A broader set of action and state verbs beyond the basics — for intermediate learners + building expressive fluency. + category: "Verbs - Intermediate" + languages: [1, 3, 7] + amount: 100 + output_filename: "verbs_intermediate.json" + instructions: > + Focus on verbs that go beyond A1 basics: mental actions (think, believe, imagine, remember), + social interactions (argue, apologize, convince, negotiate), change of state (improve, destroy, + transform, develop), and professional activities (manage, evaluate, implement, contribute). + + - name: "Verbs - Advanced" + emoji: "🎯" + level: "C1" + description: > + Sophisticated and nuanced verbs for advanced learners aiming for near-native fluency. + category: "Verbs - Advanced" + languages: [1, 3, 7] + amount: 100 + output_filename: "verbs_advanced.json" + instructions: > + Focus on less common but high-value verbs: academic and professional verbs + (contemplate, substantiate, corroborate, mitigate, facilitate, articulate), + literary verbs (lament, rejoice, beseech, forsake), and nuanced distinctions + from common verbs (distinguish vs. tell apart, compel vs. force). + + - name: "Politics & Government" + emoji: "🏛️" + level: "B2" + description: > + Vocabulary for political systems, government institutions, democracy, and civic life. + category: "Politics & Government" + languages: [1, 3, 7] + amount: 70 + output_filename: "politics.json" + instructions: > + Include political systems (democracy, republic, monarchy, parliament), + institutions (congress, senate, court, ministry), roles (president, minister, judge, mayor), + and political processes (election, vote, debate, reform, law, constitution). + + - name: "Environment & Climate" + emoji: "🌍" + level: "B1" + description: > + Vocabulary for the natural environment, ecosystems, climate change, and sustainability. + category: "Environment & Climate" + languages: [1, 3, 7] + amount: 70 + output_filename: "environment.json" + instructions: > + Include natural features (forest, ocean, desert, glacier, river), + environmental issues (pollution, deforestation, drought, flood, emissions), + sustainability terms (recycling, renewable, carbon footprint, conservation), + and climate vocabulary (greenhouse effect, ozone, temperature, extreme weather). + + - name: "Arts & Culture" + emoji: "🎭" + level: "B1" + description: > + Vocabulary for art forms, cultural expressions, music, cinema, and creativity. + category: "Arts & Culture" + languages: [1, 3, 7] + amount: 70 + output_filename: "arts_culture.json" + instructions: > + Include visual arts (painting, sculpture, gallery, canvas, portrait), + performing arts (theatre, concert, orchestra, dance, opera), + music vocabulary (melody, rhythm, chord, instrument, genre), + and cinema terms (film, director, scene, trailer, premiere). + + - name: "Law & Justice" + emoji: "⚖️" + level: "B2" + description: > + Legal vocabulary for courts, crimes, rights, and the justice system. + category: "Law & Justice" + languages: [1, 3, 7] + amount: 70 + output_filename: "law.json" + instructions: > + Include crime vocabulary (theft, fraud, assault, murder, corruption), + legal roles (lawyer, judge, prosecutor, witness, jury), + court proceedings (trial, verdict, sentence, appeal, evidence), + and legal concepts (right, duty, contract, liability, innocence, guilt). + + - name: "Science & Technology" + emoji: "🔬" + level: "B2" + description: > + Vocabulary for scientific disciplines, research methods, and modern technology. + category: "Science & Technology" + languages: [1, 3, 7] + amount: 80 + output_filename: "science.json" + instructions: > + Include scientific disciplines (physics, chemistry, biology, astronomy), + research vocabulary (experiment, hypothesis, data, analysis, conclusion), + physics terms (energy, force, gravity, wave, particle), + and biology terms (cell, DNA, evolution, organism, ecosystem). + + - name: "Finance & Banking" + emoji: "💰" + level: "B2" + description: > + Financial vocabulary for banking, investment, economic concepts, and personal finance. + category: "Finance & Banking" + languages: [1, 3, 7] + amount: 70 + output_filename: "finance.json" + instructions: > + Include banking terms (account, deposit, withdrawal, interest, mortgage, loan), + investment vocabulary (stock, share, dividend, portfolio, risk, return), + economic concepts (inflation, recession, GDP, trade, deficit, surplus), + and personal finance (budget, savings, debt, insurance, pension). + + - name: "Healthcare & Medicine" + emoji: "💊" + level: "B1" + description: > + Practical healthcare vocabulary covering medical consultations, treatments, and well-being. + category: "Healthcare & Medicine" + languages: [1, 3, 7] + amount: 70 + output_filename: "healthcare.json" + instructions: > + Include medical consultation vocabulary (appointment, diagnosis, prescription, referral), + treatments (surgery, therapy, vaccination, rehabilitation), + common conditions (diabetes, hypertension, asthma, depression, fracture), + and wellness vocabulary (nutrition, exercise, sleep, stress, prevention). + + - name: "Media & Journalism" + emoji: "📰" + level: "B2" + description: > + Vocabulary for news media, journalism, communication channels, and digital media. + category: "Media & Journalism" + languages: [1, 3, 7] + amount: 70 + output_filename: "media.json" + instructions: > + Include traditional media vocabulary (newspaper, broadcast, headline, editorial, reporter), + digital media terms (podcast, streaming, influencer, viral, algorithm), + journalism concepts (source, interview, censorship, freedom of press, bias), + and advertising vocabulary (campaign, slogan, audience, brand, sponsor). + + - name: "Social Issues & Society" + emoji: "🤝" + level: "B2" + description: > + Vocabulary for discussing social topics, human rights, inequality, and community life. + category: "Social Issues & Society" + languages: [1, 3, 7] + amount: 70 + output_filename: "social_issues.json" + instructions: > + Include human rights vocabulary (equality, discrimination, freedom, justice, dignity), + social challenges (poverty, unemployment, homelessness, violence, addiction), + community life (volunteer, charity, protest, solidarity, inclusion), + and identity terms (culture, ethnicity, gender, diversity, minority). + + - name: "Food - Regional & Culinary Arts" + emoji: "👨‍🍳" + level: "B1" + description: > + Beyond the basics — regional cuisines, culinary techniques, and gastronomic vocabulary. + category: "Food - Regional & Culinary Arts" + languages: [1, 3, 7] + amount: 70 + output_filename: "food_culinary.json" + instructions: > + Include culinary techniques (marinate, sauté, grill, simmer, ferment, smoke), + flavor descriptors (savory, tangy, bitter, umami, spicy, rich), + regional cuisine concepts, cooking equipment (wok, colander, grater, spatula), + and gastronomy vocabulary (appetizer, entrée, dessert, pairing, seasoning). + + - name: "History & Civilization" + emoji: "🏺" + level: "B2" + description: > + Vocabulary for discussing historical periods, events, and the development of civilization. + category: "History & Civilization" + languages: [1, 3, 7] + amount: 80 + output_filename: "history.json" + instructions: > + Include historical periods (ancient, medieval, renaissance, modern, contemporary), + political events (revolution, conquest, independence, treaty, war, colonization), + civilization vocabulary (empire, dynasty, culture, archaeology, ruins, monument), + and historical concepts (progress, decline, reform, uprising, legacy). + + + # ────────────────────────────────────────────────────────── + # C2 — MASTERY LEVEL (Top 3 Languages: EN, ES, PT) + # C(3,2) = 3 files per batch + # ────────────────────────────────────────────────────────── + + - name: "Advanced Academic Discourse" + emoji: "🎓" + level: "C2" + description: > + Highly sophisticated academic vocabulary for university-level discourse and research. + category: "Advanced Academic Discourse" + languages: [1, 3, 7] + amount: 80 + output_filename: "academic_discourse.json" + instructions: > + Include nuanced academic terminology (epistemology, methodology, paradigm, heuristic, + synthesize, extrapolate, elucidate, juxtapose, didactic, pedantic, seminal), + scholarly expressions for argumentation (qualify, warrant, caveat, dichotomy, rationale), + and discourse markers for complex academic writing. + + - name: "Literary & Classical Vocabulary" + emoji: "📖" + level: "C2" + description: > + Elevated vocabulary from classical literature, poetry, and refined expressions. + category: "Literary & Classical Vocabulary" + languages: [1, 3, 7] + amount: 70 + output_filename: "literary_vocabulary.json" + instructions: > + Include archaic and literary terms (henceforth, peradventure, albeit, erstwhile, verily, + whence, whereby, therein), poetic devices (metaphor, allegory, simile, prosody), + and refined expressions used in classical texts and formal literature. + + - name: "Diplomatic & International Relations" + emoji: "🏛️" + level: "C2" + description: > + Sophisticated diplomatic language for international relations, treaties, and diplomacy. + category: "Diplomatic & International Relations" + languages: [1, 3, 7] + amount: 70 + output_filename: "diplomatic.json" + instructions: > + Include diplomatic terminology (sanctions, embargo, détente, parity, sovereignty, + multilateralism, bilateral, ratification, accession, amicus brief, arbitrate), + international organizations (UN, NATO, WTO, EU, OPEC), + and diplomatic phrases for formal negotiations and communiqués. + + - name: "Philosophical Concepts" + emoji: "🤔" + level: "C2" + description: > + Deep philosophical vocabulary for discussing metaphysics, ethics, and epistemology. + category: "Philosophical Concepts" + languages: [1, 3, 7] + amount: 70 + output_filename: "philosophy.json" + instructions: > + Include philosophical terms (ontology, teleology, determinism, existentialism, pragmatism, + solipsism, empiricism, rationalism, nihilism, utilitarianism, deontology, phenomenology), + and key concepts from major philosophical traditions. + + - name: "Linguistic & Grammatical Terms" + emoji: "📝" + level: "C2" + description: > + Advanced linguistic terminology for grammar, phonetics, and language analysis. + category: "Linguistic & Grammatical Terms" + languages: [1, 3, 7] + amount: 60 + output_filename: "linguistics.json" + instructions: > + Include linguistic terminology (morphology, syntax, semantics, pragmatics, phonology, + allophone, diglossia, sociolinguistics, pidgin, creole, code-switching, collocation), + grammatical concepts (subjunctive, gerund, participle, aspect, modality), + and language acquisition terms. + + - name: "Idiomatic Mastery" + emoji: "🔤" + level: "C2" + description: > + Rare and sophisticated idioms, proverbs, and cultural expressions. + category: "Idiomatic Mastery" + languages: [1, 3, 7] + amount: 60 + output_filename: "idioms_mastery.json" + instructions: > + Include archaic and sophisticated idioms, culturally-specific proverbs, + nuanced expressions that convey subtle meanings, + and culturally-loaded phrases requiring deep cultural understanding. + + - name: "Abstract Concepts & Nouns" + emoji: "💭" + level: "C2" + description: > + Highly abstract vocabulary for discussing complex ideas and theoretical concepts. + category: "Abstract Concepts & Nouns" + languages: [1, 3, 7] + amount: 80 + output_filename: "abstract_concepts.json" + instructions: > + Include abstract nouns and concepts (paradigm, construct, contingent, inherent, + implicit, explicit, abstract, tangible, intangible, corollary, antecedent, nexus), + philosophical abstractions, and theoretical terminology. + + - name: "Synonyms & Nuance" + emoji: "🎭" + level: "C2" + description: > + Fine-grained distinctions between near-synonyms for precise expression. + category: "Synonyms & Nuance" + languages: [1, 3, 7] + amount: 70 + output_filename: "synonyms_nuance.json" + instructions: > + Include synonym clusters with subtle distinctions (e.g., happy vs. joyful vs. elated vs. gleeful), + words with conjoined meanings that require careful differentiation, + and terms that convey varying degrees of intensity or formality. + + - name: "Rhetorical Devices" + emoji: "🗣️" + level: "C2" + description: > + Advanced rhetorical vocabulary for persuasive communication and oratory. + category: "Rhetorical Devices" + languages: [1, 3, 7] + amount: 60 + output_filename: "rhetorical_devices.json" + instructions: > + Include rhetorical terms (metonymy, synecdoche, chiasmus, anaphora, epiphora, + litotes, hyperbole, anastrophe, aposiopesis), oratory concepts, + and persuasive language techniques. + + + # ────────────────────────────────────────────────────────── + # ADDITIONAL TOPICS — ALL 10 LANGUAGES + # ────────────────────────────────────────────────────────── + + - name: "Jobs & Occupations" + emoji: "💼" + level: "A1" + description: > + Common professions and job titles for everyday conversations about work. + category: "Jobs & Occupations" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "jobs_occupations.json" + instructions: > + Include common professions (doctor, teacher, engineer, farmer, cook, driver, etc.). + Cover both full-time and part-time jobs. Use simple job titles. + + - name: "Places & Locations" + emoji: "📍" + level: "A1" + description: > + Places and locations in a city and beyond — from parks to airports. + category: "Places & Locations" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "places_locations.json" + instructions: > + Include common places (school, hospital, bank, park, beach, mountains, airport, + train station, supermarket, restaurant, hotel, library, museum, church, etc.). + + - name: "Hobbies & Interests" + emoji: "🎨" + level: "A1" + description: > + Free time activities, hobbies, and leisure pursuits. + category: "Hobbies & Interests" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "hobbies_interests.json" + instructions: > + Include hobbies (reading, painting, cooking, gardening, gaming, photography), + sports activities (running, swimming, cycling, hiking), and creative pursuits. + + - name: "Nature & Geography" + emoji: "🌿" + level: "A2" + description: > + Natural features, landscapes, and geographical vocabulary. + category: "Nature & Geography" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "nature_geography.json" + instructions: > + Include natural landscapes (forest, desert, mountain, valley, beach, island), + water bodies (river, lake, ocean, sea), and weather phenomena. + + - name: "Music & Instruments" + emoji: "🎵" + level: "A2" + description: > + Musical terms, instruments, and vocabulary for discussing music. + category: "Music & Instruments" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "music_instruments.json" + instructions: > + Include musical instruments (guitar, piano, violin, drums, flute), + music genres (rock, jazz, classical, pop, folk), + and basic music terminology (melody, rhythm, song, concert, singer). + + - name: "Feelings & Emotions" + emoji: "😊" + level: "A2" + description: > + Vocabulary for describing feelings, moods, and emotional states. + category: "Feelings & Emotions" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "feelings_emotions.json" + instructions: > + Include basic emotion words (happy, sad, angry, scared, excited, bored), + intensity modifiers (very, a bit, extremely), + and expressions for emotional states (in love, homesick, stressed). + + - name: "Household Chores" + emoji: "🧹" + level: "A1" + description: > + Vocabulary for household tasks and cleaning activities. + category: "Household Chores" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "household_chores.json" + instructions: > + Include cleaning tasks (sweep, mop, dust, wash, wipe), + household items (broom, vacuum, sponge, soap), + and chore-related vocabulary. + + - name: "Time Expressions" + emoji: "⏱️" + level: "A1" + description: > + Time-related vocabulary including clocks, calendars, and temporal expressions. + category: "Time Expressions" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "time_expressions.json" + instructions: > + Include clock times, calendar terms, duration words, + and temporal expressions (now, later, soon, already, still, yet). + + - name: "Questions & Question Words" + emoji: "❓" + level: "A1" + description: > + Question words and interrogative expressions for basic communication. + category: "Questions & Question Words" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 40 + output_filename: "questions.json" + instructions: > + Include question words (who, what, where, when, why, how, which, whose), + question patterns, and common interrogative phrases. + + - name: "Opposites & Antonyms" + emoji: "↔️" + level: "A2" + description: > + Common antonym pairs for describing contrast and opposition. + category: "Opposites & Antonyms" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "antonyms.json" + instructions: > + Include common opposite pairs (big-small, hot-cold, fast-slow, rich-poor), + adjectives with clear opposites, + and verb antonyms (come-go, buy-sell, give-receive). + + - name: "Community & Neighborhood" + emoji: "🏘️" + level: "A2" + description: > + Vocabulary for the local community, neighborhood, and public services. + category: "Community & Neighborhood" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "community.json" + instructions: > + Include neighborhood places (post office, police station, pharmacy, clinic), + community roles (neighbor, policeman, mailman), + and local services. + + - name: "Celebrations & Holidays" + emoji: "🎉" + level: "A2" + description: > + Vocabulary for celebrations, festivals, and traditional holidays. + category: "Celebrations & Holidays" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "celebrations.json" + instructions: > + Include holiday vocabulary (Christmas, birthday, wedding, Easter), + celebration activities (party, gift, toast, decorate), + and festival terms. + + - name: "Emergency & Safety" + emoji: "🚨" + level: "A2" + description: > + Essential vocabulary for emergencies, safety, and urgent situations. + category: "Emergency & Safety" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "emergency.json" + instructions: > + Include emergency terms (help, danger, police, ambulance, fire), + safety vocabulary (safe, dangerous, accident, injury), + and urgent expressions. + + - name: "Space & Astronomy" + emoji: "🚀" + level: "B1" + description: > + Vocabulary for space, celestial bodies, and astronomy. + category: "Space & Astronomy" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "space.json" + instructions: > + Include celestial bodies (planet, star, moon, sun, galaxy), + space exploration terms (astronaut, rocket, satellite, orbit), + and astronomical phenomena. + + - name: "Psychology & Mental Health" + emoji: "🧠" + level: "B1" + description: > + Vocabulary for psychology, mental health, and emotional well-being. + category: "Psychology & Mental Health" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 70 + output_filename: "psychology.json" + instructions: > + Include psychological terms (anxiety, depression, trauma, therapy), + mental processes (memory, perception, motivation), + and mental health vocabulary. + + - name: "Communication &Telecommunications" + emoji: "📞" + level: "A2" + description: > + Vocabulary for communication methods and telecommunications. + category: "Communication & Telecommunications" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "communication.json" + instructions: > + Include communication devices (phone, computer, tablet), + communication verbs (call, text, email, message), + and telecommunications terms. + + - name: "Adjectives - Intermediate" + emoji: "📊" + level: "B1" + description: > + Intermediate-level adjectives for describing situations, ideas, and qualities. + category: "Adjectives - Intermediate" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 80 + output_filename: "adjectives_intermediate.json" + instructions: > + Include evaluative adjectives (excellent, terrible, reasonable, extreme), + comparative structures, and nuanced descriptive terms. + + - name: "Nouns - Abstract Concepts" + emoji: "🎯" + level: "B1" + description: > + Abstract nouns for discussing ideas, concepts, and intangible qualities. + category: "Nouns - Abstract Concepts" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 70 + output_filename: "abstract_nouns.json" + instructions: > + Include abstract concepts (freedom, justice, peace, truth, beauty), + idea-related nouns (theory, concept, principle, belief), + and intangible qualities. + + - name: "Agriculture & Farming" + emoji: "🌾" + level: "B1" + description: > + Vocabulary for farming, agriculture, and rural life. + category: "Agriculture & Farming" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "agriculture.json" + instructions: > + Include farming vocabulary (crop, harvest, plow, tractor, barn), + agricultural terms (organic, pesticide, fertilizer, irrigation), + and rural life vocabulary. + + - name: "Architecture & Buildings" + emoji: "🏗️" + level: "B1" + description: > + Vocabulary for architecture, construction, and building types. + category: "Architecture & Buildings" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "architecture.json" + instructions: > + Include architectural styles (Gothic, Modernist, Baroque), + building parts (facade, beam, column, foundation), + and construction terminology. + + - name: "Cars & Vehicles" + emoji: "🚗" + level: "A2" + description: > + Vocabulary for cars, vehicle parts, and driving. + category: "Cars & Vehicles" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "cars_vehicles.json" + instructions: > + Include car parts (wheel, engine, brake, steering wheel), + driving verbs (drive, park, accelerate), + and vehicle types. + + - name: "Hotels & Accommodation" + emoji: "🏨" + level: "A2" + description: > + Vocabulary for hotels, lodging, and accommodation services. + category: "Hotels & Accommodation" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "hotels.json" + instructions: > + Include hotel vocabulary (reception, reservation, room key, suite), + room types (single, double, twin), + and accommodation services. + + - name: "Restaurants & Dining" + emoji: "🍽️" + level: "A2" + description: > + Vocabulary for restaurants, dining out, and food service. + category: "Restaurants & Dining" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "restaurants.json" + instructions: > + Include restaurant vocabulary (menu, waiter, bill, tip, reserve), + dining terms (appetizer, main course, dessert), + and food service vocabulary. + + - name: "Adverbs & Time Markers" + emoji: "⏰" + level: "B1" + description: > + Adverbs and temporal markers for describing manner, time, and frequency. + category: "Adverbs & Time Markers" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "adverbs.json" + instructions: > + Include adverbs of manner (carefully, quickly, slowly), + time markers (meanwhile, subsequently, eventually), + and frequency adverbs. + + - name: "Word Formation & Prefixes" + emoji: "building" + level: "B1" + description: > + Common prefixes and word formation patterns for expanding vocabulary. + category: "Word Formation & Prefixes" + languages: [1, 3, 7] + amount: 60 + output_filename: "word_formation.json" + instructions: > + Include common prefixes (un-, dis-, re-, pre-, mis-, over-, under-), + word families, + and morphological patterns. + + - name: "Word Formation & Suffixes" + emoji: "suffix" + level: "B1" + description: > + Common suffixes and word formation patterns for creating different word classes. + category: "Word Formation & Suffixes" + languages: [1, 3, 7] + amount: 60 + output_filename: "suffixes.json" + instructions: > + Include common suffixes (-tion, -ment, -ness, -able, -ful, -less), + noun-forming suffixes, + and adjective-forming suffixes. + + - name: "Idioms & Expressions" + emoji: "💬" + level: "B1" + description: > + Common idiomatic expressions and phrases used in everyday conversation. + category: "Idioms & Expressions" + languages: [1, 3, 7, 15, 14] + amount: 50 + output_filename: "idioms_expressions.json" + instructions: > + Include common idioms and expressions with their meanings. + Focus on practical, frequently-used phrases that native speakers use. + + - name: "Phrasal Verbs - Intermediate" + emoji: "🔀" + level: "B1" + description: > + Common phrasal verbs for intermediate learners. + category: "Phrasal Verbs - Intermediate" + languages: [1, 3, 7] + amount: 60 + output_filename: "phrasal_verbs.json" + instructions: > + Include common English phrasal verbs (get up, give up, look after, come across, + run into, etc.) with their meanings and example sentences. + + - name: "Phrasal Verbs - Advanced" + emoji: "🔀" + level: "B2" + description: > + Advanced phrasal verbs and multi-word expressions for sophisticated communication. + category: "Phrasal Verbs - Advanced" + languages: [1, 3, 7] + amount: 60 + output_filename: "phrasal_verbs_advanced.json" + instructions: > + Include advanced phrasal verbs (look into, come up with, put up with, get along with, + live up to, measure up, etc.) with nuanced meanings and contexts. + + - name: "False Friends & Common Mistakes" + emoji: "⚠️" + level: "B1" + description: > + Commonly confused words and false friends between languages. + category: "False Friends & Common Mistakes" + languages: [1, 3, 7, 15, 14] + amount: 50 + output_filename: "false_friends.json" + instructions: > + Include commonly confused words within each language, + misleading cognates, and typical learner errors. + + - name: "Formal & Informal Register" + emoji: "📜" + level: "B2" + description: > + Vocabulary distinguishing formal and informal language styles. + category: "Formal & Informal Register" + languages: [1, 3, 7, 15, 14] + amount: 60 + output_filename: "register.json" + instructions: > + Include formal equivalents of informal words, + register markers, and style-appropriate vocabulary. + + - name: "Military & Defense" + emoji: "⚔️" + level: "B2" + description: > + Military terminology, defense concepts, and warfare vocabulary. + category: "Military & Defense" + languages: [1, 3, 7] + amount: 70 + output_filename: "military.json" + instructions: > + Include military branches, ranks, equipment, + strategic terms, and defense vocabulary. + + - name: "Journalism & Reporting" + emoji: "📰" + level: "B2" + description: > + Vocabulary for journalism, news reporting, and media production. + category: "Journalism & Reporting" + languages: [1, 3, 7, 15, 14] + amount: 70 + output_filename: "journalism.json" + instructions: > + Include reporting terms (headline, lead, source, coverage), + media roles (reporter, editor, correspondent), + and news production vocabulary. + + - name: "Psychology - Advanced" + emoji: "🧠" + level: "B2" + description: > + Advanced psychological terminology and mental health concepts. + category: "Psychology - Advanced" + languages: [1, 3, 7] + amount: 70 + output_filename: "psychology_advanced.json" + instructions: > + Include advanced psychological terms (cognitive, behavioral, therapeutic), + mental disorders terminology, + and psychological theories. + + - name: "Economics & Trade" + emoji: "📈" + level: "B2" + description: > + Economic terminology, trade concepts, and market vocabulary. + category: "Economics & Trade" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "economics.json" + instructions: > + Include economic concepts (supply, demand, market, currency), + trade terms (import, export, tariff, agreement), + and financial vocabulary. + + - name: "Sociology & Demography" + emoji: "👥" + level: "B2" + description: > + Sociological terms and demographic concepts for understanding societies. + category: "Sociology & Demography" + languages: [1, 3, 7] + amount: 70 + output_filename: "sociology.json" + instructions: > + Include sociological terms (socialization, stratification, institution), + demographic concepts (population, fertility, migration), + and society-related vocabulary. + + - name: "Theatre & Performing Arts" + emoji: "🎭" + level: "B1" + description: > + Vocabulary for theatre, stagecraft, and performing arts. + category: "Theatre & Performing Arts" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "theatre.json" + instructions: > + Include stage vocabulary (curtain, spotlight, prop, costume), + theatrical roles (director, actor, audience), + and performance terminology. + + - name: "Photography & Visual Arts" + emoji: "📷" + level: "B1" + description: > + Vocabulary for photography, visual arts, and creative media. + category: "Photography & Visual Arts" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13] + amount: 60 + output_filename: "photography.json" + instructions: > + Include photography terms (lens, exposure, shutter, focus), + visual arts vocabulary (perspective, composition, contrast), + and creative techniques. + + - name: "Cars & Automotive" + emoji: "🚗" + level: "B1" + description: > + Advanced vocabulary for cars, automotive technology, and driving. + category: "Cars & Automotive" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "automotive.json" + instructions: > + Include car parts and mechanisms, + automotive technology (transmission, suspension, diagnostic), + and driving terminology. + + - name: "Aviation & Aerospace" + emoji: "✈️" + level: "B1" + description: > + Vocabulary for aviation, airports, and air travel. + category: "Aviation & Aerospace" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "aviation.json" + instructions: > + Include aviation terms (takeoff, landing, runway, cockpit), + airport vocabulary, + and flight-related terminology. + + - name: "Maritime & Nautical" + emoji: "⛵" + level: "B1" + description: > + Sea navigation, maritime vocabulary, and nautical terms. + category: "Maritime & Nautical" + languages: [1, 3, 7, 15, 14] + amount: 60 + output_filename: "maritime.json" + instructions: > + Include ship parts (hull, deck, mast, bow, stern), + sailing terms, + and maritime navigation vocabulary. + + - name: "Cooking Techniques" + emoji: "👨‍🍳" + level: "A2" + description: > + Culinary techniques and cooking methods. + category: "Cooking Techniques" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "cooking_techniques.json" + instructions: > + Include cooking verbs (boil, fry, bake, grill, steam, roast), + kitchen equipment, + and preparation methods. + + - name: "Kitchen Equipment" + emoji: "🍳" + level: "A1" + description: > + Kitchen utensils, cookware, and appliances. + category: "Kitchen Equipment" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "kitchen_equipment.json" + instructions: > + Include basic kitchen utensils (knife, spoon, fork, pan), + cookware (pot, skillet, baking tray), + and common appliances. + + - name: "Herbs & Spices" + emoji: "🌶️" + level: "A2" + description: > + Herbs, spices, and flavorings for cooking. + category: "Herbs & Spices" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "herbs_spices.json" + instructions: > + Include common herbs (basil, rosemary, thyme, mint), + spices (pepper, cinnamon, cumin, turmeric), + and flavor enhancers. + + - name: "Beverages & Drinks" + emoji: "🥤" + level: "A1" + description: > + Beverages, drinks, and bar vocabulary. + category: "Beverages & Drinks" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "beverages.json" + instructions: > + Include hot drinks (coffee, tea, hot chocolate), + cold drinks (juice, soda, water), + and alcoholic beverages. + + - name: "Fruits & Vegetables" + emoji: "🍎" + level: "A1" + description: > + Common fruits and vegetables for everyday vocabulary. + category: "Fruits & Vegetables" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "fruits_vegetables.json" + instructions: > + Include common fruits (apple, banana, orange, strawberry), + vegetables (carrot, tomato, lettuce, potato), + and produce vocabulary. + + - name: "Meat & Protein" + emoji: "🥩" + level: "A2" + description: > + Types of meat, fish, and protein sources. + category: "Meat & Protein" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "meat_protein.json" + instructions: > + Include types of meat (beef, pork, chicken, lamb), + fish and seafood, + and protein alternatives. + + - name: "Desserts & Sweets" + emoji: "🍰" + level: "A2" + description: > + Desserts, sweets, and baking ingredients. + category: "Desserts & Sweets" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "desserts.json" + instructions: > + Include dessert types (cake, pie, ice cream, chocolate), + baking ingredients (flour, sugar, butter), + and sweet treats. + + - name: "Office Supplies" + emoji: "📎" + level: "A1" + description: > + Office supplies and stationery items. + category: "Office Supplies" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 40 + output_filename: "office_supplies.json" + instructions: > + Include office items (pen, paper, folder, stapler), + stationery, + and workspace supplies. + + - name: "Email & Correspondence" + emoji: "📧" + level: "A2" + description: > + Vocabulary for email communication and written correspondence. + category: "Email & Correspondence" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "email.json" + instructions: > + Include email vocabulary (subject, attachment, reply, forward), + formal closing phrases, + and correspondence terms. + + - name: "Meetings & Presentations" + emoji: "📊" + level: "B1" + description: > + Vocabulary for business meetings and presentations. + category: "Meetings & Presentations" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "meetings.json" + instructions: > + Include meeting vocabulary (agenda, minutes, attendee, chairman), + presentation terms (slide, handout, projector), + and meeting types. + + - name: "Human Resources" + emoji: "👔" + level: "B1" + description: > + HR terminology and workplace personnel concepts. + category: "Human Resources" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "hr.json" + instructions: > + Include HR terms (recruitment, promotion, resignation, severance), + workplace roles, + and employment vocabulary. + + - name: "Marketing & Advertising" + emoji: "📣" + level: "B1" + description: > + Marketing terminology and advertising concepts. + category: "Marketing & Advertising" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "marketing.json" + instructions: > + Include marketing terms (campaign, target audience, brand, campaign), + advertising vocabulary, + and market research concepts. + + - name: "Real Estate & Property" + emoji: "🏠" + level: "B1" + description: > + Vocabulary for real estate, property, and housing. + category: "Real Estate & Property" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "real_estate.json" + instructions: > + Include property terms (apartment, mortgage, lease, tenant, landlord), + real estate vocabulary, + and housing-related concepts. + + - name: "Law - Civil" + emoji: "⚖️" + level: "B2" + description: > + Civil law terminology and legal proceedings. + category: "Law - Civil" + languages: [1, 3, 7] + amount: 70 + output_filename: "law_civil.json" + instructions: > + Include civil law terms (contract, liability, plaintiff, defendant), + legal procedures, + and civil litigation vocabulary. + + - name: "Law - Criminal" + emoji: "🔨" + level: "B2" + description: > + Criminal law terminology and justice system. + category: "Law - Criminal" + languages: [1, 3, 7] + amount: 70 + output_filename: "law_criminal.json" + instructions: > + Include criminal law terms (arrest, conviction, sentencing, parole), + crime types, + and criminal justice vocabulary. + + - name: "International Organizations" + emoji: "🌐" + level: "B2" + description: > + Vocabulary for international bodies, treaties, and global governance. + category: "International Organizations" + languages: [1, 3, 7, 15, 14] + amount: 60 + output_filename: "international_orgs.json" + instructions: > + Include international organizations (UN, EU, NATO, WHO, World Bank), + treaty terminology, + and global governance concepts. + + - name: "Data & Statistics" + emoji: "📊" + level: "B2" + description: > + Statistical terminology and data analysis vocabulary. + category: "Data & Statistics" + languages: [1, 3, 7] + amount: 60 + output_filename: "statistics.json" + instructions: > + Include statistical terms (mean, median, variance, correlation), + data analysis vocabulary, + and research methodology terms. + + - name: "Computer Science" + emoji: "💾" + level: "B2" + description: > + Programming, software development, and computer science terminology. + category: "Computer Science" + languages: [1, 3, 7, 15, 14] + amount: 70 + output_filename: "computer_science.json" + instructions: > + Include programming terms (variable, function, algorithm, database), + software development vocabulary, + and computer science concepts. + + - name: "Internet & Social Media" + emoji: "🌐" + level: "A2" + description: > + Internet terminology and social media vocabulary. + category: "Internet & Social Media" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "internet_social.json" + instructions: > + Include internet terms (browser, website, link, download), + social media vocabulary (post, like, share, follow), + and online terminology. + + - name: "Science - Physics" + emoji: "⚛️" + level: "B1" + description: > + Physics terminology and scientific concepts. + category: "Science - Physics" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "physics.json" + instructions: > + Include physics terms (force, energy, gravity, wave), + scientific concepts, + and physical phenomena vocabulary. + + - name: "Science - Chemistry" + emoji: "🧪" + level: "B1" + description: > + Chemistry terminology and chemical concepts. + category: "Science - Chemistry" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "chemistry.json" + instructions: > + Include chemistry terms (element, compound, molecule, reaction), + laboratory equipment, + and chemical concepts. + + - name: "Science - Biology" + emoji: "🧬" + level: "B1" + description: > + Biology terminology and life science concepts. + category: "Science - Biology" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "biology.json" + instructions: > + Include biology terms (cell, organ, tissue, species, evolution), + biological processes, + and life science vocabulary. + + - name: "Earth Science" + emoji: "🌍" + level: "B1" + description: > + Geology, meteorology, and earth science terminology. + category: "Earth Science" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "earth_science.json" + instructions: > + Include geology terms (rock, mineral, volcano, tectonic), + meteorology vocabulary, + and earth science concepts. + + - name: "Medicine - Anatomy" + emoji: "🫀" + level: "B1" + description: > + Detailed anatomical terminology for medical contexts. + category: "Medicine - Anatomy" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "medicine_anatomy.json" + instructions: > + Include detailed anatomical terms (skeletal, muscular, nervous, circulatory systems), + body regions, + and medical terminology. + + - name: "Medicine - Symptoms" + emoji: "🤒" + level: "B1" + description: > + Medical symptoms and health conditions vocabulary. + category: "Medicine - Symptoms" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 70 + output_filename: "medicine_symptoms.json" + instructions: > + Include symptom vocabulary (pain, fever, swelling, rash), + common conditions, + and health-related terms. + + - name: "Medicine - Treatments" + emoji: "💊" + level: "B1" + description: > + Medical treatments, procedures, and therapies. + category: "Medicine - Treatments" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "medicine_treatments.json" + instructions: > + Include treatment vocabulary (surgery, therapy, medication, vaccination), + medical procedures, + and healthcare interventions. + + - name: "Veterinary & Animals - Care" + emoji: "🐕" + level: "B1" + description: > + Veterinary terminology and animal care vocabulary. + category: "Veterinary & Animals - Care" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "veterinary.json" + instructions: > + Include animal health terms, + veterinary procedures, + and pet care vocabulary. + + - name: "Psychiatry & Mental Health" + emoji: "🧠" + level: "B2" + description: > + Psychiatric terminology and mental health treatment. + category: "Psychiatry & Mental Health" + languages: [1, 3, 7] + amount: 70 + output_filename: "psychiatry.json" + instructions: > + Include psychiatric terms (disorder, syndrome, therapy, prognosis), + mental health conditions, + and treatment approaches. + + - name: "Pharmacology" + emoji: "💉" + level: "B2" + description: > + Pharmaceutical terminology and drug-related vocabulary. + category: "Pharmacology" + languages: [1, 3, 7] + amount: 70 + output_filename: "pharmacology.json" + instructions: > + Include drug classifications, + pharmaceutical terms, + and medication vocabulary. + + - name: "Vehicles - Public Transport" + emoji: "🚌" + level: "A1" + description: > + Public transportation vocabulary and travel options. + category: "Vehicles - Public Transport" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "public_transport.json" + instructions: > + Include public transport types (bus, train, subway, tram), + transport-related vocabulary, + and travel terms. + + - name: "Directions & Navigation" + emoji: "🧭" + level: "A1" + description: > + Directions, navigation, and location vocabulary. + category: "Directions & Navigation" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "directions.json" + instructions: > + Include direction words (left, right, straight, north, south), + navigation vocabulary, + and location terms. + + - name: "Maps & Geography" + emoji: "🗺️" + level: "A2" + description: > + Map reading vocabulary and geographical features. + category: "Maps & Geography" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "maps_geography.json" + instructions: > + Include map symbols and features, + geographical terms, + and cartography vocabulary. + + - name: "Weather Phenomena" + emoji: "🌪️" + level: "A2" + description: > + Extreme weather and meteorological phenomena. + category: "Weather Phenomena" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "weather_phenomena.json" + instructions: > + Include severe weather terms (hurricane, tornado, tsunami), + meteorological phenomena, + and weather events. + + - name: "Ecosystems & Biomes" + emoji: "🌳" + level: "B1" + description: > + Ecological terms, ecosystems, and environmental biology. + category: "Ecosystems & Biomes" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "ecosystems.json" + instructions: > + Include ecosystem types (rainforest, tundra, desert, coral reef), + ecological terms, + and environmental biology vocabulary. + + - name: "Environmental Issues" + emoji: "🌿" + level: "B1" + description: > + Environmental problems and conservation terminology. + category: "Environmental Issues" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "environmental_issues.json" + instructions: > + Include pollution types, conservation terms, + environmental challenges, + and sustainability vocabulary. + + - name: "Sustainability & Green Living" + emoji: "♻️" + level: "B1" + description: > + Sustainable living and environmental conservation vocabulary. + category: "Sustainability & Green Living" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13] + amount: 60 + output_filename: "sustainability.json" + instructions: > + Include green living terms, + eco-friendly practices, + and sustainability vocabulary. + + - name: "Mythology & Legends" + emoji: "⚡" + level: "B1" + description: > + Mythological figures, legends, and folklore vocabulary. + category: "Mythology & Legends" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "mythology.json" + instructions: > + Include mythological beings (gods, heroes, monsters), + legendary figures, + and folklore vocabulary. + + - name: "Religions & Beliefs" + emoji: "🕉️" + level: "B1" + description: > + Religious terminology and spiritual concepts. + category: "Religions & Beliefs" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 70 + output_filename: "religions.json" + instructions: > + Include major world religions, + religious roles and practices, + and spiritual terminology. + + - name: "Spirituality & Alternative Beliefs" + emoji: "🔮" + level: "B1" + description: > + Alternative spiritual practices and New Age terminology. + category: "Spirituality & Alternative Beliefs" + languages: [1, 3, 7, 15, 14, 20] + amount: 50 + output_filename: "spirituality.json" + instructions: > + Include spiritual practices, + alternative belief systems, + and New Age terminology. + + - name: "Festivals - Cultural" + emoji: "🎊" + level: "A2" + description: > + Cultural festivals and celebrations from around the world. + category: "Festivals - Cultural" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "festivals.json" + instructions: > + Include cultural festivals (Carnival, Oktoberfest, Chinese New Year), + celebration activities, + and festive vocabulary. + + - name: "Traditions & Customs" + emoji: "🎎" + level: "A2" + description: > + Cultural traditions, customs, and social practices. + category: "Traditions & Customs" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "traditions.json" + instructions: > + Include cultural customs, + traditional practices, + and social conventions. + + - name: "Clothing - Formal" + emoji: "👔" + level: "A2" + description: > + Formal wear and business attire vocabulary. + category: "Clothing - Formal" + languages: [1, 3, 7, 15, 14, 20] + amount: 50 + output_filename: "clothing_formal.json" + instructions: > + Include formal clothing (suit, tie, dress shirt), + business attire, + and formal wear vocabulary. + + - name: "Clothing - Casual" + emoji: "👕" + level: "A1" + description: > + Casual clothing and everyday wear vocabulary. + category: "Clothing - Casual" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "clothing_casual.json" + instructions: > + Include casual wear (t-shirt, jeans, sneakers), + everyday clothing, + and informal attire vocabulary. + + - name: "Accessories & Jewelry" + emoji: "💍" + level: "A2" + description: > + Accessories, jewelry, and personal adornments. + category: "Accessories & Jewelry" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "accessories.json" + instructions: > + Include jewelry types (ring, necklace, bracelet), + accessories (belt, scarf, hat), + and personal items. + + - name: "Beauty & Cosmetics" + emoji: "💄" + level: "A2" + description: > + Beauty products, cosmetics, and personal care items. + category: "Beauty & Cosmetics" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "beauty.json" + instructions: > + Include cosmetics (lipstick, mascara, foundation), + beauty products, + and personal care vocabulary. + + - name: "Grooming & Personal Care" + emoji: "🪥" + level: "A1" + description: > + Personal hygiene and grooming vocabulary. + category: "Grooming & Personal Care" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "grooming.json" + instructions: > + Include grooming activities (shave, brush, wash), + personal care items, + and hygiene vocabulary. + + - name: "Fitness & Gym" + emoji: "🏋️" + level: "A2" + description: > + Fitness vocabulary, gym equipment, and exercise terms. + category: "Fitness & Gym" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "fitness.json" + instructions: > + Include gym equipment (dumbbell, treadmill, mat), + exercise types, + and fitness vocabulary. + + - name: "Yoga & Meditation" + emoji: "🧘" + level: "A2" + description: > + Yoga poses, meditation practices, and wellness activities. + category: "Yoga & Meditation" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 50 + output_filename: "yoga.json" + instructions: > + Include yoga poses (warrior, tree, downward dog), + meditation terms, + and wellness practices. + + - name: "Team Sports" + emoji: "🏆" + level: "A2" + description: > + Team sports vocabulary and competitive activities. + category: "Team Sports" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "team_sports.json" + instructions: > + Include team sports (football, basketball, volleyball), + sports positions, + and team competition vocabulary. + + - name: "Individual Sports" + emoji: "🎾" + level: "A2" + description: > + Individual sports and solo athletic activities. + category: "Individual Sports" + languages: [1, 3, 7, 15, 14, 20] + amount: 50 + output_filename: "individual_sports.json" + instructions: > + Include individual sports (tennis, golf, athletics), + solo activities, + and athletic vocabulary. + + - name: "Water Sports" + emoji: "🏊" + level: "A2" + description: > + Water sports and aquatic activities vocabulary. + category: "Water Sports" + languages: [1, 3, 7, 15, 14, 20] + amount: 50 + output_filename: "water_sports.json" + instructions: > + Include water sports (swimming, surfing, diving), + aquatic activities, + and water-related sports vocabulary. + + - name: "Winter Sports" + emoji: "⛷️" + level: "A2" + description: > + Winter sports and cold weather activities. + category: "Winter Sports" + languages: [1, 3, 7, 15, 14, 20] + amount: 50 + output_filename: "winter_sports.json" + instructions: > + Include winter sports (skiing, snowboarding, skating), + cold weather activities, + and winter vocabulary. + + - name: "Outdoor Activities" + emoji: "⛰️" + level: "A2" + description: > + Outdoor adventures and nature activities. + category: "Outdoor Activities" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "outdoor_activities.json" + instructions: > + Include outdoor activities (hiking, camping, climbing), + adventure sports, + and nature-based pursuits. + + - name: "Board Games & Card Games" + emoji: "🎲" + level: "A2" + description: > + Board games, card games, and tabletop gaming vocabulary. + category: "Board Games & Card Games" + languages: [1, 3, 7, 15, 14, 20] + amount: 50 + output_filename: "board_games.json" + instructions: > + Include game types (chess, poker, monopoly), + gaming terminology, + and board game vocabulary. + + - name: "Video Games" + emoji: "🎮" + level: "A2" + description: > + Video games, gaming platforms, and interactive entertainment. + category: "Video Games" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13] + amount: 60 + output_filename: "video_games.json" + instructions: > + Include gaming terms (player, level, score, controller), + game genres, + and gaming platform vocabulary. + + - name: "Gambling & Casino" + emoji: "🎰" + level: "B1" + description: > + Casino games, gambling terminology, and betting vocabulary. + category: "Gambling & Casino" + languages: [1, 3, 7] + amount: 50 + output_filename: "gambling.json" + instructions: > + Include casino games (poker, blackjack, roulette), + gambling terms, + and betting vocabulary. + + - name: "Television & Streaming" + emoji: "📺" + level: "A2" + description: > + Television programs, streaming services, and broadcast media. + category: "Television & Streaming" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13] + amount: 60 + output_filename: "television.json" + instructions: > + Include TV genres (drama, comedy, documentary), + streaming vocabulary, + and broadcast media terms. + + - name: "Film & Cinema" + emoji: "🎬" + level: "B1" + description: > + Film terminology, movie production, and cinema vocabulary. + category: "Film & Cinema" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "film_cinema.json" + instructions: > + Include film production terms (director, script, shot, scene), + movie genres, + and cinema vocabulary. + + - name: "Radio & Podcasting" + emoji: "📻" + level: "A2" + description: > + Radio broadcasting and podcast production vocabulary. + category: "Radio & Podcasting" + languages: [1, 3, 7, 15, 14] + amount: 50 + output_filename: "radio_podcast.json" + instructions: > + Include radio terms (broadcast, frequency, signal), + podcast vocabulary, + and audio media terminology. + + - name: "Writing & Literature" + emoji: "✍️" + level: "B1" + description: > + Literary genres, writing styles, and creative writing vocabulary. + category: "Writing & Literature" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "writing.json" + instructions: > + Include literary genres (poetry, fiction, drama), + writing terms, + and creative vocabulary. + + - name: "Poetry & Literary Devices" + emoji: "📜" + level: "B2" + description: > + Poetic forms, literary devices, and verse terminology. + category: "Poetry & Literary Devices" + languages: [1, 3, 7] + amount: 60 + output_filename: "poetry.json" + instructions: > + Include poetic forms (sonnet, haiku, ode), + literary devices (metaphor, alliteration, meter), + and verse terminology. + + - name: "Journalism - Advanced" + emoji: "🖊️" + level: "B2" + description: > + Advanced journalism terminology and investigative reporting. + category: "Journalism - Advanced" + languages: [1, 3, 7] + amount: 70 + output_filename: "journalism_advanced.json" + instructions: > + Include investigative journalism terms, + news gathering vocabulary, + and advanced reporting concepts. + + - name: "Advertising & PR" + emoji: "📢" + level: "B2" + description: > + Advertising strategies, public relations, and marketing communications. + category: "Advertising & PR" + languages: [1, 3, 7] + amount: 70 + output_filename: "advertising_pr.json" + instructions: > + Include advertising terminology (campaign, slogan, targeting), + PR vocabulary, + and marketing communications. + + - name: "Career & Career Development" + emoji: "📈" + level: "B1" + description: > + Career planning, professional development, and job search vocabulary. + category: "Career & Career Development" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "career.json" + instructions: > + Include career terms (resume, interview, promotion), + professional development vocabulary, + and job search terminology. + + - name: "Workplace Safety" + emoji: "🦺" + level: "B1" + description: > + Occupational safety and health terminology. + category: "Workplace Safety" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "workplace_safety.json" + instructions: > + Include safety regulations, + occupational health terms, + and workplace hazard vocabulary. + + - name: "Unions & Labor" + emoji: "✊" + level: "B2" + description: > + Labor unions, worker rights, and employment law. + category: "Unions & Labor" + languages: [1, 3, 7] + amount: 60 + output_filename: "labor.json" + instructions: > + Include union terminology, + worker rights vocabulary, + and labor relations concepts. + + - name: "Banking - Personal" + emoji: "🏦" + level: "A2" + description: > + Personal banking services and basic financial vocabulary. + category: "Banking - Personal" + languages: [1, 3, 7, 15, 14, 20, 21, 2, 13, 24] + amount: 60 + output_filename: "banking_personal.json" + instructions: > + Include banking terms (account, deposit, withdrawal), + basic financial vocabulary, + and personal banking services. + + - name: "Investing - Basics" + emoji: "📊" + level: "B1" + description: > + Basic investment vocabulary and personal finance investing. + category: "Investing - Basics" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "investing.json" + instructions: > + Include investment terms (stock, bond, dividend), + basic investing vocabulary, + and portfolio concepts. + + - name: "Taxes & Accounting" + emoji: "📋" + level: "B1" + description: > + Taxation and basic accounting terminology. + category: "Taxes & Accounting" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "taxes_accounting.json" + instructions: > + Include tax vocabulary (deduction, exemption, refund), + basic accounting terms, + and financial documentation. + + - name: "Insurance" + emoji: "🛡️" + level: "B1" + description: > + Insurance terminology and risk management concepts. + category: "Insurance" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "insurance.json" + instructions: > + Include insurance types (life, health, car), + policy terms, + and risk management vocabulary. + + - name: "Trade & Commerce" + emoji: "🚢" + level: "B1" + description: > + International trade terminology and commercial vocabulary. + category: "Trade & Commerce" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "trade.json" + instructions: > + Include trade terms (import, export, tariff, agreement), + commercial vocabulary, + and business transactions. + + - name: "Supply Chain & Logistics" + emoji: "📦" + level: "B1" + description: > + Supply chain management and logistics terminology. + category: "Supply Chain & Logistics" + languages: [1, 3, 7, 15, 14, 20] + amount: 60 + output_filename: "logistics.json" + instructions: > + Include logistics terms (warehouse, distribution, shipment), + supply chain vocabulary, + and operational terminology. + + - name: "Quality Control" + emoji: "✅" + level: "B2" + description: > + Quality management and quality control terminology. + category: "Quality Control" + languages: [1, 3, 7, 15, 14] + amount: 60 + output_filename: "quality_control.json" + instructions: > + Include quality terms (standard, inspection, certification), + management vocabulary, + and quality assurance concepts. + + - name: "Project Management" + emoji: "📅" + level: "B1" + description: > + Project management terminology and methodology. + category: "Project Management" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "project_management.json" + instructions: > + Include project terms (deadline, milestone, deliverable), + management methodology, + and planning vocabulary. + + - name: "Entrepreneurship" + emoji: "🚀" + level: "B2" + description: > + Startup terminology and entrepreneurial concepts. + category: "Entrepreneurship" + languages: [1, 3, 7, 15, 14] + amount: 70 + output_filename: "entrepreneurship.json" + instructions: > + Include startup terms (venture capital, pitch, MVP), + entrepreneurial concepts, + and business creation vocabulary. + + - name: "Stock Market & Trading" + emoji: "📉" + level: "B2" + description: > + Stock market terminology and trading vocabulary. + category: "Stock Market & Trading" + languages: [1, 3, 7] + amount: 70 + output_filename: "stock_market.json" + instructions: > + Include trading terms (bid, ask, bull, bear), + market vocabulary, + and investment terminology. + + - name: "Cryptocurrency & Blockchain" + emoji: "💰" + level: "B2" + description: > + Cryptocurrency and blockchain technology vocabulary. + category: "Cryptocurrency & Blockchain" + languages: [1, 3, 7] + amount: 60 + output_filename: "cryptocurrency.json" + instructions: > + Include crypto terms (bitcoin, wallet, mining, blockchain), + decentralized vocabulary, + and digital currency terminology. + + - name: "International Business" + emoji: "🌍" + level: "B2" + description: > + International business practices and global commerce. + category: "International Business" + languages: [1, 3, 7, 15, 14] + amount: 70 + output_filename: "international_business.json" + instructions: > + Include global business terms (expansion, localization, outsourcing), + cross-cultural vocabulary, + and international commerce. + + - name: "Negotiation & Persuasion" + emoji: "🤝" + level: "B2" + description: > + Negotiation terminology and persuasive communication. + category: "Negotiation & Persuasion" + languages: [1, 3, 7, 15, 14] + amount: 60 + output_filename: "negotiation.json" + instructions: > + Include negotiation terms (compromise, concession, bargain), + persuasion vocabulary, + and deal-making terminology. + + - name: "Leadership & Management" + emoji: "👑" + level: "B2" + description: > + Leadership concepts and management theory vocabulary. + category: "Leadership & Management" + languages: [1, 3, 7, 15, 14, 20] + amount: 70 + output_filename: "leadership.json" + instructions: > + Include leadership terms (vision, strategy, delegation), + management concepts, + and organizational leadership vocabulary. + + - name: "Corporate Finance" + emoji: "💼" + level: "C1" + description: > + Advanced corporate finance and financial analysis terminology. + category: "Corporate Finance" + languages: [1, 3, 7] + amount: 70 + output_filename: "corporate_finance.json" + instructions: > + Include financial analysis terms (EBITDA, cash flow, leverage), + corporate finance concepts, + and investment banking vocabulary. + + - name: "Mergers & Acquisitions" + emoji: "🔗" + level: "C1" + description: > + M&A terminology and corporate restructuring vocabulary. + category: "Mergers & Acquisitions" + languages: [1, 3, 7] + amount: 70 + output_filename: "ma.json" + instructions: > + Include M&A terms (acquisition, merger, due diligence, valuation), + restructuring vocabulary, + and corporate transaction terminology. + + - name: "Venture Capital" + emoji: "💎" + level: "C1" + description: > + Venture capital terminology and startup funding vocabulary. + category: "Venture Capital" + languages: [1, 3, 7] + amount: 60 + output_filename: "venture_capital.json" + instructions: > + Include VC terms (angel investor, seed round, exit strategy), + funding stages, + and investment vocabulary. + + - name: "Intellectual Property" + emoji: "©️" + level: "B2" + description: > + Intellectual property rights and patent terminology. + category: "Intellectual Property" + languages: [1, 3, 7] + amount: 60 + output_filename: "ip.json" + instructions: > + Include IP terms (patent, trademark, copyright, license), + intellectual property vocabulary, + and legal protection concepts. diff --git a/batch_generate.py b/batch_generate.py new file mode 100644 index 0000000..0cf914a --- /dev/null +++ b/batch_generate.py @@ -0,0 +1,435 @@ +""" +VocabListGenerator — Batch runner +----------------------------------- +Reads batch.yaml and generates every vocabulary list defined there, +writing all output files into the configured output folder and +keeping the manifest up to date after each successful generation. + +Multi-language expansion +------------------------ +If a batch entry has more than 2 language IDs, all C(n, 2) unordered pairs +are automatically generated. E.g. languages: [15, 7, 1, 3] produces 6 lists: + DE-PT, DE-EN, DE-ES, PT-EN, PT-ES, EN-ES + +Usage: + python batch_generate.py # process all batches (skips existing files) + python batch_generate.py --force # regenerate everything, even existing files + python batch_generate.py --dry-run # preview without calling the LLM + python batch_generate.py --list # list all batches (after expansion) + python batch_generate.py --prune # remove stale manifest entries and exit + python batch_generate.py --config FILE # use a different batch file +""" + +import argparse +import os +import re +import sys +import time +import yaml +from datetime import date, timedelta +from itertools import combinations +from pathlib import Path +from typing import Any, Dict, List, Tuple + +from config import Config +from llm_client import LLMClient +from generate import load_language_map, load_language_code_map, load_language_instructions, run_generation +from manifest_manager import print_manifest, prune_missing_files +from check_duplicates import check_file_for_true_duplicates, find_json_files + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + +def sanitize_for_filename(name: str) -> str: + """ + Convert a name into a filename-safe string. + - Lowercase + - Replace spaces and special characters with underscores + - Remove non-alphanumeric characters (except underscores) + """ + # Convert to lowercase + name = name.lower() + # Replace spaces, dashes (ASCII and em-dash), and other separators with underscore + name = re.sub(r'[\s\-–—]+', '_', name) + # Remove any non-alphanumeric characters (keep underscores) + name = re.sub(r'[^a-z0-9_]', '', name) + # Remove consecutive underscores + name = re.sub(r'_+', '_', name) + # Strip leading/trailing underscores + name = name.strip('_') + return name + + +def generate_output_filename( + entry: Dict[str, Any], + code_map: Dict[int, str], +) -> str: + """ + Generate the output filename with the new format: + YYYY_MM_DD_name_lang1_lang2_level.json + + Example: 2026_02_19_verbs_beginners_en_de_A1.json + """ + # Get today's date in YYYY_MM_DD format + today = date.today().strftime("%Y_%m_%d") + + # Get the name and sanitize it for filename + # Try 'name' first, then 'category', then fallback to 'unknown' + name = entry.get("name") or entry.get("category") or "unknown" + sanitized_name = sanitize_for_filename(name) + + # Fallback if sanitized name is empty + if not sanitized_name: + sanitized_name = "vocab" + + # Get language codes + lang_ids = entry["languages"] + code1 = code_map.get(lang_ids[0], str(lang_ids[0])).lower() + code2 = code_map.get(lang_ids[1], str(lang_ids[1])).lower() + + # Get level (default to A2 if not specified) + level = entry.get("level", "A2").strip().upper() + + # Build the new filename format + filename = f"{today}_{sanitized_name}_{code1}_{code2}_{level}.json" + + return filename + + +# --------------------------------------------------------------------------- +# Batch config loader & validator +# --------------------------------------------------------------------------- + +def load_batch_config(path: str = "batch.yaml") -> Dict[str, Any]: + try: + with open(path, "r", encoding="utf-8") as f: + return yaml.safe_load(f) + except FileNotFoundError: + print(f"ERROR: '{path}' not found.") + sys.exit(1) + except yaml.YAMLError as e: + print(f"ERROR: Could not parse '{path}': {e}") + sys.exit(1) + + +def validate_batch_entry(entry: Dict[str, Any]) -> List[str]: + """Return a list of validation error strings (empty = valid).""" + errors = [] + for field in ("name", "category", "output_filename"): + if not entry.get(field): + errors.append(f"missing '{field}'") + langs = entry.get("languages") + if not isinstance(langs, list) or len(langs) < 2: + errors.append("'languages' must be a list of at least 2 IDs") + amount = entry.get("amount") + if not isinstance(amount, int) or amount < 1: + errors.append("'amount' must be a positive integer") + return errors + + +def expand_entry( + entry: Dict[str, Any], + code_map: Dict[int, str], +) -> List[Dict[str, Any]]: + """ + Expand a batch entry into individual (lang1, lang2) sub-entries. + + - If languages has exactly 2 IDs → returns [entry] with new filename format. + - If languages has 3+ IDs → returns one entry per C(n,2) combination, + with auto-generated name suffix and output_filename using the new format. + """ + langs: List[int] = entry["languages"] + + # For entries with exactly 2 languages, just update the filename format + if len(langs) == 2: + sub = dict(entry) + sub["output_filename"] = generate_output_filename(entry, code_map) + return [sub] + + expanded: List[Dict[str, Any]] = [] + name_template = entry.get("name", entry["category"]) + + for lang1, lang2 in combinations(langs, 2): + sub = dict(entry) + sub["languages"] = [lang1, lang2] + sub["name"] = name_template + # Use new filename format with date, name, languages, and level + sub["output_filename"] = generate_output_filename(sub, code_map) + expanded.append(sub) + + return expanded + + +# --------------------------------------------------------------------------- +# Main +# --------------------------------------------------------------------------- + +def main() -> None: + parser = argparse.ArgumentParser(description="VocabListGenerator — Batch runner") + parser.add_argument("--dry-run", action="store_true", + help="Print what would be generated without calling the LLM") + parser.add_argument("--list", action="store_true", + help="List all batches (after expansion) and exit") + parser.add_argument("--prune", action="store_true", + help="Remove manifest entries whose output files no longer exist, then exit") + parser.add_argument("--force", action="store_true", + help="Regenerate all lists, even those whose output file already exists") + parser.add_argument("--config", default="batch.yaml", metavar="FILE", + help="Path to batch config file (default: batch.yaml)") + args = parser.parse_args() + + # ── Load configs ───────────────────────────────────────────────────────── + batch_cfg = load_batch_config(args.config) + main_cfg = Config() + language_map = load_language_map() + code_map = load_language_code_map() + language_instructions = load_language_instructions() + + settings = batch_cfg.get("settings", {}) + output_dir = settings.get("output_dir", "output") + manifest_file = settings.get("manifest_filename", "vocab_manifest.json") + stop_on_error = settings.get("stop_on_error", False) + + script_dir = os.path.dirname(os.path.abspath(__file__)) + output_dir = os.path.join(script_dir, output_dir) + manifest_path = os.path.join(output_dir, manifest_file) + + raw_batches: List[Dict[str, Any]] = batch_cfg.get("batches", []) + + # Separate skipped entries before expansion + active_raw = [b for b in raw_batches if not b.get("skip", False)] + skipped_raw = [b for b in raw_batches if b.get("skip", False)] + + # Validate raw entries before expanding (catches config mistakes early) + invalid = [] + for i, entry in enumerate(active_raw, 1): + errs = validate_batch_entry(entry) + if errs: + invalid.append((i, entry.get("name", f"entry #{i}"), errs)) + if invalid: + print("ERROR: The following batch entries have validation problems:\n") + for i, name, errs in invalid: + print(f" [{i}] {name}") + for e in errs: + print(f" • {e}") + sys.exit(1) + + # Expand multi-language entries into individual pairs + active: List[Dict[str, Any]] = [] + for entry in active_raw: + active.extend(expand_entry(entry, code_map)) + + skipped_expanded: List[Dict[str, Any]] = [] + for entry in skipped_raw: + skipped_expanded.extend(expand_entry(entry, code_map)) + + total_pairs = sum(b["amount"] for b in active) + + # ── --list mode ────────────────────────────────────────────────────────── + if args.list: + print(f"\nbatch.yaml — {len(raw_batches)} template(s) → " + f"{len(active)} lists to generate ({len(skipped_expanded)} skipped)\n") + for i, b in enumerate(active, 1): + langs = b["languages"] + l1 = language_map.get(langs[0], f"ID {langs[0]}") + l2 = language_map.get(langs[1], f"ID {langs[1]}") + print(f" {i:3}. [{b['output_filename']}]") + print(f" {b['name']}") + print(f" {l1} → {l2} | {b['amount']} pairs | {b['category']}") + if skipped_expanded: + print(f"\n Skipped ({len(skipped_expanded)}):") + for b in skipped_expanded: + print(f" - {b.get('name', '?')}") + print(f"\n Total: {len(active)} lists ≈ {total_pairs:,} word pairs\n") + return + + # ── --prune mode ───────────────────────────────────────────────────────── + if args.prune: + if not os.path.isfile(manifest_path): + print(f" [prune] No manifest found at {manifest_path} — nothing to do.") + return + removed = prune_missing_files(manifest_path, output_dir) + if removed == 0: + print(" [prune] Manifest is clean — no stale entries found.") + return + + # ── Banner ─────────────────────────────────────────────────────────────── + print("=" * 60) + print(" VocabListGenerator — Batch Run") + print("=" * 60) + print(f" Templates : {len(raw_batches)} defined → {len(active)} lists after expansion") + print(f" Skipped : {len(skipped_expanded)} lists") + print(f" Total pairs: ≈ {total_pairs:,}") + print(f" Output dir : {output_dir}") + print(f" Manifest : {manifest_path}") + if args.force: + print(" Mode : FORCE (regenerate all, ignoring existing files)") + elif args.dry_run: + print(" Mode : DRY RUN (no API calls)") + else: + already = sum( + 1 for b in active + if os.path.isfile(os.path.join(output_dir, b["output_filename"])) + ) + if already: + print(f" Resuming : {already} existing file(s) will be skipped (use --force to override)") + print() + + os.makedirs(output_dir, exist_ok=True) + + # ── Prune stale manifest entries before generating ──────────────────────── + if os.path.isfile(manifest_path): + prune_missing_files(manifest_path, output_dir) + + # ── Dry-run preview ────────────────────────────────────────────────────── + if args.dry_run: + print("Lists that would be generated:\n") + for i, b in enumerate(active, 1): + langs = b["languages"] + l1 = language_map.get(langs[0], f"ID {langs[0]}") + l2 = language_map.get(langs[1], f"ID {langs[1]}") + print(f" {i:3}. {b['name']}") + print(f" {l1} ({langs[0]}) → {l2} ({langs[1]}) | " + f"{b['amount']} pairs → {b['output_filename']}") + print(f"\n Total: {len(active)} lists ≈ {total_pairs:,} word pairs\n") + return + + # ── Build LLM client once ──────────────────────────────────────────────── + llm = LLMClient(main_cfg) + + # ── Run batches ────────────────────────────────────────────────────────── + ok, failed, skipped_existing = 0, 0, 0 + start_time = time.time() + generated_count = 0 # Track only generated items for time estimation + + for i, entry in enumerate(active, 1): + name = entry["name"] + category = entry["category"] + description = entry.get("description", "").strip() + instructions = entry.get("instructions", "").strip() + emoji = entry.get("emoji", "").strip() + level = entry.get("level", "A2").strip().upper() + amount = entry["amount"] + lang_ids = entry["languages"] + output_filename = entry["output_filename"] + vocab_file_path = os.path.join(output_dir, output_filename) + + # Calculate time estimation based only on generated items + current_time = time.time() + elapsed = current_time - start_time + avg_time_per_item = elapsed / generated_count if generated_count > 0 else 0 + remaining = len(active) - i - skipped_existing + eta_seconds = avg_time_per_item * remaining + eta_str = str(timedelta(seconds=int(eta_seconds))) if remaining > 0 else "done" + + header = f"[{i}/{len(active)}] {emoji} {name}" if emoji else f"[{i}/{len(active)}] {name}" + print(f"{header} [{level}]") + print(f" File : {output_filename}") + if generated_count > 0: + print(f" ETA : {eta_str} ({int(avg_time_per_item)}s/item)") + + # Skip if already generated (unless --force) + if not args.force and os.path.isfile(vocab_file_path): + print(f" ✔ Already exists — skipping (use --force to regenerate)") + print("-" * 60) + skipped_existing += 1 + continue + + # Track time before generation + item_start_time = time.time() + + success = run_generation( + llm=llm, + language_map=language_map, + lang_first_id=lang_ids[0], + lang_second_id=lang_ids[1], + amount=amount, + category=category, + name=name, + description=description, + instructions=instructions, + output_file_path=vocab_file_path, + manifest_path=manifest_path, + emoji=emoji, + level=level, + language_instructions=language_instructions, + ) + + if success: + ok += 1 + generated_count += 1 + else: + failed += 1 + print(f" ✗ FAILED: {name}\n") + if stop_on_error: + print("stop_on_error is set — aborting.") + break + + print("-" * 60) + + # ── Summary ────────────────────────────────────────────────────────────── + total_time = time.time() - start_time + print(f"\n{'=' * 60}") + print(f" Batch complete.") + print(f" ✓ Success : {ok}") + print(f" ✗ Failed : {failed}") + print(f" ⏱ Total time: {str(timedelta(seconds=int(total_time)))}") + if skipped_existing: + print(f" ⏭ Existing : {skipped_existing} (already generated, skipped)") + if skipped_expanded: + print(f" - Disabled : {len(skipped_expanded)} (skip: true in batch.yaml)") + print(f"{'=' * 60}\n") + + # ── Check for TRUE duplicates and delete bad files ───────────────────── + print("Checking for TRUE duplicates (both wordFirst AND wordSecond identical)...\n") + + json_files = find_json_files(output_dir) + files_with_dupes = 0 + files_deleted = 0 + + for file_path in json_files: + result = check_file_for_true_duplicates(file_path, threshold=3) + + if "error" in result: + continue + + true_dupes = result.get("true_dupes", {}) + + if true_dupes: + files_with_dupes += 1 + try: + rel_path = file_path.relative_to(Path(output_dir)) + except ValueError: + rel_path = file_path.name + + print(f" ⚠️ Deleting {rel_path}") + print(f" TRUE duplicates found: {len(true_dupes)} pairs appearing 3+ times") + for pair, count in list(true_dupes.items())[:3]: + wf, ws = pair + print(f" - \"{wf}\" → \"{ws}\" = {count} times") + + # Delete the file + try: + os.remove(file_path) + files_deleted += 1 + print(f" ✅ DELETED\n") + except Exception as e: + print(f" ❌ Failed to delete: {e}\n") + + if files_with_dupes > 0: + print(f"\n{'=' * 60}") + print(f" 🗑️ Deleted {files_deleted} files with 3+ TRUE duplicates") + print(f"{'=' * 60}\n") + else: + print(" ✅ No files with TRUE duplicates found\n") + + print_manifest(manifest_path) + + if failed > 0: + sys.exit(1) + + +if __name__ == "__main__": + main() diff --git a/check_duplicates.py b/check_duplicates.py new file mode 100644 index 0000000..acfe350 --- /dev/null +++ b/check_duplicates.py @@ -0,0 +1,177 @@ +""" +Sanity Check for Vocabulary Files +--------------------------------- +Checks all JSON files in the output directory for TRUE duplicate word pairs. +A TRUE duplicate is when BOTH wordFirst AND wordSecond are identical. +Throws a warning if any word pair appears 3 times or more. + +Also supports deleting files that have 3+ true duplicates. + +Usage: + python check_duplicates.py + python check_duplicates.py --output output + python check_duplicates.py --threshold 3 + python check_duplicates.py --delete # Delete files with 3+ true duplicates +""" + +import argparse +import json +import os +from collections import Counter +from pathlib import Path +from typing import Dict, List + + +def find_json_files(output_dir: str) -> List[Path]: + """Find all JSON files in the output directory.""" + output_path = Path(output_dir) + if not output_path.exists(): + print(f"ERROR: Output directory '{output_dir}' not found.") + exit(1) + + # Find all JSON files (including subdirectories) + json_files = list(output_path.rglob("*.json")) + return [f for f in json_files if f.name != "vocab_manifest.json"] + + +def check_file_for_true_duplicates(file_path: Path, threshold: int = 3) -> Dict: + """ + Check a single file for TRUE duplicates. + TRUE duplicate = when BOTH wordFirst AND wordSecond are identical. + + Returns a dict with duplicate information. + """ + try: + with open(file_path, 'r', encoding='utf-8') as f: + data = json.load(f) + except json.JSONDecodeError as e: + return { + "file": str(file_path), + "error": f"JSON parse error: {e}", + "true_dupes": {}, + "item_count": 0 + } + except Exception as e: + return { + "file": str(file_path), + "error": f"Error reading file: {e}", + "true_dupes": {}, + "item_count": 0 + } + + # Extract items + items = data.get("items", []) + if not items: + return { + "file": str(file_path), + "item_count": 0, + "true_dupes": {} + } + + # Create tuples of (wordFirst, wordSecond) to find TRUE duplicates + pair_list = [ + (item.get("wordFirst", ""), item.get("wordSecond", "")) + for item in items + if item.get("wordFirst") and item.get("wordSecond") + ] + + # Count TRUE duplicates (both first AND second must match) + pair_counts = Counter(pair_list) + + # Find duplicates above threshold + true_dupes = {pair: count for pair, count in pair_counts.items() if count >= threshold} + + return { + "file": str(file_path), + "item_count": len(items), + "true_dupes": true_dupes, + "unique_pairs": len(pair_counts) + } + + +def delete_file(file_path: Path) -> bool: + """Delete a file and return True if successful.""" + try: + os.remove(file_path) + return True + except Exception as e: + print(f" ❌ Could not delete {file_path}: {e}") + return False + + +def main(): + parser = argparse.ArgumentParser(description="Check vocabulary files for TRUE duplicates") + parser.add_argument("--output", default="output", help="Output directory to check (default: output)") + parser.add_argument("--threshold", type=int, default=3, help="Warning threshold for duplicates (default: 3)") + parser.add_argument("--delete", action="store_true", help="Delete files with 3+ TRUE duplicates") + args = parser.parse_args() + + print("=" * 60) + print(" Vocabulary Duplicate Sanity Check") + print("=" * 60) + print(f" Output dir : {args.output}") + print(f" Threshold : {args.threshold}+ occurrences = warning") + print(f" Mode : {'DELETE' if args.delete else 'CHECK'}") + print() + + json_files = find_json_files(args.output) + print(f" Found {len(json_files)} JSON files to check...\n") + + total_warnings = 0 + files_with_issues = 0 + files_deleted = 0 + + for file_path in json_files: + result = check_file_for_true_duplicates(file_path, args.threshold) + + if "error" in result: + print(f" ❌ ERROR: {result['file']}") + print(f" {result['error']}") + files_with_issues += 1 + continue + + true_dupes = result["true_dupes"] + + if true_dupes: + files_with_issues += 1 + total_warnings += len(true_dupes) + + try: + rel_path = file_path.relative_to(Path(args.output)) + except ValueError: + rel_path = file_path.name + + # Show details of true duplicates + print(f" ⚠️ {rel_path}") + print(f" Items: {result['item_count']} | Unique pairs: {result['unique_pairs']}") + print(f" TRUE duplicates (both wordFirst AND wordSecond identical):") + + # Show up to 5 duplicates + for pair, count in sorted(true_dupes.items(), key=lambda x: -x[1])[:5]: + wf, ws = pair + print(f" - \"{wf}\" → \"{ws}\" appears {count} times") + + # Delete if requested + if args.delete: + if delete_file(file_path): + files_deleted += 1 + print(f" ✅ DELETED due to {len(true_dupes)} duplicate pairs") + else: + print(f" ❌ Failed to delete") + + print() + + print("=" * 60) + if files_with_issues == 0: + print(f" ✅ All {len(json_files)} files passed sanity check!") + else: + print(f" ⚠️ Found {total_warnings} true duplicate warnings in {files_with_issues} files") + if args.delete: + print(f" 🗑️ Deleted {files_deleted} files") + else: + print(f" 💡 Run with --delete to remove files with 3+ true duplicates") + print("=" * 60) + + +if __name__ == "__main__": + main() diff --git a/conf b/conf new file mode 100644 index 0000000..4b737b6 --- /dev/null +++ b/conf @@ -0,0 +1,33 @@ +# VocabListGenerator Configuration + +# LLM Configuration (LM Studio / DeepSeek) +llm: + #base_url: "http://169.254.123.98:45612/v1" # LM Studio server URL + base_url: "https://api.deepseek.com/v1" # DeepSeek API base URL (should end in /v1) + api_key: "sk-2f2e6ad638e849ee827feabc0fde0dda" # Your DeepSeek API key + model: "deepseek-chat" # DeepSeek model name + timeout: 120 # Request timeout in seconds + max_retries: 3 # Maximum retry attempts + +# Vocabulary Generator Configuration (used by generate.py for single runs) +vocab: + amount: 50 # Number of word pairs to generate + languages: + - 52 # Language ID for first word (15 = German) + - 1 # Language ID for second word (7 = Portuguese) + category: "Words for beginners" # Flashcard category / topic + emoji: "🇬🇧" # Emoji shown in the app's list overview + level: "A1" # CEFR level: A1, A2, B1, B2, C1, or C2 + name: "Words for Beginners (EN-FI)" # Display name shown in the app + description: > # Short description shown in the app + The most essential words for beginner learners, + covering daily actions, movement, communication, and more. + instructions: > # Custom instructions passed to the AI + Focus on practical, everyday vocabulary that a beginner would encounter. + Prefer common single-word entries over long phrases. + output_filename: "words_beginners_en_fi.json" # Saved inside output_dir + +# Output & Manifest Configuration +manifest: + output_dir: "output" # All JSON files are written here (copy this to your server) + filename: "vocab_manifest.json" # Manifest file that tracks all generated lists diff --git a/config.py b/config.py new file mode 100644 index 0000000..4e7bbf3 --- /dev/null +++ b/config.py @@ -0,0 +1,68 @@ +""" +Configuration management for VocabListGenerator +""" + +import sys +import yaml +from typing import Dict, Any, List + + +class Config: + """Configuration loader and validator for VocabListGenerator""" + + def __init__(self, config_path: str = "conf"): + self.config_path = config_path + self.data = self._load_config() + self._validate_config() + + def _load_config(self) -> Dict[str, Any]: + """Load configuration from YAML file""" + try: + with open(self.config_path, 'r', encoding='utf-8') as f: + return yaml.safe_load(f) + except FileNotFoundError: + print(f"Configuration file '{self.config_path}' not found!") + sys.exit(1) + except yaml.YAMLError as e: + print(f"Error parsing configuration file: {e}") + sys.exit(1) + + def _validate_config(self): + """Validate required configuration fields""" + if self.data is None: + print(f"Configuration file '{self.config_path}' is empty or invalid!") + sys.exit(1) + + for section in ['llm', 'vocab']: + if section not in self.data: + print(f"Missing required section '{section}' in conf") + sys.exit(1) + + vocab = self.data['vocab'] + + if 'languages' not in vocab or not isinstance(vocab['languages'], list) or len(vocab['languages']) != 2: + print("conf: 'vocab.languages' must contain exactly 2 language IDs (first and second language)") + sys.exit(1) + + if 'amount' not in vocab or not isinstance(vocab['amount'], int) or vocab['amount'] < 1: + print("conf: 'vocab.amount' must be a positive integer") + sys.exit(1) + + if 'category' not in vocab or not vocab['category']: + print("conf: 'vocab.category' must be a non-empty string") + sys.exit(1) + + @property + def llm_config(self) -> Dict[str, Any]: + """LLM connection settings""" + return self.data['llm'] + + @property + def vocab_config(self) -> Dict[str, Any]: + """Vocabulary generator settings""" + return self.data['vocab'] + + @property + def manifest_config(self) -> Dict[str, Any]: + """Manifest settings (optional section)""" + return self.data.get('manifest', {}) diff --git a/first.py b/first.py new file mode 100644 index 0000000..0a154dd --- /dev/null +++ b/first.py @@ -0,0 +1,89 @@ +import json +import os +from datetime import datetime, timezone + +def generate_vocabulary_import( + category_name: str, + lang_first_id: int, + lang_second_id: int, + word_pairs: list, + output_filename: str = "import_ready_vocab.json" +): + """ + Generates a Polly-compatible JSON import file for a new vocabulary category, + saving it in the same directory as this script. + """ + + # Generate a current timestamp in the exact ISO format Kotlin's Instant expects + now_iso = datetime.now(timezone.utc).strftime('%Y-%m-%dT%H:%M:%S.%f')[:-3] + 'Z' + + # Base structure for a CategoryExport + export_data = { + "type": "Category", + "exportDate": now_iso, + "metadata": { + "itemCount": len(word_pairs), + "categoryCount": 1, + "exportScope": f"Category: {category_name}" + }, + "category": { + "type": "TagCategory", + "id": 99999, # Dummy ID; your app's ID remapping will fix this on import + "name": category_name + }, + "items": [], + "states": [], # Left empty because these are brand new words + "stageMappings": [] + } + + # Populate items and stage mappings + start_id = 100000 + + for idx, (word_first, word_second) in enumerate(word_pairs, start=start_id): + + export_data["items"].append({ + "id": idx, + "languageFirstId": lang_first_id, + "languageSecondId": lang_second_id, + "wordFirst": word_first, + "wordSecond": word_second, + "createdAt": now_iso, + "features": "{}" # Empty features block + }) + + export_data["stageMappings"].append({ + "vocabularyItemId": idx, + "stage": "NEW" + }) + + # --- NEW: Get the directory of the current script and build the full path --- + script_dir = os.path.dirname(os.path.abspath(__file__)) + full_output_path = os.path.join(script_dir, output_filename) + + # Save to file using the absolute path + with open(full_output_path, 'w', encoding='utf-8') as f: + json.dump(export_data, f, indent=2, ensure_ascii=False) + + print(f"Successfully generated {len(word_pairs)} items!") + print(f"Saved to: {full_output_path}") + + +# --- Example Usage --- +if __name__ == "__main__": + GERMAN_ID = 15 + PORTUGUESE_ID = 7 + + new_words = [ + ("Krankenwagen", "ambulância"), + ("Blutdruck", "pressão arterial"), + ("Rollstuhl", "cadeira de rodas"), + ("Fieberthermometer", "termômetro") + ] + + generate_vocabulary_import( + category_name="termos médicos - extra", + lang_first_id=GERMAN_ID, + lang_second_id=PORTUGUESE_ID, + word_pairs=new_words, + output_filename="polly_import_med_extra.json" + ) \ No newline at end of file diff --git a/generate.py b/generate.py new file mode 100644 index 0000000..39d6dba --- /dev/null +++ b/generate.py @@ -0,0 +1,334 @@ +""" +VocabListGenerator — Single-run script +---------------------------------------- +Reads configuration from 'conf', calls the LLM to generate vocabulary word pairs, +writes a Polly-compatible JSON import file into the configured output folder, +and updates the manifest. + +Usage: + python generate.py +""" + +import os +import sys +import xml.etree.ElementTree as ET +import yaml +from typing import Dict, Any, Optional + +from config import Config +from llm_client import LLMClient +from models import VocabRequest +from first import generate_vocabulary_import +from manifest_manager import update_manifest, print_manifest, prune_missing_files + + +# --------------------------------------------------------------------------- +# Language map helper +# --------------------------------------------------------------------------- + +def load_language_map(xml_path: str = "languages.xml") -> Dict[int, str]: + """ + Parse languages.xml and return a mapping of { language_id: language_name }. + E.g. {1: 'English', 2: 'Mandarin', 15: 'German', ...} + """ + language_map: Dict[int, str] = {} + try: + tree = ET.parse(xml_path) + root = tree.getroot() + for elem in root.iter("string"): + name_attr = elem.get("name", "") + if name_attr.startswith("language_"): + try: + lang_id = int(name_attr.split("_", 1)[1]) + if elem.text: + language_map[lang_id] = elem.text.strip() + except (ValueError, AttributeError): + pass + except FileNotFoundError: + print(f"ERROR: '{xml_path}' not found.") + sys.exit(1) + except ET.ParseError as e: + print(f"ERROR: Could not parse '{xml_path}': {e}") + sys.exit(1) + return language_map + + +def load_language_code_map(xml_path: str = "languages.xml") -> Dict[int, str]: + """ + Parse languages.xml and return a mapping of { language_id: iso_code }. + E.g. {1: 'en', 7: 'pt', 15: 'de', ...} + Parsed from the string-array items like "de,DE,15". + """ + code_map: Dict[int, str] = {} + try: + tree = ET.parse(xml_path) + root = tree.getroot() + for array in root.iter("string-array"): + if array.get("name") == "language_codes": + for item in array.iter("item"): + if item.text: + parts = item.text.strip().split(",") + if len(parts) >= 3: + try: + lang_id = int(parts[2]) + code_map[lang_id] = parts[0].lower() + except ValueError: + pass + except (FileNotFoundError, ET.ParseError): + pass + return code_map + + +def load_language_instructions(yaml_path: str = "language_instructions.yaml") -> Dict[int, Dict[str, str]]: + """ + Load language-specific instructions from YAML file. + Returns a mapping of { language_id: { key: instruction } }. + """ + instructions: Dict[int, Dict[str, str]] = {} + try: + with open(yaml_path, "r", encoding="utf-8") as f: + data = yaml.safe_load(f) + if data: + for lang_id_str, lang_data in data.items(): + # Skip comments/strings + if isinstance(lang_id_str, str) and lang_id_str.startswith("#"): + continue + try: + lang_id = int(lang_id_str) + if isinstance(lang_data, dict): + instructions[lang_id] = lang_data + except (ValueError, TypeError): + pass + except FileNotFoundError: + print(f"WARNING: '{yaml_path}' not found. Using default instructions.") + except yaml.YAMLError as e: + print(f"WARNING: Could not parse '{yaml_path}': {e}") + return instructions + + +def get_language_instruction_text(lang_id: int, language_instructions: Dict[int, Dict[str, str]]) -> str: + """ + Get the instruction text for a specific language. + Returns a formatted string with transcription/variant instructions. + """ + if lang_id not in language_instructions: + return "" + + lang_data = language_instructions[lang_id] + parts = [] + + # Add transcription instruction if present + if "transcription" in lang_data: + parts.append(lang_data["transcription"]) + + # Add variant instruction if present + if "variant" in lang_data: + parts.append(f"Use {lang_data['variant']}.") + + # Add special instruction if present + if "special" in lang_data: + parts.append(lang_data["special"]) + + return " ".join(parts) + + +def merge_instructions( + base_instructions: str, + lang_first_id: int, + lang_second_id: int, + language_instructions: Dict[int, Dict[str, str]] +) -> str: + """ + Merge base instructions with language-specific instructions. + Language-specific instructions are appended to the base instructions. + """ + lang1_instr = get_language_instruction_text(lang_first_id, language_instructions) + lang2_instr = get_language_instruction_text(lang_second_id, language_instructions) + + # Collect all instruction parts + all_parts = [] + if base_instructions: + all_parts.append(base_instructions) + if lang1_instr: + all_parts.append(lang1_instr) + if lang2_instr: + all_parts.append(lang2_instr) + + return " ".join(all_parts) + + +# --------------------------------------------------------------------------- +# Core generation function (reused by batch_generate.py) +# --------------------------------------------------------------------------- + +def run_generation( + llm: LLMClient, + language_map: Dict[int, str], + lang_first_id: int, + lang_second_id: int, + amount: int, + category: str, + name: str, + description: str, + instructions: str, + output_file_path: str, # absolute path including filename + manifest_path: str, # absolute path to manifest JSON + emoji: str = "", + level: str = "A2", + language_instructions: Optional[Dict[int, Dict[str, str]]] = None, +) -> bool: + """ + Generate one vocabulary list and update the manifest. + Returns True on success, False on failure. + """ + lang_first_name = language_map.get(lang_first_id) + lang_second_name = language_map.get(lang_second_id) + + if not lang_first_name: + print(f" ERROR: Language ID {lang_first_id} not found in languages.xml") + return False + if not lang_second_name: + print(f" ERROR: Language ID {lang_second_id} not found in languages.xml") + return False + + # Merge base instructions with language-specific instructions + final_instructions = instructions + if language_instructions: + final_instructions = merge_instructions( + instructions, + lang_first_id, + lang_second_id, + language_instructions + ) + + print(f" Languages : {lang_first_name} (ID {lang_first_id}) → {lang_second_name} (ID {lang_second_id})") + print(f" Amount : {amount} word pairs") + if final_instructions: + preview = final_instructions if len(final_instructions) <= 90 else final_instructions[:87] + "..." + print(f" Instructions: {preview}") + print() + + request = VocabRequest( + amount=amount, + lang_first_id=lang_first_id, + lang_second_id=lang_second_id, + lang_first_name=lang_first_name, + lang_second_name=lang_second_name, + category=category, + instructions=final_instructions, + level=level, + ) + + print(" Generating vocabulary via LLM …") + word_pairs = llm.generate_vocabulary(request) + + if not word_pairs: + print(" ERROR: No vocabulary pairs were generated.") + return False + + print(f" Generated {len(word_pairs)} word pairs.") + preview_count = min(3, len(word_pairs)) + for i, (w1, w2) in enumerate(word_pairs[:preview_count], 1): + print(f" {i}. {w1} → {w2}") + if len(word_pairs) > preview_count: + print(f" … and {len(word_pairs) - preview_count} more") + print() + + # Ensure output directory exists + os.makedirs(os.path.dirname(output_file_path), exist_ok=True) + + # Write Polly import file (pass absolute path directly) + generate_vocabulary_import( + category_name=category, + lang_first_id=lang_first_id, + lang_second_id=lang_second_id, + word_pairs=word_pairs, + output_filename=output_file_path, + ) + + # Update manifest + update_manifest( + manifest_path=manifest_path, + vocab_file_path=output_file_path, + lang_first_id=lang_first_id, + lang_second_id=lang_second_id, + category=category, + item_count=len(word_pairs), + name=name, + description=description, + emoji=emoji, + level=level, + ) + return True + + +# --------------------------------------------------------------------------- +# Main (single-run entry point) +# --------------------------------------------------------------------------- + +def main() -> None: + print("=" * 50) + print(" VocabListGenerator") + print("=" * 50) + print() + + config = Config() + vocab_cfg = config.vocab_config + manifest_cfg = config.manifest_config + + language_map = load_language_map() + + # Resolve paths + script_dir = os.path.dirname(os.path.abspath(__file__)) + output_dir = os.path.join(script_dir, manifest_cfg.get("output_dir", "output")) + manifest_path = os.path.join(output_dir, manifest_cfg.get("filename", "vocab_manifest.json")) + output_filename = vocab_cfg.get("output_filename", "vocab_output.json") + vocab_file_path = os.path.join(output_dir, output_filename) + + os.makedirs(output_dir, exist_ok=True) + + # Prune stale manifest entries before generating + if os.path.isfile(manifest_path): + prune_missing_files(manifest_path, output_dir) + + # Read parameters + lang_ids = vocab_cfg["languages"] + category = vocab_cfg["category"] + name = vocab_cfg.get("name", "").strip() + description = vocab_cfg.get("description", "").strip() + instructions = vocab_cfg.get("instructions", "").strip() + emoji = vocab_cfg.get("emoji", "").strip() + level = vocab_cfg.get("level", "A2").strip().upper() + amount = vocab_cfg["amount"] + + print(f" Category : {category}") + print(f" Level : {level}") + print(f" Output dir : {output_dir}") + print(f" Manifest : {manifest_path}") + + llm = LLMClient(config) + + success = run_generation( + llm=llm, + language_map=language_map, + lang_first_id=lang_ids[0], + lang_second_id=lang_ids[1], + amount=amount, + category=category, + name=name, + description=description, + instructions=instructions, + output_file_path=vocab_file_path, + manifest_path=manifest_path, + emoji=emoji, + level=level, + ) + + if not success: + sys.exit(1) + + print_manifest(manifest_path) + + +if __name__ == "__main__": + main() diff --git a/instructions.md b/instructions.md new file mode 100644 index 0000000..dd9121a --- /dev/null +++ b/instructions.md @@ -0,0 +1,52 @@ +## Core Rules & App Mechanics +When generating the Python logic for the JSON, you must adhere to these rules because of how the app's Kotlin data models and Room database are structured: + +1. **Export Structure:** The root object is a `CategoryExport`. It must contain exactly one category definition and an array of items belonging to it. +2. **Dummy IDs:** Do not attempt to guess or fetch the target database IDs. The app handles ID remapping (ConflictResolution) natively during import. + * Always use `99999` for the category `id`. + * Start item `id`s sequentially from `100000`. +3. **Hardcoded Dates:** The Kotlin parser uses `kotlinx.serialization` and strictly expects ISO-8601 timestamps for date fields. If they are missing or empty, the app will crash. However, the dates do not need to be accurate for new imports. Hardcode `"2024-01-01T00:00:00.000Z"` for the `exportDate` and `createdAt` fields. +4. **Minimal Data:** + * `formatVersion` must be `1`. + * The `states` array must be completely empty: `[]` (since these are new words without learning history). + * The `features` property on every item must strictly be an empty JSON object string: `"{}"`. + * Completely omit the `zipfFrequencyFirst` and `zipfFrequencySecond` fields. +5. **Stage Mappings:** Every generated item needs a corresponding entry in the `stageMappings` array, setting its learning stage to `"NEW"`. + +## Target JSON Schema +Your Python script must output a JSON file that perfectly matches this structure. The `items` and `stageMappings` arrays should expand dynamically based on the input words. + +```json +{ + "type": "Category", + "formatVersion": 1, + "exportDate": "2024-01-01T00:00:00.000Z", + "metadata": { + "itemCount": 1, + "categoryCount": 1, + "exportScope": "Category: " + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "" + }, + "items": [ + { + "id": 100000, + "languageFirstId": , + "languageSecondId": , + "wordFirst": "", + "wordSecond": "", + "createdAt": "2024-01-01T00:00:00.000Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/language_instructions.yaml b/language_instructions.yaml new file mode 100644 index 0000000..39b5c39 --- /dev/null +++ b/language_instructions.yaml @@ -0,0 +1,90 @@ +# Language-Specific Instructions +# ============================== +# This file contains language-specific instructions that are automatically +# applied when generating vocabulary lists. The instructions are merged with +# any batch-specific instructions. +# +# Supported languages (by ID): +# 1=English 2=Mandarin 3=Spanish 4=Hindi 5=Arabic +# 7=Portuguese 8=Russian 13=Korean 14=French 15=German +# 19=Indonesian 20=Italian 21=Japanese 24=Polish 39=Romanian + +# Non-Latin script languages require Latin transcription +# These instructions are added automatically for relevant languages + +# Japanese (ID: 21) +21: + name: "Japanese" + transcription: "Include hiragana and romaji in parentheses ONLY for pronunciation. Do NOT add grammatical metadata like formal/informal. Example: 食べる (たべる, taberu)" + +# Chinese/Mandarin (ID: 2) +2: + name: "Chinese (Mandarin)" + transcription: "Include pinyin in parentheses ONLY for pronunciation. Do NOT add tone marks or grammatical annotations. Example: 吃 (chī)" + +# Korean (ID: 13) +13: + name: "Korean" + transcription: "Include romanization in parentheses ONLY for pronunciation. Do NOT add grammatical metadata. Example: 먹다 (meokda)" + +# Russian (ID: 8) - Cyrillic script +8: + name: "Russian" + transcription: "Include transliteration in Latin script in parentheses ONLY for pronunciation. Do NOT add gender or case information." + +# Arabic (ID: 5) - Arabic script +5: + name: "Arabic" + transcription: "Include transliteration in Latin script in parentheses ONLY for pronunciation. Do NOT add gender or root information." + +# Hindi (ID: 4) - Devanagari script +4: + name: "Hindi" + transcription: "Include transliteration in Latin script in parentheses ONLY for pronunciation. Do NOT add gender or grammatical information." + +# Polish (ID: 24) - Latin script but special characters +24: + name: "Polish" + special: "Use proper Polish diacritics (ą, ć, ę, ł, ń, ó, ś, ź, ż)." + +# Portuguese (ID: 7) +7: + name: "Portuguese" + variant: "Brazilian Portuguese" + special: "Provide plain vocabulary words only. Do NOT add metadata in parentheses like (formal), (informal), (male), (female). Use Brazilian Portuguese." + +# Indonesian (ID: 19) - Latin script +19: + name: "Indonesian" + special: "Use standard Indonesian spelling." + +# Romanian (ID: 39) - Latin script +39: + name: "Romanian" + special: "Use proper Romanian diacritics (ă, â, î, ș, ț)." + +# Latin script languages - avoid metadata in parentheses +# English (ID: 1) +1: + name: "English" + special: "Provide plain vocabulary words only. Do NOT add metadata in parentheses like (formal), (informal), (male), (female), (slang), etc." + +# Spanish (ID: 3) +3: + name: "Spanish" + special: "Provide plain vocabulary words only. Do NOT add metadata in parentheses like (formal), (informal), (male), (female), (slang), etc. Include accents (á, é, í, ó, ú, ü, ñ)." + +# French (ID: 14) +14: + name: "French" + special: "Provide plain vocabulary words only. Do NOT add metadata in parentheses like (formal), (informal), (male), (female). Include accents (é, è, ê, ë, à, â, ç)." + +# German (ID: 15) +15: + name: "German" + special: "Provide plain vocabulary words only. Do NOT add metadata in parentheses like (formal), (informal), (male), (female). Include umlauts (ä, ö, ü, ß)." + +# Italian (ID: 20) +20: + name: "Italian" + special: "Provide plain vocabulary words only. Do NOT add metadata in parentheses like (formale), (informale), (maschile), (femminile). Include accents (à, è, é, ì, ò, ù)." diff --git a/languages.xml b/languages.xml new file mode 100644 index 0000000..bdb5d84 --- /dev/null +++ b/languages.xml @@ -0,0 +1,112 @@ + + + + en,US,1 + zh,CN,2 + es,ES,3 + hi,IN,4 + ar,SA,5 + bn,BD,6 + pt,BR,7 + ru,RU,8 + pa,IN,9 + mr,IN,10 + te,IN,11 + tr,TR,12 + ko,KR,13 + fr,FR,14 + de,DE,15 + vi,VN,16 + ta,IN,17 + ur,PK,18 + id,ID,19 + it,IT,20 + ja,JP,21 + fa,IR,22 + bho,IN,23 + pl,PL,24 + ps,AF,25 + jv,ID,26 + mai,IN,27 + ml,IN,28 + su,ID,29 + ha,NG,30 + or,IN,31 + my,MM,32 + uk,UA,33 + yo,NG,34 + uz,UZ,35 + sd,PK,36 + am,ET,37 + ff,SN,38 + ro,RO,39 + ig,NG,40 + ceb,PH,41 + gu,IN,42 + kr,NG,43 + ms,MY,44 + kn,IN,45 + nl,NL,46 + hu,HU,47 + el,GR,48 + cz,CZ,49 + he,IL,50 + hr,HR,51 + fil,PH,52 + + + English + Mandarin + Spanish + Hindi + Arabic + Bengali + Portuguese + Russian + Punjabi + Marathi + Telugu + Turkish + Korean + French + German + Vietnamese + Tamil + Urdu + Indonesian + Italian + Japanese + Persian + Bhojpuri + Polish + Pashto + Javanese + Maithili + Malayalam + Sundanese + Hausa + Odia + Burmese + Ukrainian + Yoruba + Uzbek + Sindhi + Amharic + Fula + Romanian + Igbo + Cebuano + Gujarati + Kanuri + Malay + Kannada + Dutch + Hungarian + Greek + Czech + Hebrew + Croatian + Filipino + + + diff --git a/llm_client.py b/llm_client.py new file mode 100644 index 0000000..5940d7e --- /dev/null +++ b/llm_client.py @@ -0,0 +1,176 @@ +""" +OpenAI-compatible LLM client for VocabListGenerator +Adapted from ResourceTranslate/llm_client.py +""" + +import json +import openai +from typing import List, Tuple + +from models import VocabRequest, CEFR_DESCRIPTIONS +from config import Config + + +class LLMClient: + """OpenAI-compatible LLM client (LM Studio / DeepSeek)""" + + def __init__(self, config: Config): + self.config = config + self.client = openai.OpenAI( + base_url=config.llm_config['base_url'], + api_key=config.llm_config.get('api_key', 'not-needed') + ) + self.model = config.llm_config['model'] + self.timeout = config.llm_config.get('timeout', 30) + self.max_retries = config.llm_config.get('max_retries', 3) + + def generate_vocabulary(self, request: VocabRequest) -> List[Tuple[str, str]]: + """ + Ask the LLM to generate vocabulary word pairs for the given request. + Returns a list of (word_in_lang_first, word_in_lang_second) tuples. + """ + prompt = self._build_vocab_prompt(request) + + system_message = ( + "You are an expert language teacher and vocabulary specialist. " + "Generate accurate, natural vocabulary word pairs exactly as instructed. " + "Your response must be a valid JSON array and nothing else." + ) + + for attempt in range(self.max_retries): + try: + response = self.client.chat.completions.create( + model=self.model, + messages=[ + {"role": "system", "content": system_message}, + {"role": "user", "content": prompt} + ], + temperature=0.7, + timeout=self.timeout + ) + + if not response or not response.choices: + print(f" [attempt {attempt + 1}] Empty response from LLM") + continue + + choice = response.choices[0] + if not hasattr(choice, 'message') or not choice.message: + print(f" [attempt {attempt + 1}] Invalid response structure") + continue + + content = choice.message.content + if content is None: + print(f" [attempt {attempt + 1}] Empty content in response") + continue + + pairs = self._parse_vocab_response(content) + if pairs: + return pairs + else: + print(f" [attempt {attempt + 1}] Could not parse valid pairs from response") + + except Exception as e: + print(f" [attempt {attempt + 1}] Failed: {e}") + if attempt == self.max_retries - 1: + print("All attempts exhausted.") + + return [] + + # ------------------------------------------------------------------ + # Private helpers + # ------------------------------------------------------------------ + + def _build_vocab_prompt(self, request: VocabRequest) -> str: + """Build the vocabulary generation prompt.""" + level_desc = CEFR_DESCRIPTIONS.get(request.level, "") + lines = [ + f"Generate exactly {request.amount} vocabulary word pairs for the topic: \"{request.category}\".", + "", + f"Proficiency level: {request.level}" + (f" — {level_desc}" if level_desc else ""), + "", + f"First language (wordFirst): {request.lang_first_name}", + f"Second language (wordSecond): {request.lang_second_name}", + ] + + if request.instructions and request.instructions.strip(): + lines += [ + "", + "Additional instructions (follow these carefully):", + request.instructions.strip(), + ] + + lines += [ + "", + "Rules:", + "- Choose vocabulary appropriate for the specified proficiency level.", + "- Return ONLY a JSON array. No markdown, no explanation, no extra text.", + "- Each element is a 2-item array: [word_in_first_language, word_in_second_language].", + f"- The array must contain exactly {request.amount} unique pairs.", + "- NO DUPLICATES: Each word in the first language must appear only once.", + "- VARY the vocabulary: avoid repeating similar words.", + "", + "Example format:", + '[', + ' ["Krankenhaus", "hospital"],', + ' ["Arzt", "médico"]', + ']', + ] + + return "\n".join(lines) + + def _parse_vocab_response(self, response: str) -> List[Tuple[str, str]]: + """Parse the LLM response into a list of word-pair tuples.""" + if not response or not response.strip(): + return [] + + try: + text = response.strip() + + # Try direct parse first + if text.startswith('['): + data = json.loads(text) + else: + # Extract JSON array from surrounding text + start = text.find('[') + end = text.rfind(']') + 1 + if start == -1 or end == 0: + print(f"Could not locate JSON array in response:\n{response[:500]}") + return [] + data = json.loads(text[start:end]) + + # Check for duplicates and log warning + seen_first = {} + duplicates = [] + pairs: List[Tuple[str, str]] = [] + for item in data: + if isinstance(item, (list, tuple)) and len(item) >= 2: + word_first = str(item[0]).strip() + word_second = str(item[1]).strip() + + # Track duplicates + if word_first in seen_first: + duplicates.append(word_first) + else: + seen_first[word_first] = word_second + + pairs.append((word_first, word_second)) + + # Log duplicates if found + if duplicates: + unique_dups = list(set(duplicates)) + print(f" ⚠ Warning: Found {len(duplicates)} duplicate first-language words: {unique_dups[:5]}{'...' if len(unique_dups) > 5 else ''}") + # Deduplicate - keep first occurrence only + pairs = list(seen_first.items()) + print(f" → Using {len(pairs)} unique pairs after deduplication") + + return pairs + + except json.JSONDecodeError as e: + print(f"JSON parse error: {e}") + print(f"Raw response (first 800 chars):\n{response[:800]}") + print(f"Raw response (last 200 chars):\n{response[-200:]}") + return [] + except Exception as e: + print(f"Unexpected error parsing response: {e}") + print(f"Response preview:\n{response[:500]}") + return [] diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..739d57d --- /dev/null +++ b/manifest.json @@ -0,0 +1,76 @@ +{ + "files": [ + { + "id": "de_dict", + "name": "Deutsches Wörterbuch", + "description": "Deutsches offline Wörterbuch", + "version": "1.0.1", + "assets": [ + { + "filename": "dictionary_de.db", + "size_bytes": 79745024, + "checksum_sha256": "63FF07726B5D6B3B877AA55C2324EB6BD3D1DBDC72CC8C642C57364324196913" + }, + { + "filename": "dictionary_de.zstdict", + "size_bytes": 4001992, + "checksum_sha256": "FD6D2D524363827C6F945B3EADA8DEFC9762DB61C71C16BFF629AE88FA95F522" + } + ] + }, + { + "id": "en_dict", + "name": "English Dictionary", + "description": "Complete dictionary of the English language", + "version": "1.0.0", + "assets": [ + { + "filename": "dictionary_en.db", + "size_bytes": 271532032, + "checksum_sha256": "96FB126218ADC146F78B8877D77FA23187A45FBB529365614DBD61AEB2F09D17" + }, + { + "filename": "dictionary_en.zstdict", + "size_bytes": 7340032, + "checksum_sha256": "FD8F967FC0A70E1BE5D860355B76188485A754FBB7C1ED2FA0C5958B7AA905AA" + } + ] + }, + { + "id": "pt_dict", + "name": "Dicionário de Português", + "description": "Dicionário com 173.251 termos da língua portuguesa.", + "version": "1.0.0", + "assets": [ + { + "filename": "dictionary_pt.db", + "size_bytes": 17203200, + "checksum_sha256": "774B0FF3DBB1B2925173F229FF81428423687BBBD491F95B0E3CE930C9E2D203" + }, + { + "filename": "dictionary_pt.zstdict", + "size_bytes": 3076907, + "checksum_sha256": "56D4B575C8A98FB2E85EF5A9080C592BD3FCD81A14730AB76D5A5A9F45225BFA" + } + ] + }, + { + "id": "fr_dict", + "name": "Dictionary (FR)", + "description": "Auto-generated", + "version": "1.0.1", + "assets": [ + { + "filename": "dictionary_fr.db", + "size_bytes": 128954368, + "checksum_sha256": "9ADE82E30DEC0FB2946085FD15039CD7425FEAB69EFF5B771ACB385C4726C4F4" + }, + { + "filename": "dictionary_fr.zstdict", + "size_bytes": 7340032, + "checksum_sha256": "3ACD90DF2891541436655E5E6FCCB28179CD6217082B460FF1C9627CFFD1FE5A" + } + ] + } + ] +} \ No newline at end of file diff --git a/manifest_manager.py b/manifest_manager.py new file mode 100644 index 0000000..fb4fb46 --- /dev/null +++ b/manifest_manager.py @@ -0,0 +1,223 @@ +""" +Manifest manager for VocabListGenerator +----------------------------------------- +Maintains vocab_manifest.json — the index file the app fetches to discover +all available vocabulary lists, their metadata, and download info. + +Manifest entry schema +--------------------- +{ + "id": "verbs_beginners", // filename stem (no .json) + "name": "Verbs for Beginners (DE-PT)", + "description": "...", + "filename": "verbs_beginners.json", // file the app downloads + "language_ids": [15, 7], // [lang_first_id, lang_second_id] + "category": "Verbs for beginners", + "item_count": 104, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 45312, + "checksum_sha256": "A1B2C3...", + "created_at": "2026-02-18T20:53:54Z", // first generation + "updated_at": "2026-02-18T21:10:00Z" // last re-generation +} +""" + +import hashlib +import json +import os +from datetime import datetime, timezone +from pathlib import Path +from typing import Any, Dict, List, Optional + + +MANIFEST_VERSION = "1.0" + + +# --------------------------------------------------------------------------- +# Public API +# --------------------------------------------------------------------------- + +def prune_missing_files(manifest_path: str, output_dir: str) -> int: + """ + Remove entries from the manifest whose vocab file no longer exists in + *output_dir*. Saves the manifest only when at least one entry is removed. + + Returns the number of entries that were pruned. + """ + manifest = _load_manifest(manifest_path) + output_path = Path(output_dir) + + before = len(manifest["lists"]) + surviving = [] + for entry in manifest["lists"]: + file_path = output_path / entry["filename"] + if file_path.is_file(): + surviving.append(entry) + else: + print(f" [manifest] Pruned missing file: {entry['filename']} (id={entry['id']})") + + removed = before - len(surviving) + if removed: + manifest["lists"] = surviving + manifest["updated_at"] = _utc_now() + _save_manifest(manifest_path, manifest) + print(f" [manifest] Pruned {removed} stale entr{'y' if removed == 1 else 'ies'} → {manifest_path}") + + return removed + + +def update_manifest( + manifest_path: str, + vocab_file_path: str, + lang_first_id: int, + lang_second_id: int, + category: str, + item_count: int, + name: str = "", + description: str = "", + emoji: str = "", + level: str = "", +) -> None: + """ + Compute size + checksum of *vocab_file_path*, then upsert an entry in the + manifest at *manifest_path*. Creates the manifest if it does not exist yet. + + If an entry with the same ``id`` already exists it is updated in-place + (created_at is preserved, updated_at is refreshed). + """ + vocab_path = Path(vocab_file_path) + if not vocab_path.is_file(): + print(f" [manifest] WARNING: vocab file not found: {vocab_file_path}") + return + + entry_id = vocab_path.stem # e.g. "verbs_beginners" + filename = vocab_path.name # e.g. "verbs_beginners.json" + + size_bytes = _file_size(vocab_path) + checksum_sha256 = _sha256(vocab_path) + now_iso = _utc_now() + + # Load manifest; drop any entries whose files have since been deleted + output_dir = str(vocab_path.parent) + manifest = _load_manifest(manifest_path) + manifest["lists"] = [ + e for e in manifest["lists"] + if (vocab_path.parent / e["filename"]).is_file() + ] + + # Find existing entry (if any) + existing = _find_entry(manifest["lists"], entry_id) + + if existing is None: + # Brand-new entry + entry: Dict[str, Any] = { + "id": entry_id, + "name": name or entry_id, + "description": description, + "filename": filename, + "language_ids": [lang_first_id, lang_second_id], + "category": category, + "item_count": item_count, + "level": level, + "emoji": emoji, + "version": 1, + "size_bytes": size_bytes, + "checksum_sha256": checksum_sha256, + "created_at": now_iso, + "updated_at": now_iso, + } + manifest["lists"].append(entry) + print(f" [manifest] Added new entry: {entry_id}") + else: + # Update mutable fields; keep created_at and version + existing["name"] = name or existing.get("name", entry_id) + existing["description"] = description or existing.get("description", "") + existing["filename"] = filename + existing["language_ids"] = [lang_first_id, lang_second_id] + existing["category"] = category + existing["item_count"] = item_count + existing["level"] = level or existing.get("level", "") + existing["emoji"] = emoji or existing.get("emoji", "") + existing.setdefault("version", 1) # preserve existing version if already set + existing["size_bytes"] = size_bytes + existing["checksum_sha256"] = checksum_sha256 + existing["updated_at"] = now_iso + print(f" [manifest] Updated existing entry: {entry_id}") + + # Sort list alphabetically by id for stable output + manifest["lists"].sort(key=lambda e: e["id"]) + manifest["updated_at"] = now_iso + + _save_manifest(manifest_path, manifest) + print(f" [manifest] Saved → {manifest_path}") + + +def print_manifest(manifest_path: str) -> None: + """Pretty-print a summary of the manifest to stdout.""" + manifest = _load_manifest(manifest_path) + lists = manifest.get("lists", []) + print(f"\nManifest: {manifest_path} ({len(lists)} lists)") + print("-" * 60) + for entry in lists: + lang_ids = ", ".join(str(i) for i in entry.get("language_ids", [])) + print( + f" [{entry['id']}] {entry['name']}\n" + f" category={entry['category']} " + f"items={entry['item_count']} " + f"langs=[{lang_ids}] " + f"size={entry['size_bytes']} B\n" + f" updated={entry['updated_at']}" + ) + print() + + +# --------------------------------------------------------------------------- +# Private helpers +# --------------------------------------------------------------------------- + +def _load_manifest(path: str) -> Dict[str, Any]: + """Load existing manifest or return a fresh skeleton.""" + if os.path.isfile(path): + try: + with open(path, "r", encoding="utf-8") as f: + return json.load(f) + except (json.JSONDecodeError, OSError) as e: + print(f" [manifest] WARNING: could not read manifest ({e}), starting fresh.") + + return { + "manifest_version": MANIFEST_VERSION, + "updated_at": _utc_now(), + "lists": [], + } + + +def _save_manifest(path: str, manifest: Dict[str, Any]) -> None: + with open(path, "w", encoding="utf-8") as f: + json.dump(manifest, f, indent=2, ensure_ascii=False) + + +def _find_entry( + lists: List[Dict[str, Any]], entry_id: str +) -> Optional[Dict[str, Any]]: + for entry in lists: + if entry.get("id") == entry_id: + return entry + return None + + +def _file_size(path: Path) -> int: + return path.stat().st_size + + +def _sha256(path: Path) -> str: + h = hashlib.sha256() + with open(path, "rb") as f: + for chunk in iter(lambda: f.read(65536), b""): + h.update(chunk) + return h.hexdigest().upper() + + +def _utc_now() -> str: + return datetime.now(timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ") diff --git a/models.py b/models.py new file mode 100644 index 0000000..a1c3ca1 --- /dev/null +++ b/models.py @@ -0,0 +1,31 @@ +""" +Data models for VocabListGenerator +""" + +from dataclasses import dataclass + + +# Valid CEFR proficiency levels +CEFR_LEVELS = ("A1", "A2", "B1", "B2", "C1", "C2") + +CEFR_DESCRIPTIONS = { + "A1": "Beginner — absolute basics, the 100-200 most common words, simple concrete concepts", + "A2": "Elementary — basic everyday vocabulary, simple familiar topics", + "B1": "Intermediate — practical vocabulary for familiar topics, travel, work", + "B2": "Upper-Intermediate — broader vocabulary including abstract and technical topics", + "C1": "Advanced — precise vocabulary, idiomatic expressions, nuanced meaning", + "C2": "Proficient — near-native vocabulary, highly specialised or literary terms", +} + + +@dataclass +class VocabRequest: + """Represents a single vocabulary generation request""" + amount: int # Number of word pairs to generate + lang_first_id: int # Polly language ID for the first language + lang_second_id: int # Polly language ID for the second language + lang_first_name: str # Human-readable name of the first language (sent to LLM) + lang_second_name: str # Human-readable name of the second language (sent to LLM) + category: str # Topic / category of the vocabulary list + instructions: str # Any additional instructions for the LLM + level: str = "A2" # CEFR proficiency level (A1, A2, B1, B2, C1, C2) diff --git a/output/2026_02_19_adjectives_beginners_en_es_A1.json b/output/2026_02_19_adjectives_beginners_en_es_A1.json new file mode 100644 index 0000000..9ebbfb1 --- /dev/null +++ b/output/2026_02_19_adjectives_beginners_en_es_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:46:44.047Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Adjectives - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Adjectives - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "big", + "wordSecond": "grande", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "small", + "wordSecond": "pequeño", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tall", + "wordSecond": "alto", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "short", + "wordSecond": "bajo", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "good", + "wordSecond": "bueno", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bad", + "wordSecond": "malo", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "new", + "wordSecond": "nuevo", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "old", + "wordSecond": "viejo", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "clean", + "wordSecond": "limpio", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dirty", + "wordSecond": "sucio", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "beautiful", + "wordSecond": "hermoso", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ugly", + "wordSecond": "feo", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "thin", + "wordSecond": "delgado", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fat", + "wordSecond": "gordo", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "kind", + "wordSecond": "amable", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "funny", + "wordSecond": "divertido", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "serious", + "wordSecond": "serio", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "friendly", + "wordSecond": "amigable", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shy", + "wordSecond": "tímido", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "happy", + "wordSecond": "feliz", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sad", + "wordSecond": "triste", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fast", + "wordSecond": "rápido", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "slow", + "wordSecond": "lento", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hot", + "wordSecond": "caliente", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cold", + "wordSecond": "frío", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "young", + "wordSecond": "joven", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "easy", + "wordSecond": "fácil", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "difficult", + "wordSecond": "difícil", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "important", + "wordSecond": "importante", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "interesting", + "wordSecond": "interesante", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "long", + "wordSecond": "largo", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "heavy", + "wordSecond": "pesado", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "light", + "wordSecond": "ligero", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "open", + "wordSecond": "abierto", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "closed", + "wordSecond": "cerrado", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "full", + "wordSecond": "lleno", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "empty", + "wordSecond": "vacío", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "strong", + "wordSecond": "fuerte", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "weak", + "wordSecond": "débil", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rich", + "wordSecond": "rico", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "poor", + "wordSecond": "pobre", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "soft", + "wordSecond": "suave", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hard", + "wordSecond": "duro", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sweet", + "wordSecond": "dulce", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bitter", + "wordSecond": "amargo", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "quiet", + "wordSecond": "tranquilo", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "noisy", + "wordSecond": "ruidoso", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dark", + "wordSecond": "oscuro", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bright", + "wordSecond": "brillante", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wet", + "wordSecond": "mojado", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dry", + "wordSecond": "seco", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "correct", + "wordSecond": "correcto", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wrong", + "wordSecond": "incorrecto", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cheap", + "wordSecond": "barato", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "expensive", + "wordSecond": "caro", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "healthy", + "wordSecond": "sano", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sick", + "wordSecond": "enfermo", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hungry", + "wordSecond": "hambriento", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "thirsty", + "wordSecond": "sediento", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tired", + "wordSecond": "cansado", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ready", + "wordSecond": "listo", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "free", + "wordSecond": "libre", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "busy", + "wordSecond": "ocupado", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "safe", + "wordSecond": "seguro", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dangerous", + "wordSecond": "peligroso", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "near", + "wordSecond": "cerca", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "far", + "wordSecond": "lejos", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "left", + "wordSecond": "izquierdo", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "right", + "wordSecond": "derecho", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "same", + "wordSecond": "mismo", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "different", + "wordSecond": "diferente", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "first", + "wordSecond": "primero", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "last", + "wordSecond": "último", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "next", + "wordSecond": "siguiente", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "previous", + "wordSecond": "anterior", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "true", + "wordSecond": "verdadero", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "false", + "wordSecond": "falso", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "possible", + "wordSecond": "posible", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "impossible", + "wordSecond": "imposible", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "normal", + "wordSecond": "normal", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "strange", + "wordSecond": "extraño", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "public", + "wordSecond": "público", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "private", + "wordSecond": "privado", + "createdAt": "2026-02-19T15:46:44.047Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_adjectives_beginners_en_pt_A1.json b/output/2026_02_19_adjectives_beginners_en_pt_A1.json new file mode 100644 index 0000000..5fc55f2 --- /dev/null +++ b/output/2026_02_19_adjectives_beginners_en_pt_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:46:58.386Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Adjectives - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Adjectives - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "big", + "wordSecond": "grande", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "small", + "wordSecond": "pequeno", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tall", + "wordSecond": "alto", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "short", + "wordSecond": "baixo", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "good", + "wordSecond": "bom", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bad", + "wordSecond": "ruim", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "new", + "wordSecond": "novo", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "old", + "wordSecond": "velho", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "clean", + "wordSecond": "limpo", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dirty", + "wordSecond": "sujo", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "beautiful", + "wordSecond": "bonito", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ugly", + "wordSecond": "feio", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "thin", + "wordSecond": "magro", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fat", + "wordSecond": "gordo", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "kind", + "wordSecond": "gentil", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "funny", + "wordSecond": "engraçado", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "serious", + "wordSecond": "sério", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "friendly", + "wordSecond": "amigável", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shy", + "wordSecond": "tímido", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "happy", + "wordSecond": "feliz", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sad", + "wordSecond": "triste", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fast", + "wordSecond": "rápido", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "slow", + "wordSecond": "lento", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hot", + "wordSecond": "quente", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cold", + "wordSecond": "frio", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "young", + "wordSecond": "jovem", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "easy", + "wordSecond": "fácil", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "difficult", + "wordSecond": "difícil", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rich", + "wordSecond": "rico", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "poor", + "wordSecond": "pobre", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "strong", + "wordSecond": "forte", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "weak", + "wordSecond": "fraco", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "heavy", + "wordSecond": "pesado", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "light", + "wordSecond": "leve", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "long", + "wordSecond": "longo", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "soft", + "wordSecond": "macio", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hard", + "wordSecond": "duro", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wet", + "wordSecond": "molhado", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dry", + "wordSecond": "seco", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "full", + "wordSecond": "cheio", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "empty", + "wordSecond": "vazio", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "right", + "wordSecond": "certo", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wrong", + "wordSecond": "errado", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "open", + "wordSecond": "aberto", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "closed", + "wordSecond": "fechado", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "expensive", + "wordSecond": "caro", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cheap", + "wordSecond": "barato", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dark", + "wordSecond": "escuro", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bright", + "wordSecond": "claro", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sweet", + "wordSecond": "doce", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "salty", + "wordSecond": "salgado", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bitter", + "wordSecond": "amargo", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sour", + "wordSecond": "azedo", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "loud", + "wordSecond": "alto", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "quiet", + "wordSecond": "silencioso", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "brave", + "wordSecond": "corajoso", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "scared", + "wordSecond": "assustado", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tired", + "wordSecond": "cansado", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hungry", + "wordSecond": "faminto", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "thirsty", + "wordSecond": "sedento", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "healthy", + "wordSecond": "saudável", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sick", + "wordSecond": "doente", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "busy", + "wordSecond": "ocupado", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "free", + "wordSecond": "livre", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "important", + "wordSecond": "importante", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "interesting", + "wordSecond": "interessante", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "boring", + "wordSecond": "chato", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dangerous", + "wordSecond": "perigoso", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "safe", + "wordSecond": "seguro", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "narrow", + "wordSecond": "estreito", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wide", + "wordSecond": "largo", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "deep", + "wordSecond": "profundo", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shallow", + "wordSecond": "raso", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sharp", + "wordSecond": "afiado", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dull", + "wordSecond": "cego", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rough", + "wordSecond": "áspero", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "smooth", + "wordSecond": "liso", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fresh", + "wordSecond": "fresco", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stale", + "wordSecond": "velho", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "calm", + "wordSecond": "calmo", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "nervous", + "wordSecond": "nervoso", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "polite", + "wordSecond": "educado", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rude", + "wordSecond": "grosseiro", + "createdAt": "2026-02-19T15:46:58.386Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_adjectives_beginners_es_pt_A1.json b/output/2026_02_19_adjectives_beginners_es_pt_A1.json new file mode 100644 index 0000000..91ce658 --- /dev/null +++ b/output/2026_02_19_adjectives_beginners_es_pt_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:47:13.647Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Adjectives - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Adjectives - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "grande", + "wordSecond": "grande", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pequeño", + "wordSecond": "pequeno", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alto", + "wordSecond": "alto", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bajo", + "wordSecond": "baixo", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bueno", + "wordSecond": "bom", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "malo", + "wordSecond": "mau", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nuevo", + "wordSecond": "novo", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "viejo", + "wordSecond": "velho", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "limpio", + "wordSecond": "limpo", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sucio", + "wordSecond": "sujo", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bonito", + "wordSecond": "bonito", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "feo", + "wordSecond": "feio", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "delgado", + "wordSecond": "magro", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gordo", + "wordSecond": "gordo", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "amable", + "wordSecond": "gentil", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "divertido", + "wordSecond": "divertido", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "serio", + "wordSecond": "sério", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "amigable", + "wordSecond": "amigável", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tímido", + "wordSecond": "tímido", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fácil", + "wordSecond": "fácil", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "difícil", + "wordSecond": "difícil", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rápido", + "wordSecond": "rápido", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lento", + "wordSecond": "lento", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "caliente", + "wordSecond": "quente", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "frío", + "wordSecond": "frio", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "feliz", + "wordSecond": "feliz", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "triste", + "wordSecond": "triste", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "joven", + "wordSecond": "jovem", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "viejo", + "wordSecond": "velho", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rico", + "wordSecond": "rico", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pobre", + "wordSecond": "pobre", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fuerte", + "wordSecond": "forte", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "débil", + "wordSecond": "fraco", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pesado", + "wordSecond": "pesado", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ligero", + "wordSecond": "leve", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "caro", + "wordSecond": "caro", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "barato", + "wordSecond": "barato", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "largo", + "wordSecond": "longo", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "corto", + "wordSecond": "curto", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ancho", + "wordSecond": "largo", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estrecho", + "wordSecond": "estreito", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lleno", + "wordSecond": "cheio", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vacío", + "wordSecond": "vazio", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "correcto", + "wordSecond": "certo", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "incorrecto", + "wordSecond": "errado", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "abierto", + "wordSecond": "aberto", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cerrado", + "wordSecond": "fechado", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "claro", + "wordSecond": "claro", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "oscuro", + "wordSecond": "escuro", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "duro", + "wordSecond": "duro", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "blando", + "wordSecond": "mole", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "seco", + "wordSecond": "seco", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mojado", + "wordSecond": "molhado", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dulce", + "wordSecond": "doce", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "salado", + "wordSecond": "salgado", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "amargo", + "wordSecond": "amargo", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "picante", + "wordSecond": "picante", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sano", + "wordSecond": "saudável", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "enfermo", + "wordSecond": "doente", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cerca", + "wordSecond": "perto", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lejos", + "wordSecond": "longe", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mucho", + "wordSecond": "muito", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "poco", + "wordSecond": "pouco", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "todos", + "wordSecond": "todos", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ninguno", + "wordSecond": "nenhum", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alguno", + "wordSecond": "algum", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "otro", + "wordSecond": "outro", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mismo", + "wordSecond": "mesmo", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "diferente", + "wordSecond": "diferente", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "igual", + "wordSecond": "igual", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "importante", + "wordSecond": "importante", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "interesante", + "wordSecond": "interessante", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aburrido", + "wordSecond": "chato", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ocupado", + "wordSecond": "ocupado", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "libre", + "wordSecond": "livre", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "listo", + "wordSecond": "pronto", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tranquilo", + "wordSecond": "tranquilo", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nervioso", + "wordSecond": "nervoso", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cansado", + "wordSecond": "cansado", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "enojado", + "wordSecond": "bravo", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sorprendido", + "wordSecond": "surpreso", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "asustado", + "wordSecond": "assustado", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "contento", + "wordSecond": "contente", + "createdAt": "2026-02-19T15:47:13.647Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_de_fr_A1.json b/output/2026_02_19_animals_wildlife_de_fr_A1.json new file mode 100644 index 0000000..0525b1a --- /dev/null +++ b/output/2026_02_19_animals_wildlife_de_fr_A1.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:25:22.100Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hund", + "wordSecond": "chien", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Katze", + "wordSecond": "chat", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Vogel", + "wordSecond": "oiseau", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kuh", + "wordSecond": "vache", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pferd", + "wordSecond": "cheval", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schwein", + "wordSecond": "cochon", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Huhn", + "wordSecond": "poule", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Löwe", + "wordSecond": "lion", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tiger", + "wordSecond": "tigre", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Elefant", + "wordSecond": "éléphant", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bär", + "wordSecond": "ours", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fisch", + "wordSecond": "poisson", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wal", + "wordSecond": "baleine", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hai", + "wordSecond": "requin", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schmetterling", + "wordSecond": "papillon", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Biene", + "wordSecond": "abeille", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ameise", + "wordSecond": "fourmi", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Maus", + "wordSecond": "souris", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kaninchen", + "wordSecond": "lapin", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hamster", + "wordSecond": "hamster", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Meerschweinchen", + "wordSecond": "cochon d'Inde", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schildkröte", + "wordSecond": "tortue", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Papagei", + "wordSecond": "perroquet", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ziege", + "wordSecond": "chèvre", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schaf", + "wordSecond": "mouton", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ente", + "wordSecond": "canard", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gans", + "wordSecond": "oie", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Truthahn", + "wordSecond": "dinde", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Esel", + "wordSecond": "âne", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hirsch", + "wordSecond": "cerf", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fuchs", + "wordSecond": "renard", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wolf", + "wordSecond": "loup", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Affe", + "wordSecond": "singe", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Giraffe", + "wordSecond": "girafe", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Zebra", + "wordSecond": "zèbre", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Känguru", + "wordSecond": "kangourou", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pinguin", + "wordSecond": "manchot", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Robbe", + "wordSecond": "phoque", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Delfin", + "wordSecond": "dauphin", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Oktopus", + "wordSecond": "pieuvre", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Krabbe", + "wordSecond": "crabe", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Qualle", + "wordSecond": "méduse", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Seestern", + "wordSecond": "étoile de mer", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schlange", + "wordSecond": "serpent", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Krokodil", + "wordSecond": "crocodile", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Eidechse", + "wordSecond": "lézard", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Frosch", + "wordSecond": "grenouille", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Spinne", + "wordSecond": "araignée", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fliege", + "wordSecond": "mouche", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Mücke", + "wordSecond": "moustique", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Libelle", + "wordSecond": "libellule", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Marienkäfer", + "wordSecond": "coccinelle", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Raupe", + "wordSecond": "chenille", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wurm", + "wordSecond": "ver", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schnecke", + "wordSecond": "escargot", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pferd", + "wordSecond": "cheval", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kuh", + "wordSecond": "vache", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schwein", + "wordSecond": "cochon", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Huhn", + "wordSecond": "poule", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ente", + "wordSecond": "canard", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gans", + "wordSecond": "oie", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Truthahn", + "wordSecond": "dinde", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ziege", + "wordSecond": "chèvre", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schaf", + "wordSecond": "mouton", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Esel", + "wordSecond": "âne", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hase", + "wordSecond": "lièvre", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Igel", + "wordSecond": "hérisson", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fledermaus", + "wordSecond": "chauve-souris", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Eule", + "wordSecond": "hibou", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Adler", + "wordSecond": "aigle", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Falke", + "wordSecond": "faucon", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Taube", + "wordSecond": "pigeon", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Spatz", + "wordSecond": "moineau", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schwan", + "wordSecond": "cygne", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pelikan", + "wordSecond": "pélican", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Flamingo", + "wordSecond": "flamant", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Strauß", + "wordSecond": "autruche", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Koala", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Nilpferd", + "wordSecond": "hippopotame", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Nashorn", + "wordSecond": "rhinocéros", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gepard", + "wordSecond": "guépard", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Leopard", + "wordSecond": "léopard", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Puma", + "wordSecond": "puma", + "createdAt": "2026-02-19T13:25:22.100Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_de_it_A1.json b/output/2026_02_19_animals_wildlife_de_it_A1.json new file mode 100644 index 0000000..d462614 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_de_it_A1.json @@ -0,0 +1,1085 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:25:37.953Z", + "metadata": { + "itemCount": 82, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hund", + "wordSecond": "cane", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Katze", + "wordSecond": "gatto", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Vogel", + "wordSecond": "uccello", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kuh", + "wordSecond": "mucca", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pferd", + "wordSecond": "cavallo", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schwein", + "wordSecond": "maiale", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Huhn", + "wordSecond": "pollo", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Löwe", + "wordSecond": "leone", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tiger", + "wordSecond": "tigre", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Elefant", + "wordSecond": "elefante", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bär", + "wordSecond": "orso", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fisch", + "wordSecond": "pesce", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wal", + "wordSecond": "balena", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hai", + "wordSecond": "squalo", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schmetterling", + "wordSecond": "farfalla", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Biene", + "wordSecond": "ape", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ameise", + "wordSecond": "formica", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Maus", + "wordSecond": "topo", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ratte", + "wordSecond": "ratto", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kaninchen", + "wordSecond": "coniglio", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hamster", + "wordSecond": "criceto", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Meerschweinchen", + "wordSecond": "cavia", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schildkröte", + "wordSecond": "tartaruga", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schlange", + "wordSecond": "serpente", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Eidechse", + "wordSecond": "lucertola", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Frosch", + "wordSecond": "rana", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ziege", + "wordSecond": "capra", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schaf", + "wordSecond": "pecora", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ente", + "wordSecond": "anatra", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gans", + "wordSecond": "oca", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Truthahn", + "wordSecond": "tacchino", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hirsch", + "wordSecond": "cervo", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fuchs", + "wordSecond": "volpe", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wolf", + "wordSecond": "lupo", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Affe", + "wordSecond": "scimmia", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gorilla", + "wordSecond": "gorilla", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Giraffe", + "wordSecond": "giraffa", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zebra", + "wordSecond": "zebra", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Känguru", + "wordSecond": "canguro", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Krokodil", + "wordSecond": "coccodrillo", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pinguin", + "wordSecond": "pinguino", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Robbe", + "wordSecond": "foca", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Delfin", + "wordSecond": "delfino", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Oktopus", + "wordSecond": "polpo", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Qualle", + "wordSecond": "medusa", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Krabbe", + "wordSecond": "granchio", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Muschel", + "wordSecond": "conchiglia", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Seestern", + "wordSecond": "stella marina", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tintenfisch", + "wordSecond": "calamaro", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Papagei", + "wordSecond": "pappagallo", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Eule", + "wordSecond": "gufo", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Adler", + "wordSecond": "aquila", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Falke", + "wordSecond": "falco", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Spatz", + "wordSecond": "passero", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Taube", + "wordSecond": "piccione", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schwan", + "wordSecond": "cigno", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fliege", + "wordSecond": "mosca", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mücke", + "wordSecond": "zanzara", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Libelle", + "wordSecond": "libellula", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Grille", + "wordSecond": "grillo", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Spinne", + "wordSecond": "ragno", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wurm", + "wordSecond": "verme", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Raupe", + "wordSecond": "bruco", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Marienkäfer", + "wordSecond": "coccinella", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Motte", + "wordSecond": "falena", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Heuschrecke", + "wordSecond": "cavalletta", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schnecke", + "wordSecond": "lumaca", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Igel", + "wordSecond": "riccio", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fledermaus", + "wordSecond": "pipistrello", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Maulwurf", + "wordSecond": "talpa", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Dachs", + "wordSecond": "tasso", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Eichhörnchen", + "wordSecond": "scoiattolo", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Biber", + "wordSecond": "castoro", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Otter", + "wordSecond": "lontra", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Seehund", + "wordSecond": "foca", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Walross", + "wordSecond": "tricheco", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nashorn", + "wordSecond": "rinoceronte", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nilpferd", + "wordSecond": "ippopotamo", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Leopard", + "wordSecond": "leopardo", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gepard", + "wordSecond": "ghepardo", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Koala", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:25:37.953Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_de_ja_A1.json b/output/2026_02_19_animals_wildlife_de_ja_A1.json new file mode 100644 index 0000000..02bb0a9 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_de_ja_A1.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:26:05.208Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hund", + "wordSecond": "犬 (いぬ, inu)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Katze", + "wordSecond": "猫 (ねこ, neko)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Vogel", + "wordSecond": "鳥 (とり, tori)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fisch", + "wordSecond": "魚 (さかな, sakana)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Maus", + "wordSecond": "鼠 (ねずみ, nezumi)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kaninchen", + "wordSecond": "兎 (うさぎ, usagi)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hamster", + "wordSecond": "ハムスター (hamusutā)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Pferd", + "wordSecond": "馬 (うま, uma)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kuh", + "wordSecond": "牛 (うし, ushi)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schwein", + "wordSecond": "豚 (ぶた, buta)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Huhn", + "wordSecond": "鶏 (にわとり, niwatori)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ente", + "wordSecond": "鴨 (かも, kamo)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schaf", + "wordSecond": "羊 (ひつじ, hitsuji)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ziege", + "wordSecond": "山羊 (やぎ, yagi)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Löwe", + "wordSecond": "ライオン (raion)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tiger", + "wordSecond": "虎 (とら, tora)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Elefant", + "wordSecond": "象 (ぞう, zō)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Bär", + "wordSecond": "熊 (くま, kuma)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Affe", + "wordSecond": "猿 (さる, saru)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Giraffe", + "wordSecond": "キリン (kirin)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Zebra", + "wordSecond": "シマウマ (shimauma)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wolf", + "wordSecond": "狼 (おおかみ, ōkami)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fuchs", + "wordSecond": "狐 (きつね, kitsune)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hase", + "wordSecond": "野兎 (のうさぎ, nousagi)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hirsch", + "wordSecond": "鹿 (しか, shika)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wal", + "wordSecond": "鯨 (くじら, kujira)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hai", + "wordSecond": "鮫 (さめ, same)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Delfin", + "wordSecond": "海豚 (いるか, iruka)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schildkröte", + "wordSecond": "亀 (かめ, kame)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Frosch", + "wordSecond": "蛙 (かえる, kaeru)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schlange", + "wordSecond": "蛇 (へび, hebi)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Krokodil", + "wordSecond": "鰐 (わに, wani)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Pinguin", + "wordSecond": "ペンギン (pengin)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Eule", + "wordSecond": "梟 (ふくろう, fukurō)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Adler", + "wordSecond": "鷲 (わし, washi)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Falke", + "wordSecond": "鷹 (たか, taka)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Spatz", + "wordSecond": "雀 (すずめ, suzume)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schmetterling", + "wordSecond": "蝶 (ちょう, chō)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Biene", + "wordSecond": "蜂 (はち, hachi)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ameise", + "wordSecond": "蟻 (あり, ari)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Käfer", + "wordSecond": "甲虫 (こうちゅう, kōchū)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Libelle", + "wordSecond": "蜻蛉 (とんぼ, tonbo)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Mücke", + "wordSecond": "蚊 (か, ka)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fliege", + "wordSecond": "蝿 (はえ, hae)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Spinne", + "wordSecond": "蜘蛛 (くも, kumo)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wurm", + "wordSecond": "虫 (むし, mushi)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schnecke", + "wordSecond": "蝸牛 (かたつむり, katatsumuri)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Qualle", + "wordSecond": "海月 (くらげ, kurage)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tintenfisch", + "wordSecond": "蛸 (たこ, tako)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Krabbe", + "wordSecond": "蟹 (かに, kani)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Robbe", + "wordSecond": "海豹 (あざらし, azarashi)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Eichhörnchen", + "wordSecond": "栗鼠 (りす, risu)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Igel", + "wordSecond": "針鼠 (はりねずみ, harinezumi)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Maulwurf", + "wordSecond": "土竜 (もぐら, mogura)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fledermaus", + "wordSecond": "蝙蝠 (こうもり, kōmori)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Panda", + "wordSecond": "パンダ (panda)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Koala", + "wordSecond": "コアラ (koara)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Känguru", + "wordSecond": "カンガルー (kangarū)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Nilpferd", + "wordSecond": "河馬 (かば, kaba)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Nashorn", + "wordSecond": "犀 (さい, sai)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Leopard", + "wordSecond": "豹 (ひょう, hyō)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Gepard", + "wordSecond": "チーター (chītā)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Puma", + "wordSecond": "ピューマ (pyūma)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Waschbär", + "wordSecond": "洗熊 (あらいぐま, araiguma)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Stinktier", + "wordSecond": "スカンク (sukanku)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Dachs", + "wordSecond": "穴熊 (あなぐま, anaguma)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Elch", + "wordSecond": "ヘラジカ (herajika)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Büffel", + "wordSecond": "野牛 (やぎゅう, yagyū)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Yak", + "wordSecond": "ヤク (yaku)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kamel", + "wordSecond": "駱駝 (らくだ, rakuda)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Lama", + "wordSecond": "ラマ (rama)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Strauß", + "wordSecond": "駝鳥 (だちょう, dachō)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Pfau", + "wordSecond": "孔雀 (くじゃく, kujaku)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Papagei", + "wordSecond": "鸚鵡 (おうむ, ōmu)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kolibri", + "wordSecond": "蜂鳥 (はちどり, hachidori)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schwan", + "wordSecond": "白鳥 (はくちょう, hakuchō)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Pelikan", + "wordSecond": "ペリカン (perikan)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Flamingo", + "wordSecond": "フラミンゴ (furamingo)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tausendfüßler", + "wordSecond": "百足 (むかで, mukade)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Grille", + "wordSecond": "蟋蟀 (こおろぎ, kōrogi)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Heuschrecke", + "wordSecond": "蝗 (いなご, inago)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Motte", + "wordSecond": "蛾 (が, ga)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Raupe", + "wordSecond": "芋虫 (いもむし, imomushi)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wespe", + "wordSecond": "雀蜂 (すずめばち, suzumebachi)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hornisse", + "wordSecond": "熊蜂 (くまばち, kumabachi)", + "createdAt": "2026-02-19T13:26:05.208Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_de_ko_A1.json b/output/2026_02_19_animals_wildlife_de_ko_A1.json new file mode 100644 index 0000000..e10991d --- /dev/null +++ b/output/2026_02_19_animals_wildlife_de_ko_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:26:51.922Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Hund", + "wordSecond": "개 (gae)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Katze", + "wordSecond": "고양이 (goyangi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Vogel", + "wordSecond": "새 (sae)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fisch", + "wordSecond": "물고기 (mulgogi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kuh", + "wordSecond": "소 (so)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Pferd", + "wordSecond": "말 (mal)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schwein", + "wordSecond": "돼지 (dwaeji)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Huhn", + "wordSecond": "닭 (dak)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Löwe", + "wordSecond": "사자 (saja)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Tiger", + "wordSecond": "호랑이 (horangi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Elefant", + "wordSecond": "코끼리 (kokkiri)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bär", + "wordSecond": "곰 (gom)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wal", + "wordSecond": "고래 (gorae)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Hai", + "wordSecond": "상어 (sangeo)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schmetterling", + "wordSecond": "나비 (nabi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Biene", + "wordSecond": "벌 (beol)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ameise", + "wordSecond": "개미 (gaemi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Hase", + "wordSecond": "토끼 (tokki)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Maus", + "wordSecond": "쥐 (jwi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schlange", + "wordSecond": "뱀 (baem)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Frosch", + "wordSecond": "개구리 (gaeguri)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ente", + "wordSecond": "오리 (ori)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ziege", + "wordSecond": "염소 (yeomso)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schaf", + "wordSecond": "양 (yang)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Esel", + "wordSecond": "당나귀 (dangnagwi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Hirsch", + "wordSecond": "사슴 (saseum)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fuchs", + "wordSecond": "여우 (yeou)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wolf", + "wordSecond": "늑대 (neukdae)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Affe", + "wordSecond": "원숭이 (wonsungi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Giraffe", + "wordSecond": "기린 (girin)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Krokodil", + "wordSecond": "악어 (ageo)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Panda", + "wordSecond": "판다 (panda)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Känguru", + "wordSecond": "캥거루 (kaenggeoru)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Pinguin", + "wordSecond": "펭귄 (penggwin)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Robbe", + "wordSecond": "물개 (mulgae)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Delfin", + "wordSecond": "돌고래 (dolgorae)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Oktopus", + "wordSecond": "문어 (muneo)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Qualle", + "wordSecond": "해파리 (haepari)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Krabbe", + "wordSecond": "게 (ge)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schildkröte", + "wordSecond": "거북이 (geobugi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Eichhörnchen", + "wordSecond": "다람쥐 (daramjwi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Igel", + "wordSecond": "고슴도치 (goseumdochi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Maulwurf", + "wordSecond": "두더지 (dudeoji)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fledermaus", + "wordSecond": "박쥐 (bakjwi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Eule", + "wordSecond": "부엉이 (bueongi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Adler", + "wordSecond": "독수리 (doksuri)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Spatz", + "wordSecond": "참새 (chamsae)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Taube", + "wordSecond": "비둘기 (bidulgi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Krähe", + "wordSecond": "까마귀 (kkamagwi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schwan", + "wordSecond": "백조 (baekjo)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fliege", + "wordSecond": "파리 (pari)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Mücke", + "wordSecond": "모기 (mogi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Libelle", + "wordSecond": "잠자리 (jamjari)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Grille", + "wordSecond": "귀뚜라미 (gwitturami)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Spinne", + "wordSecond": "거미 (geomi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wurm", + "wordSecond": "벌레 (beolle)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schnecke", + "wordSecond": "달팽이 (dalpaengi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Huhn (weiblich)", + "wordSecond": "암탉 (amtak)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Hahn", + "wordSecond": "수탉 (sutak)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Küken", + "wordSecond": "병아리 (byeongari)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kalb", + "wordSecond": "송아지 (songaji)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fohlen", + "wordSecond": "망아지 (mangaji)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ferkel", + "wordSecond": "새끼 돼지 (saekki dwaeji)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Lamm", + "wordSecond": "새끼 양 (saekki yang)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zicklein", + "wordSecond": "새끼 염소 (saekki yeomso)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kätzchen", + "wordSecond": "새끼 고양이 (saekki goyangi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Welpe", + "wordSecond": "강아지 (gangaji)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kaninchen", + "wordSecond": "토끼 (tokki)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Meerschweinchen", + "wordSecond": "기니피그 (ginipigeu)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Hamster", + "wordSecond": "햄스터 (haemseuteo)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Papagei", + "wordSecond": "앵무새 (aengmusae)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kanarienvogel", + "wordSecond": "카나리아 (kanaria)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wellensittich", + "wordSecond": "잉꼬 (ingkko)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Goldfisch", + "wordSecond": "금붕어 (geumbungeo)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schildkröte (Haustier)", + "wordSecond": "거북이 (geobugi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Eidechse", + "wordSecond": "도마뱀 (domabaem)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Chamäleon", + "wordSecond": "카멜레온 (kamelleon)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schlange (Haustier)", + "wordSecond": "뱀 (baem)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Pferd (Reitpferd)", + "wordSecond": "말 (mal)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kuh (Milchkuh)", + "wordSecond": "소 (so)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Biene (Honigbiene)", + "wordSecond": "벌 (beol)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ameise (Rote Ameise)", + "wordSecond": "개미 (gaemi)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Marienkäfer", + "wordSecond": "무당벌레 (mudangbeolle)", + "createdAt": "2026-02-19T13:26:51.922Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_de_pl_A1.json b/output/2026_02_19_animals_wildlife_de_pl_A1.json new file mode 100644 index 0000000..208db9b --- /dev/null +++ b/output/2026_02_19_animals_wildlife_de_pl_A1.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:27:08.490Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hund", + "wordSecond": "pies", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Katze", + "wordSecond": "kot", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Vogel", + "wordSecond": "ptak", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kuh", + "wordSecond": "krowa", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Pferd", + "wordSecond": "koń", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schwein", + "wordSecond": "świnia", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Huhn", + "wordSecond": "kura", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hahn", + "wordSecond": "kogut", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ente", + "wordSecond": "kaczka", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Gans", + "wordSecond": "gęś", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schaf", + "wordSecond": "owca", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ziege", + "wordSecond": "koza", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Esel", + "wordSecond": "osioł", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Maus", + "wordSecond": "mysz", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ratte", + "wordSecond": "szczur", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kaninchen", + "wordSecond": "królik", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Meerschweinchen", + "wordSecond": "świnka morska", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hamster", + "wordSecond": "chomik", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fisch", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wal", + "wordSecond": "wieloryb", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hai", + "wordSecond": "rekin", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Delfin", + "wordSecond": "delfin", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Robbe", + "wordSecond": "foka", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Oktopus", + "wordSecond": "ośmiornica", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Qualle", + "wordSecond": "meduza", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Krebs", + "wordSecond": "krab", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schnecke", + "wordSecond": "ślimak", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Frosch", + "wordSecond": "żaba", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Krokodil", + "wordSecond": "krokodyl", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schlange", + "wordSecond": "wąż", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Eidechse", + "wordSecond": "jaszczurka", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schildkröte", + "wordSecond": "żółw", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Löwe", + "wordSecond": "lew", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Tiger", + "wordSecond": "tygrys", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Elefant", + "wordSecond": "słoń", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bär", + "wordSecond": "niedźwiedź", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wolf", + "wordSecond": "wilk", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fuchs", + "wordSecond": "lis", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hase", + "wordSecond": "zając", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Igel", + "wordSecond": "jeż", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Affe", + "wordSecond": "małpa", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Gorilla", + "wordSecond": "goryl", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Giraffe", + "wordSecond": "żyrafa", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Zebra", + "wordSecond": "zebra", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Nashorn", + "wordSecond": "nosorożec", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Nilpferd", + "wordSecond": "hipopotam", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Känguru", + "wordSecond": "kangur", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Koala", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Pinguin", + "wordSecond": "pingwin", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Adler", + "wordSecond": "orzeł", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Falke", + "wordSecond": "sokół", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Eule", + "wordSecond": "sowa", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Spatz", + "wordSecond": "wróbel", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Taube", + "wordSecond": "gołąb", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schwan", + "wordSecond": "łabędź", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Storch", + "wordSecond": "bocian", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Papagei", + "wordSecond": "papuga", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Käfer", + "wordSecond": "chrząszcz", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schmetterling", + "wordSecond": "motyl", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Biene", + "wordSecond": "pszczoła", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wespe", + "wordSecond": "osa", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ameise", + "wordSecond": "mrówka", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fliege", + "wordSecond": "mucha", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Mücke", + "wordSecond": "komar", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Spinne", + "wordSecond": "pająk", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Tausendfüßler", + "wordSecond": "stonoga", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Raupe", + "wordSecond": "gąsienica", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Libelle", + "wordSecond": "ważka", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Grille", + "wordSecond": "świerszcz", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Heuschrecke", + "wordSecond": "konik polny", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Motte", + "wordSecond": "ćma", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wurm", + "wordSecond": "robak", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Regenwurm", + "wordSecond": "dżdżownica", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schnecke", + "wordSecond": "ślimak", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Muschel", + "wordSecond": "małż", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Seestern", + "wordSecond": "rozgwiazda", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Seeigel", + "wordSecond": "jeżowiec", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kamel", + "wordSecond": "wielbłąd", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Lama", + "wordSecond": "lama", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Elch", + "wordSecond": "łoś", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Reh", + "wordSecond": "sarna", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hirsch", + "wordSecond": "jeleń", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Dachs", + "wordSecond": "borsuk", + "createdAt": "2026-02-19T13:27:08.490Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_de_zh_A1.json b/output/2026_02_19_animals_wildlife_de_zh_A1.json new file mode 100644 index 0000000..0c1f228 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_de_zh_A1.json @@ -0,0 +1,1072 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:26:27.435Z", + "metadata": { + "itemCount": 81, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hund", + "wordSecond": "狗 (gǒu)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Katze", + "wordSecond": "猫 (māo)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Vogel", + "wordSecond": "鸟 (niǎo)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Fisch", + "wordSecond": "鱼 (yú)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Maus", + "wordSecond": "老鼠 (lǎoshǔ)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kaninchen", + "wordSecond": "兔子 (tùzi)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hamster", + "wordSecond": "仓鼠 (cāngshǔ)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Pferd", + "wordSecond": "马 (mǎ)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kuh", + "wordSecond": "牛 (niú)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schwein", + "wordSecond": "猪 (zhū)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Huhn", + "wordSecond": "鸡 (jī)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ente", + "wordSecond": "鸭 (yā)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gans", + "wordSecond": "鹅 (é)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schaf", + "wordSecond": "羊 (yáng)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ziege", + "wordSecond": "山羊 (shānyáng)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Esel", + "wordSecond": "驴 (lǘ)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hahn", + "wordSecond": "公鸡 (gōngjī)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Küken", + "wordSecond": "小鸡 (xiǎojī)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Löwe", + "wordSecond": "狮子 (shīzi)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tiger", + "wordSecond": "老虎 (lǎohǔ)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Elefant", + "wordSecond": "大象 (dàxiàng)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bär", + "wordSecond": "熊 (xióng)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Affe", + "wordSecond": "猴子 (hóuzi)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Giraffe", + "wordSecond": "长颈鹿 (chángjǐnglù)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Zebra", + "wordSecond": "斑马 (bānmǎ)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Krokodil", + "wordSecond": "鳄鱼 (èyú)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schlange", + "wordSecond": "蛇 (shé)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Frosch", + "wordSecond": "青蛙 (qīngwā)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Fuchs", + "wordSecond": "狐狸 (húli)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wolf", + "wordSecond": "狼 (láng)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hase", + "wordSecond": "野兔 (yětù)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Eichhörnchen", + "wordSecond": "松鼠 (sōngshǔ)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Igel", + "wordSecond": "刺猬 (cìwei)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hirsch", + "wordSecond": "鹿 (lù)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wal", + "wordSecond": "鲸鱼 (jīngyú)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hai", + "wordSecond": "鲨鱼 (shāyú)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Delfin", + "wordSecond": "海豚 (hǎitún)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Robbe", + "wordSecond": "海豹 (hǎibào)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Pinguin", + "wordSecond": "企鹅 (qǐ'é)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Qualle", + "wordSecond": "水母 (shuǐmǔ)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Krabbe", + "wordSecond": "螃蟹 (pángxiè)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tintenfisch", + "wordSecond": "章鱼 (zhāngyú)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schmetterling", + "wordSecond": "蝴蝶 (húdié)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Biene", + "wordSecond": "蜜蜂 (mìfēng)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ameise", + "wordSecond": "蚂蚁 (mǎyǐ)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Spinne", + "wordSecond": "蜘蛛 (zhīzhū)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Fliege", + "wordSecond": "苍蝇 (cāngying)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Mücke", + "wordSecond": "蚊子 (wénzi)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Käfer", + "wordSecond": "甲虫 (jiǎchóng)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wurm", + "wordSecond": "虫子 (chóngzi)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schildkröte", + "wordSecond": "乌龟 (wūguī)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Eule", + "wordSecond": "猫头鹰 (māotóuyīng)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Adler", + "wordSecond": "鹰 (yīng)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Fledermaus", + "wordSecond": "蝙蝠 (biānfú)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Panda", + "wordSecond": "熊猫 (xióngmāo)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Koala", + "wordSecond": "考拉 (kǎolā)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Känguru", + "wordSecond": "袋鼠 (dàishǔ)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Nilpferd", + "wordSecond": "河马 (hémǎ)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Nashorn", + "wordSecond": "犀牛 (xīniú)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Leopard", + "wordSecond": "豹子 (bàozi)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gepard", + "wordSecond": "猎豹 (lièbào)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Puma", + "wordSecond": "美洲狮 (měizhōushī)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Waschbär", + "wordSecond": "浣熊 (huànxióng)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Stinktier", + "wordSecond": "臭鼬 (chòuyòu)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Dachs", + "wordSecond": "獾 (huān)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Maulwurf", + "wordSecond": "鼹鼠 (yǎnshǔ)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Marder", + "wordSecond": "貂 (diāo)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Luchs", + "wordSecond": "猞猁 (shēlì)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Elch", + "wordSecond": "驼鹿 (tuólù)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Büffel", + "wordSecond": "水牛 (shuǐniú)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kamel", + "wordSecond": "骆驼 (luòtuo)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Strauß", + "wordSecond": "鸵鸟 (tuóniǎo)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Papagei", + "wordSecond": "鹦鹉 (yīngwǔ)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Taube", + "wordSecond": "鸽子 (gēzi)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schwan", + "wordSecond": "天鹅 (tiān'é)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Pelikan", + "wordSecond": "鹈鹕 (tíhú)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Flamingo", + "wordSecond": "火烈鸟 (huǒlièniǎo)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Seestern", + "wordSecond": "海星 (hǎixīng)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Seeigel", + "wordSecond": "海胆 (hǎidǎn)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Seepferdchen", + "wordSecond": "海马 (hǎimǎ)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Aal", + "wordSecond": "鳗鱼 (mányú)", + "createdAt": "2026-02-19T13:26:27.435Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_en_de_A1.json b/output/2026_02_19_animals_wildlife_en_de_A1.json new file mode 100644 index 0000000..bea650a --- /dev/null +++ b/output/2026_02_19_animals_wildlife_en_de_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:14:40.436Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "dog", + "wordSecond": "Hund", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cat", + "wordSecond": "Katze", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bird", + "wordSecond": "Vogel", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cow", + "wordSecond": "Kuh", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "horse", + "wordSecond": "Pferd", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pig", + "wordSecond": "Schwein", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "chicken", + "wordSecond": "Huhn", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lion", + "wordSecond": "Löwe", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tiger", + "wordSecond": "Tiger", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "elephant", + "wordSecond": "Elefant", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bear", + "wordSecond": "Bär", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fish", + "wordSecond": "Fisch", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "whale", + "wordSecond": "Wal", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shark", + "wordSecond": "Hai", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "butterfly", + "wordSecond": "Schmetterling", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bee", + "wordSecond": "Biene", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ant", + "wordSecond": "Ameise", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "mouse", + "wordSecond": "Maus", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "rabbit", + "wordSecond": "Kaninchen", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "duck", + "wordSecond": "Ente", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "goose", + "wordSecond": "Gans", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sheep", + "wordSecond": "Schaf", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "goat", + "wordSecond": "Ziege", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "donkey", + "wordSecond": "Esel", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "frog", + "wordSecond": "Frosch", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "snake", + "wordSecond": "Schlange", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "turtle", + "wordSecond": "Schildkröte", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "monkey", + "wordSecond": "Affe", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "giraffe", + "wordSecond": "Giraffe", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "zebra", + "wordSecond": "Zebra", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hippo", + "wordSecond": "Nilpferd", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "crocodile", + "wordSecond": "Krokodil", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "dolphin", + "wordSecond": "Delfin", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "octopus", + "wordSecond": "Tintenfisch", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "seal", + "wordSecond": "Robbe", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "penguin", + "wordSecond": "Pinguin", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "owl", + "wordSecond": "Eule", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "eagle", + "wordSecond": "Adler", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fox", + "wordSecond": "Fuchs", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wolf", + "wordSecond": "Wolf", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "deer", + "wordSecond": "Hirsch", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "squirrel", + "wordSecond": "Eichhörnchen", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bat", + "wordSecond": "Fledermaus", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "spider", + "wordSecond": "Spinne", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fly", + "wordSecond": "Fliege", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "mosquito", + "wordSecond": "Mücke", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ladybug", + "wordSecond": "Marienkäfer", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "worm", + "wordSecond": "Wurm", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "snail", + "wordSecond": "Schnecke", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "crab", + "wordSecond": "Krabbe", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lobster", + "wordSecond": "Hummer", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "jellyfish", + "wordSecond": "Qualle", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "starfish", + "wordSecond": "Seestern", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "camel", + "wordSecond": "Kamel", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "kangaroo", + "wordSecond": "Känguru", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "koala", + "wordSecond": "Koala", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "panda", + "wordSecond": "Panda", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "rhino", + "wordSecond": "Nashorn", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "parrot", + "wordSecond": "Papagei", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hamster", + "wordSecond": "Hamster", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "guinea pig", + "wordSecond": "Meerschweinchen", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "rat", + "wordSecond": "Ratte", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hedgehog", + "wordSecond": "Igel", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "mole", + "wordSecond": "Maulwurf", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "beaver", + "wordSecond": "Biber", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "otter", + "wordSecond": "Otter", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "raccoon", + "wordSecond": "Waschbär", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "skunk", + "wordSecond": "Stinktier", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "moose", + "wordSecond": "Elch", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "buffalo", + "wordSecond": "Büffel", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "llama", + "wordSecond": "Lama", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "alpaca", + "wordSecond": "Alpaka", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "turkey", + "wordSecond": "Truthahn", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "peacock", + "wordSecond": "Pfau", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "flamingo", + "wordSecond": "Flamingo", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "swan", + "wordSecond": "Schwan", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "crow", + "wordSecond": "Krähe", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sparrow", + "wordSecond": "Spatz", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "woodpecker", + "wordSecond": "Specht", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hummingbird", + "wordSecond": "Kolibri", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "grasshopper", + "wordSecond": "Heuschrecke", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "dragonfly", + "wordSecond": "Libelle", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "caterpillar", + "wordSecond": "Raupe", + "createdAt": "2026-02-19T13:14:40.436Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_en_es_A1.json b/output/2026_02_19_animals_wildlife_en_es_A1.json new file mode 100644 index 0000000..43c8b02 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_en_es_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:14:08.107Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dog", + "wordSecond": "perro", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cat", + "wordSecond": "gato", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bird", + "wordSecond": "pájaro", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cow", + "wordSecond": "vaca", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "horse", + "wordSecond": "caballo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pig", + "wordSecond": "cerdo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "chicken", + "wordSecond": "pollo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lion", + "wordSecond": "león", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tiger", + "wordSecond": "tigre", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "elephant", + "wordSecond": "elefante", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bear", + "wordSecond": "oso", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fish", + "wordSecond": "pez", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "whale", + "wordSecond": "ballena", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shark", + "wordSecond": "tiburón", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "butterfly", + "wordSecond": "mariposa", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bee", + "wordSecond": "abeja", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ant", + "wordSecond": "hormiga", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rabbit", + "wordSecond": "conejo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mouse", + "wordSecond": "ratón", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "snake", + "wordSecond": "serpiente", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "frog", + "wordSecond": "rana", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "duck", + "wordSecond": "pato", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "goat", + "wordSecond": "cabra", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sheep", + "wordSecond": "oveja", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "monkey", + "wordSecond": "mono", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "giraffe", + "wordSecond": "jirafa", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "zebra", + "wordSecond": "cebra", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wolf", + "wordSecond": "lobo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fox", + "wordSecond": "zorro", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "deer", + "wordSecond": "ciervo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "turtle", + "wordSecond": "tortuga", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dolphin", + "wordSecond": "delfín", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "octopus", + "wordSecond": "pulpo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "seal", + "wordSecond": "foca", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lobster", + "wordSecond": "langosta", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "crab", + "wordSecond": "cangrejo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "spider", + "wordSecond": "araña", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fly", + "wordSecond": "mosca", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mosquito", + "wordSecond": "mosquito", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ladybug", + "wordSecond": "mariquita", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "grasshopper", + "wordSecond": "saltamontes", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "caterpillar", + "wordSecond": "oruga", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "worm", + "wordSecond": "gusano", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "snail", + "wordSecond": "caracol", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bat", + "wordSecond": "murciélago", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "owl", + "wordSecond": "búho", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "eagle", + "wordSecond": "águila", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "parrot", + "wordSecond": "loro", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "penguin", + "wordSecond": "pingüino", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "kangaroo", + "wordSecond": "canguro", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "camel", + "wordSecond": "camello", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hippo", + "wordSecond": "hipopótamo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rhino", + "wordSecond": "rinoceronte", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "crocodile", + "wordSecond": "cocodrilo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "alligator", + "wordSecond": "caimán", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "leopard", + "wordSecond": "leopardo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cheetah", + "wordSecond": "guepardo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "koala", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "squirrel", + "wordSecond": "ardilla", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "raccoon", + "wordSecond": "mapache", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "skunk", + "wordSecond": "mofeta", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "beaver", + "wordSecond": "castor", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hedgehog", + "wordSecond": "erizo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hamster", + "wordSecond": "hámster", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "guinea pig", + "wordSecond": "cobaya", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "turkey", + "wordSecond": "pavo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "goose", + "wordSecond": "ganso", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "swan", + "wordSecond": "cisne", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "flamingo", + "wordSecond": "flamenco", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "peacock", + "wordSecond": "pavo real", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ostrich", + "wordSecond": "avestruz", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "donkey", + "wordSecond": "burro", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bull", + "wordSecond": "toro", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rooster", + "wordSecond": "gallo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hen", + "wordSecond": "gallina", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lamb", + "wordSecond": "cordero", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pony", + "wordSecond": "poni", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "llama", + "wordSecond": "llama", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "alpaca", + "wordSecond": "alpaca", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "yak", + "wordSecond": "yak", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bison", + "wordSecond": "bisonte", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "buffalo", + "wordSecond": "búfalo", + "createdAt": "2026-02-19T13:14:08.107Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_en_fr_A1.json b/output/2026_02_19_animals_wildlife_en_fr_A1.json new file mode 100644 index 0000000..434e055 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_en_fr_A1.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:14:55.991Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "dog", + "wordSecond": "chien", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cat", + "wordSecond": "chat", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bird", + "wordSecond": "oiseau", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cow", + "wordSecond": "vache", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "horse", + "wordSecond": "cheval", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pig", + "wordSecond": "cochon", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "chicken", + "wordSecond": "poule", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lion", + "wordSecond": "lion", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tiger", + "wordSecond": "tigre", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "elephant", + "wordSecond": "éléphant", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bear", + "wordSecond": "ours", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fish", + "wordSecond": "poisson", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "whale", + "wordSecond": "baleine", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shark", + "wordSecond": "requin", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "butterfly", + "wordSecond": "papillon", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bee", + "wordSecond": "abeille", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ant", + "wordSecond": "fourmi", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "mouse", + "wordSecond": "souris", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "rabbit", + "wordSecond": "lapin", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "duck", + "wordSecond": "canard", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "goat", + "wordSecond": "chèvre", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sheep", + "wordSecond": "mouton", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "frog", + "wordSecond": "grenouille", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "snake", + "wordSecond": "serpent", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "monkey", + "wordSecond": "singe", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "giraffe", + "wordSecond": "girafe", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "zebra", + "wordSecond": "zèbre", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wolf", + "wordSecond": "loup", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fox", + "wordSecond": "renard", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "deer", + "wordSecond": "cerf", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "kangaroo", + "wordSecond": "kangourou", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "camel", + "wordSecond": "chameau", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hippo", + "wordSecond": "hippopotame", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "rhino", + "wordSecond": "rhinocéros", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "crocodile", + "wordSecond": "crocodile", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "turtle", + "wordSecond": "tortue", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lizard", + "wordSecond": "lézard", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "spider", + "wordSecond": "araignée", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fly", + "wordSecond": "mouche", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "mosquito", + "wordSecond": "moustique", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "dolphin", + "wordSecond": "dauphin", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "octopus", + "wordSecond": "pieuvre", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "jellyfish", + "wordSecond": "méduse", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "starfish", + "wordSecond": "étoile de mer", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "seal", + "wordSecond": "phoque", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "walrus", + "wordSecond": "morse", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "penguin", + "wordSecond": "manchot", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "parrot", + "wordSecond": "perroquet", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "eagle", + "wordSecond": "aigle", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "owl", + "wordSecond": "hibou", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bat", + "wordSecond": "chauve-souris", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "squirrel", + "wordSecond": "écureuil", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hedgehog", + "wordSecond": "hérisson", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "raccoon", + "wordSecond": "raton laveur", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "skunk", + "wordSecond": "mouffette", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "beaver", + "wordSecond": "castor", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "otter", + "wordSecond": "loutre", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "badger", + "wordSecond": "blaireau", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "mole", + "wordSecond": "taupe", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hamster", + "wordSecond": "hamster", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "guinea pig", + "wordSecond": "cochon d'Inde", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ferret", + "wordSecond": "furet", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "goose", + "wordSecond": "oie", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "turkey", + "wordSecond": "dinde", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "swan", + "wordSecond": "cygne", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "flamingo", + "wordSecond": "flamant", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "peacock", + "wordSecond": "paon", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "crow", + "wordSecond": "corbeau", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sparrow", + "wordSecond": "moineau", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "rooster", + "wordSecond": "coq", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "donkey", + "wordSecond": "âne", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bull", + "wordSecond": "taureau", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lamb", + "wordSecond": "agneau", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pony", + "wordSecond": "poney", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "llama", + "wordSecond": "lama", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "buffalo", + "wordSecond": "buffle", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "leopard", + "wordSecond": "léopard", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cheetah", + "wordSecond": "guépard", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "gorilla", + "wordSecond": "gorille", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "chimpanzee", + "wordSecond": "chimpanzé", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "koala", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sloth", + "wordSecond": "paresseux", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "armadillo", + "wordSecond": "tatou", + "createdAt": "2026-02-19T13:14:55.991Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_en_it_A1.json b/output/2026_02_19_animals_wildlife_en_it_A1.json new file mode 100644 index 0000000..6abb1e2 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_en_it_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:15:11.855Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dog", + "wordSecond": "cane", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cat", + "wordSecond": "gatto", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bird", + "wordSecond": "uccello", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cow", + "wordSecond": "mucca", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "horse", + "wordSecond": "cavallo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pig", + "wordSecond": "maiale", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "chicken", + "wordSecond": "pollo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lion", + "wordSecond": "leone", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tiger", + "wordSecond": "tigre", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "elephant", + "wordSecond": "elefante", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bear", + "wordSecond": "orso", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fish", + "wordSecond": "pesce", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "whale", + "wordSecond": "balena", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shark", + "wordSecond": "squalo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "butterfly", + "wordSecond": "farfalla", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bee", + "wordSecond": "ape", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ant", + "wordSecond": "formica", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "mouse", + "wordSecond": "topo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "rabbit", + "wordSecond": "coniglio", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "duck", + "wordSecond": "anatra", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "goat", + "wordSecond": "capra", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sheep", + "wordSecond": "pecora", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "frog", + "wordSecond": "rana", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "snake", + "wordSecond": "serpente", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "turtle", + "wordSecond": "tartaruga", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "monkey", + "wordSecond": "scimmia", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "giraffe", + "wordSecond": "giraffa", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "zebra", + "wordSecond": "zebra", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wolf", + "wordSecond": "lupo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fox", + "wordSecond": "volpe", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "deer", + "wordSecond": "cervo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "squirrel", + "wordSecond": "scoiattolo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bat", + "wordSecond": "pipistrello", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "owl", + "wordSecond": "gufo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "eagle", + "wordSecond": "aquila", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "spider", + "wordSecond": "ragno", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fly", + "wordSecond": "mosca", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "mosquito", + "wordSecond": "zanzara", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ladybug", + "wordSecond": "coccinella", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dolphin", + "wordSecond": "delfino", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "octopus", + "wordSecond": "polpo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "seal", + "wordSecond": "foca", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "crab", + "wordSecond": "granchio", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lobster", + "wordSecond": "aragosta", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "jellyfish", + "wordSecond": "medusa", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "starfish", + "wordSecond": "stella marina", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "seahorse", + "wordSecond": "cavalluccio marino", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "penguin", + "wordSecond": "pinguino", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "kangaroo", + "wordSecond": "canguro", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "koala", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hippo", + "wordSecond": "ippopotamo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "rhino", + "wordSecond": "rinoceronte", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "camel", + "wordSecond": "cammello", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "parrot", + "wordSecond": "pappagallo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "canary", + "wordSecond": "canarino", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hamster", + "wordSecond": "criceto", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "guinea pig", + "wordSecond": "cavia", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "goldfish", + "wordSecond": "pesce rosso", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tortoise", + "wordSecond": "tartaruga di terra", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lizard", + "wordSecond": "lucertola", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "crocodile", + "wordSecond": "coccodrillo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "alligator", + "wordSecond": "alligatore", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cheetah", + "wordSecond": "ghepardo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "leopard", + "wordSecond": "leopardo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "gorilla", + "wordSecond": "gorilla", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "chimpanzee", + "wordSecond": "scimpanzé", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "buffalo", + "wordSecond": "bufalo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "donkey", + "wordSecond": "asino", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "turkey", + "wordSecond": "tacchino", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "goose", + "wordSecond": "oca", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "swan", + "wordSecond": "cigno", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "peacock", + "wordSecond": "pavone", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "flamingo", + "wordSecond": "fenicottero", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ostrich", + "wordSecond": "struzzo", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hedgehog", + "wordSecond": "riccio", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "mole", + "wordSecond": "talpa", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "beaver", + "wordSecond": "castoro", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "raccoon", + "wordSecond": "procione", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "skunk", + "wordSecond": "moffetta", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "badger", + "wordSecond": "tasso", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "weasel", + "wordSecond": "donnola", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "otter", + "wordSecond": "lontra", + "createdAt": "2026-02-19T13:15:11.855Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_en_ja_A1.json b/output/2026_02_19_animals_wildlife_en_ja_A1.json new file mode 100644 index 0000000..f83a0d8 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_en_ja_A1.json @@ -0,0 +1,1085 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:15:38.307Z", + "metadata": { + "itemCount": 82, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "dog", + "wordSecond": "犬 (いぬ, inu)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cat", + "wordSecond": "猫 (ねこ, neko)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bird", + "wordSecond": "鳥 (とり, tori)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "fish", + "wordSecond": "魚 (さかな, sakana)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cow", + "wordSecond": "牛 (うし, ushi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "horse", + "wordSecond": "馬 (うま, uma)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pig", + "wordSecond": "豚 (ぶた, buta)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "chicken", + "wordSecond": "鶏 (にわとり, niwatori)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "lion", + "wordSecond": "ライオン (らいおん, raion)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "tiger", + "wordSecond": "虎 (とら, tora)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "elephant", + "wordSecond": "象 (ぞう, zou)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bear", + "wordSecond": "熊 (くま, kuma)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "whale", + "wordSecond": "鯨 (くじら, kujira)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "shark", + "wordSecond": "鮫 (さめ, same)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "butterfly", + "wordSecond": "蝶 (ちょう, chou)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bee", + "wordSecond": "蜂 (はち, hachi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "ant", + "wordSecond": "蟻 (あり, ari)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "rabbit", + "wordSecond": "兎 (うさぎ, usagi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "mouse", + "wordSecond": "鼠 (ねずみ, nezumi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "frog", + "wordSecond": "蛙 (かえる, kaeru)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "snake", + "wordSecond": "蛇 (へび, hebi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "turtle", + "wordSecond": "亀 (かめ, kame)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "monkey", + "wordSecond": "猿 (さる, saru)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "giraffe", + "wordSecond": "キリン (きりん, kirin)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "zebra", + "wordSecond": "シマウマ (しまうま, shimauma)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "wolf", + "wordSecond": "狼 (おおかみ, ookami)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "fox", + "wordSecond": "狐 (きつね, kitsune)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "deer", + "wordSecond": "鹿 (しか, shika)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sheep", + "wordSecond": "羊 (ひつじ, hitsuji)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "goat", + "wordSecond": "山羊 (やぎ, yagi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "duck", + "wordSecond": "鴨 (かも, kamo)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "goose", + "wordSecond": "鵞鳥 (がちょう, gachou)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "swan", + "wordSecond": "白鳥 (はくちょう, hakuchou)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "owl", + "wordSecond": "梟 (ふくろう, fukurou)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "eagle", + "wordSecond": "鷲 (わし, washi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hawk", + "wordSecond": "鷹 (たか, taka)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "crow", + "wordSecond": "烏 (からす, karasu)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sparrow", + "wordSecond": "雀 (すずめ, suzume)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "parrot", + "wordSecond": "オウム (おうむ, oumu)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "penguin", + "wordSecond": "ペンギン (ぺんぎん, pengin)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "dolphin", + "wordSecond": "イルカ (いるか, iruka)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "octopus", + "wordSecond": "蛸 (たこ, tako)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "squid", + "wordSecond": "烏賊 (いか, ika)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "jellyfish", + "wordSecond": "海月 (くらげ, kurage)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "crab", + "wordSecond": "蟹 (かに, kani)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "lobster", + "wordSecond": "伊勢海老 (いせえび, iseebi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "shrimp", + "wordSecond": "海老 (えび, ebi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "starfish", + "wordSecond": "海星 (ひとで, hitode)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "seal", + "wordSecond": "海豹 (あざらし, azarashi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sea lion", + "wordSecond": "海驢 (あしか, ashika)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "walrus", + "wordSecond": "海象 (せいうち, seiuchi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "polar bear", + "wordSecond": "白熊 (しろくま, shirokuma)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "panda", + "wordSecond": "パンダ (ぱんだ, panda)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "koala", + "wordSecond": "コアラ (こあら, koara)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "kangaroo", + "wordSecond": "カンガルー (かんがるー, kangaruu)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hippopotamus", + "wordSecond": "カバ (かば, kaba)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "rhinoceros", + "wordSecond": "犀 (さい, sai)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "crocodile", + "wordSecond": "鰐 (わに, wani)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "alligator", + "wordSecond": "ワニ (わに, wani)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "lizard", + "wordSecond": "蜥蜴 (とかげ, tokage)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "chameleon", + "wordSecond": "カメレオン (かめれおん, kamereon)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "dragonfly", + "wordSecond": "蜻蛉 (とんぼ, tonbo)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "ladybug", + "wordSecond": "天道虫 (てんとうむし, tentoumushi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "grasshopper", + "wordSecond": "蝗 (いなご, inago)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cricket", + "wordSecond": "蟋蟀 (こおろぎ, koorogi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "firefly", + "wordSecond": "蛍 (ほたる, hotaru)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "mosquito", + "wordSecond": "蚊 (か, ka)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "fly", + "wordSecond": "蝿 (はえ, hae)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "spider", + "wordSecond": "蜘蛛 (くも, kumo)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "scorpion", + "wordSecond": "蠍 (さそり, sasori)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "centipede", + "wordSecond": "蜈蚣 (むかで, mukade)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "snail", + "wordSecond": "蝸牛 (かたつむり, katatsumuri)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "worm", + "wordSecond": "虫 (むし, mushi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bat", + "wordSecond": "蝙蝠 (こうもり, koumori)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hedgehog", + "wordSecond": "針鼠 (はりねずみ, harinezumi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "raccoon", + "wordSecond": "洗熊 (あらいぐま, araiguma)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "squirrel", + "wordSecond": "栗鼠 (りす, risu)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "beaver", + "wordSecond": "海狸 (かいり, kairi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "mole", + "wordSecond": "土竜 (もぐら, mogura)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hamster", + "wordSecond": "ハムスター (はむすたー, hamusutaa)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "guinea pig", + "wordSecond": "テンジクネズミ (てんじくねずみ, tenjikunezumi)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "ferret", + "wordSecond": "フェレット (ふぇれっと, feretto)", + "createdAt": "2026-02-19T13:15:38.307Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_en_ko_A1.json b/output/2026_02_19_animals_wildlife_en_ko_A1.json new file mode 100644 index 0000000..4eab57c --- /dev/null +++ b/output/2026_02_19_animals_wildlife_en_ko_A1.json @@ -0,0 +1,1085 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:16:25.271Z", + "metadata": { + "itemCount": 82, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "dog", + "wordSecond": "개 (gae)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cat", + "wordSecond": "고양이 (goyangi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bird", + "wordSecond": "새 (sae)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "fish", + "wordSecond": "물고기 (mulgogi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cow", + "wordSecond": "소 (so)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "horse", + "wordSecond": "말 (mal)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pig", + "wordSecond": "돼지 (dwaeji)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "chicken", + "wordSecond": "닭 (dak)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "lion", + "wordSecond": "사자 (saja)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "tiger", + "wordSecond": "호랑이 (horangi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "elephant", + "wordSecond": "코끼리 (kokkiri)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bear", + "wordSecond": "곰 (gom)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "whale", + "wordSecond": "고래 (gorae)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "shark", + "wordSecond": "상어 (sangeo)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "butterfly", + "wordSecond": "나비 (nabi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bee", + "wordSecond": "벌 (beol)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "ant", + "wordSecond": "개미 (gaemi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "rabbit", + "wordSecond": "토끼 (tokki)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "mouse", + "wordSecond": "쥐 (jwi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "duck", + "wordSecond": "오리 (ori)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "goat", + "wordSecond": "염소 (yeomso)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sheep", + "wordSecond": "양 (yang)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "frog", + "wordSecond": "개구리 (gaeguri)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "snake", + "wordSecond": "뱀 (baem)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "monkey", + "wordSecond": "원숭이 (wonsungi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "deer", + "wordSecond": "사슴 (saseum)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "fox", + "wordSecond": "여우 (yeou)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "wolf", + "wordSecond": "늑대 (neukdae)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "giraffe", + "wordSecond": "기린 (girin)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "zebra", + "wordSecond": "얼룩말 (eollungmal)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "camel", + "wordSecond": "낙타 (nakta)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "kangaroo", + "wordSecond": "캥거루 (kaenggeoru)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "panda", + "wordSecond": "판다 (panda)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "hippo", + "wordSecond": "하마 (hama)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "rhino", + "wordSecond": "코뿔소 (koppulso)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "crocodile", + "wordSecond": "악어 (ageo)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "turtle", + "wordSecond": "거북이 (geobugi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "dolphin", + "wordSecond": "돌고래 (dolgorae)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "octopus", + "wordSecond": "문어 (muneo)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "crab", + "wordSecond": "게 (ge)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "lobster", + "wordSecond": "바닷가재 (badatgajae)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "shrimp", + "wordSecond": "새우 (saeu)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "jellyfish", + "wordSecond": "해파리 (haepari)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "starfish", + "wordSecond": "불가사리 (bulgasari)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "seal", + "wordSecond": "물개 (mulgae)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "penguin", + "wordSecond": "펭귄 (peng-gwin)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "owl", + "wordSecond": "부엉이 (bueongi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "eagle", + "wordSecond": "독수리 (doksuri)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sparrow", + "wordSecond": "참새 (chamsae)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "crow", + "wordSecond": "까마귀 (kkamagwi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "parrot", + "wordSecond": "앵무새 (aengmusae)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pigeon", + "wordSecond": "비둘기 (bidulgi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "swan", + "wordSecond": "백조 (baekjo)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "flamingo", + "wordSecond": "플라밍고 (peullaminggo)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "peacock", + "wordSecond": "공작 (gongjak)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "turkey", + "wordSecond": "칠면조 (chilmyeonjo)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "goose", + "wordSecond": "거위 (geowi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bat", + "wordSecond": "박쥐 (bakjwi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "squirrel", + "wordSecond": "다람쥐 (daramjwi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "hedgehog", + "wordSecond": "고슴도치 (goseumdochi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "raccoon", + "wordSecond": "너구리 (neoguri)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "beaver", + "wordSecond": "비버 (bibeo)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "mole", + "wordSecond": "두더지 (dudeoji)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "chipmunk", + "wordSecond": "칩먼크 (chipmeonkeu)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "skunk", + "wordSecond": "스컹크 (seukeongkeu)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "porcupine", + "wordSecond": "호저 (hojeo)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "koala", + "wordSecond": "코알라 (koalla)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sloth", + "wordSecond": "나무늘보 (namuneulbo)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "armadillo", + "wordSecond": "아르마딜로 (areumadillo)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "lemur", + "wordSecond": "여우원숭이 (yeouwonsungi)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "gorilla", + "wordSecond": "고릴라 (gorilla)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "chimpanzee", + "wordSecond": "침팬지 (chimpaenji)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "orangutan", + "wordSecond": "오랑우탄 (orang-utan)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "leopard", + "wordSecond": "표범 (pyobeom)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cheetah", + "wordSecond": "치타 (chita)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "jaguar", + "wordSecond": "재규어 (jaegyueo)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "lynx", + "wordSecond": "스라소니 (seurasoni)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "hyena", + "wordSecond": "하이에나 (haiena)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "meerkat", + "wordSecond": "미어캣 (mieokaet)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "otter", + "wordSecond": "수달 (sudal)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "seahorse", + "wordSecond": "해마 (haema)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "squid", + "wordSecond": "오징어 (ojingeo)", + "createdAt": "2026-02-19T13:16:25.271Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_en_pl_A1.json b/output/2026_02_19_animals_wildlife_en_pl_A1.json new file mode 100644 index 0000000..59cbec6 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_en_pl_A1.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:16:41.438Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "dog", + "wordSecond": "pies", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cat", + "wordSecond": "kot", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bird", + "wordSecond": "ptak", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cow", + "wordSecond": "krowa", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "horse", + "wordSecond": "koń", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pig", + "wordSecond": "świnia", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "chicken", + "wordSecond": "kura", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "lion", + "wordSecond": "lew", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "tiger", + "wordSecond": "tygrys", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "elephant", + "wordSecond": "słoń", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bear", + "wordSecond": "niedźwiedź", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fish", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "whale", + "wordSecond": "wieloryb", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "shark", + "wordSecond": "rekin", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "butterfly", + "wordSecond": "motyl", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bee", + "wordSecond": "pszczoła", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "ant", + "wordSecond": "mrówka", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "mouse", + "wordSecond": "mysz", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "rabbit", + "wordSecond": "królik", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "duck", + "wordSecond": "kaczka", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "goose", + "wordSecond": "gęś", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sheep", + "wordSecond": "owca", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "goat", + "wordSecond": "koza", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "donkey", + "wordSecond": "osioł", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "monkey", + "wordSecond": "małpa", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "giraffe", + "wordSecond": "żyrafa", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "zebra", + "wordSecond": "zebra", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "hippo", + "wordSecond": "hipopotam", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "rhino", + "wordSecond": "nosorożec", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "wolf", + "wordSecond": "wilk", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fox", + "wordSecond": "lis", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "deer", + "wordSecond": "jeleń", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "frog", + "wordSecond": "żaba", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "snake", + "wordSecond": "wąż", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "turtle", + "wordSecond": "żółw", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "crocodile", + "wordSecond": "krokodyl", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "dolphin", + "wordSecond": "delfin", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "octopus", + "wordSecond": "ośmiornica", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "seal", + "wordSecond": "foka", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "penguin", + "wordSecond": "pingwin", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "eagle", + "wordSecond": "orzeł", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "owl", + "wordSecond": "sowa", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sparrow", + "wordSecond": "wróbel", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "parrot", + "wordSecond": "papuga", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "hamster", + "wordSecond": "chomik", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "guinea pig", + "wordSecond": "świnka morska", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "goldfish", + "wordSecond": "złota rybka", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "lizard", + "wordSecond": "jaszczurka", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "snail", + "wordSecond": "ślimak", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "spider", + "wordSecond": "pająk", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fly", + "wordSecond": "mucha", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "mosquito", + "wordSecond": "komar", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "ladybug", + "wordSecond": "biedronka", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "grasshopper", + "wordSecond": "konik polny", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "caterpillar", + "wordSecond": "gąsienica", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "worm", + "wordSecond": "robak", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bat", + "wordSecond": "nietoperz", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "squirrel", + "wordSecond": "wiewiórka", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "hedgehog", + "wordSecond": "jeż", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "mole", + "wordSecond": "kret", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "badger", + "wordSecond": "borsuk", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "beaver", + "wordSecond": "bóbr", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "moose", + "wordSecond": "łoś", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "boar", + "wordSecond": "dzik", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "camel", + "wordSecond": "wielbłąd", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "kangaroo", + "wordSecond": "kangur", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "koala", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "leopard", + "wordSecond": "lampart", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cheetah", + "wordSecond": "gepard", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "gorilla", + "wordSecond": "goryl", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "chimpanzee", + "wordSecond": "szympans", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "ostrich", + "wordSecond": "struś", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "flamingo", + "wordSecond": "flaming", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "peacock", + "wordSecond": "paw", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "swan", + "wordSecond": "łabędź", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "stork", + "wordSecond": "bocian", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "crow", + "wordSecond": "wrona", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "raven", + "wordSecond": "kruk", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "seagull", + "wordSecond": "mewa", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "jellyfish", + "wordSecond": "meduza", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "starfish", + "wordSecond": "rozgwiazda", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "crab", + "wordSecond": "krab", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "lobster", + "wordSecond": "homar", + "createdAt": "2026-02-19T13:16:41.438Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_en_pt_A1.json b/output/2026_02_19_animals_wildlife_en_pt_A1.json new file mode 100644 index 0000000..4172fc9 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_en_pt_A1.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:14:24.773Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dog", + "wordSecond": "cachorro", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cat", + "wordSecond": "gato", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bird", + "wordSecond": "pássaro", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cow", + "wordSecond": "vaca", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "horse", + "wordSecond": "cavalo", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pig", + "wordSecond": "porco", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chicken", + "wordSecond": "galinha", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lion", + "wordSecond": "leão", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tiger", + "wordSecond": "tigre", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "elephant", + "wordSecond": "elefante", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bear", + "wordSecond": "urso", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fish", + "wordSecond": "peixe", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "whale", + "wordSecond": "baleia", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shark", + "wordSecond": "tubarão", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "butterfly", + "wordSecond": "borboleta", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bee", + "wordSecond": "abelha", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ant", + "wordSecond": "formiga", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rabbit", + "wordSecond": "coelho", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mouse", + "wordSecond": "rato", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "duck", + "wordSecond": "pato", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "goat", + "wordSecond": "cabra", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sheep", + "wordSecond": "ovelha", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "monkey", + "wordSecond": "macaco", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "giraffe", + "wordSecond": "girafa", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "zebra", + "wordSecond": "zebra", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "kangaroo", + "wordSecond": "canguru", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "crocodile", + "wordSecond": "crocodilo", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "snake", + "wordSecond": "cobra", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "frog", + "wordSecond": "sapo", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "turtle", + "wordSecond": "tartaruga", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dolphin", + "wordSecond": "golfinho", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "octopus", + "wordSecond": "polvo", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lobster", + "wordSecond": "lagosta", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "crab", + "wordSecond": "caranguejo", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "jellyfish", + "wordSecond": "água-viva", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "seal", + "wordSecond": "foca", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "penguin", + "wordSecond": "pinguim", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "owl", + "wordSecond": "coruja", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "eagle", + "wordSecond": "águia", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "parrot", + "wordSecond": "papagaio", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "spider", + "wordSecond": "aranha", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mosquito", + "wordSecond": "mosquito", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fly", + "wordSecond": "mosca", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ladybug", + "wordSecond": "joaninha", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "grasshopper", + "wordSecond": "gafanhoto", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dragonfly", + "wordSecond": "libélula", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "worm", + "wordSecond": "minhoca", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "snail", + "wordSecond": "caracol", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bat", + "wordSecond": "morcego", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fox", + "wordSecond": "raposa", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wolf", + "wordSecond": "lobo", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "deer", + "wordSecond": "veado", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "raccoon", + "wordSecond": "guaxinim", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "skunk", + "wordSecond": "gambá", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "squirrel", + "wordSecond": "esquilo", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hedgehog", + "wordSecond": "ouriço", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hamster", + "wordSecond": "hamster", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "guinea pig", + "wordSecond": "porquinho-da-índia", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ferret", + "wordSecond": "furão", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "goose", + "wordSecond": "ganso", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "turkey", + "wordSecond": "peru", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "donkey", + "wordSecond": "burro", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "camel", + "wordSecond": "camelo", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hippopotamus", + "wordSecond": "hipopótamo", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rhinoceros", + "wordSecond": "rinoceronte", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "koala", + "wordSecond": "coala", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sloth", + "wordSecond": "preguiça", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cheetah", + "wordSecond": "guepardo", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "leopard", + "wordSecond": "leopardo", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "gorilla", + "wordSecond": "gorila", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chimpanzee", + "wordSecond": "chimpanzé", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "alligator", + "wordSecond": "jacaré", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lizard", + "wordSecond": "lagarto", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "toad", + "wordSecond": "sapo", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "seahorse", + "wordSecond": "cavalo-marinho", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "starfish", + "wordSecond": "estrela-do-mar", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "clam", + "wordSecond": "marisco", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shrimp", + "wordSecond": "camarão", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "squid", + "wordSecond": "lula", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "moth", + "wordSecond": "mariposa", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "caterpillar", + "wordSecond": "lagarta", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "beetle", + "wordSecond": "besouro", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "scorpion", + "wordSecond": "escorpião", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "centipede", + "wordSecond": "centopeia", + "createdAt": "2026-02-19T13:14:24.773Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_en_zh_A1.json b/output/2026_02_19_animals_wildlife_en_zh_A1.json new file mode 100644 index 0000000..5e28b54 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_en_zh_A1.json @@ -0,0 +1,1137 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:16:01.638Z", + "metadata": { + "itemCount": 86, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "dog", + "wordSecond": "狗 (gǒu)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cat", + "wordSecond": "猫 (māo)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bird", + "wordSecond": "鸟 (niǎo)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "fish", + "wordSecond": "鱼 (yú)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cow", + "wordSecond": "牛 (niú)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "horse", + "wordSecond": "马 (mǎ)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pig", + "wordSecond": "猪 (zhū)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "chicken", + "wordSecond": "鸡 (jī)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "duck", + "wordSecond": "鸭 (yā)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sheep", + "wordSecond": "羊 (yáng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "goat", + "wordSecond": "山羊 (shānyáng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "rabbit", + "wordSecond": "兔子 (tùzi)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "mouse", + "wordSecond": "老鼠 (lǎoshǔ)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "lion", + "wordSecond": "狮子 (shīzi)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "tiger", + "wordSecond": "老虎 (lǎohǔ)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "elephant", + "wordSecond": "大象 (dàxiàng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bear", + "wordSecond": "熊 (xióng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "monkey", + "wordSecond": "猴子 (hóuzi)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "giraffe", + "wordSecond": "长颈鹿 (chángjǐnglù)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "zebra", + "wordSecond": "斑马 (bānmǎ)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "kangaroo", + "wordSecond": "袋鼠 (dàishǔ)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "panda", + "wordSecond": "熊猫 (xióngmāo)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "fox", + "wordSecond": "狐狸 (húli)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "wolf", + "wordSecond": "狼 (láng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "deer", + "wordSecond": "鹿 (lù)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "frog", + "wordSecond": "青蛙 (qīngwā)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "snake", + "wordSecond": "蛇 (shé)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "turtle", + "wordSecond": "乌龟 (wūguī)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "crocodile", + "wordSecond": "鳄鱼 (èyú)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "whale", + "wordSecond": "鲸鱼 (jīngyú)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "shark", + "wordSecond": "鲨鱼 (shāyú)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "dolphin", + "wordSecond": "海豚 (hǎitún)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "octopus", + "wordSecond": "章鱼 (zhāngyú)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "jellyfish", + "wordSecond": "水母 (shuǐmǔ)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "starfish", + "wordSecond": "海星 (hǎixīng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "crab", + "wordSecond": "螃蟹 (pángxiè)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "lobster", + "wordSecond": "龙虾 (lóngxiā)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "shrimp", + "wordSecond": "虾 (xiā)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "butterfly", + "wordSecond": "蝴蝶 (húdié)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bee", + "wordSecond": "蜜蜂 (mìfēng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "ant", + "wordSecond": "蚂蚁 (mǎyǐ)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "spider", + "wordSecond": "蜘蛛 (zhīzhū)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "fly", + "wordSecond": "苍蝇 (cāngying)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "mosquito", + "wordSecond": "蚊子 (wénzi)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "dragonfly", + "wordSecond": "蜻蜓 (qīngtíng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "ladybug", + "wordSecond": "瓢虫 (piáochóng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "grasshopper", + "wordSecond": "蚱蜢 (zhàměng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "caterpillar", + "wordSecond": "毛毛虫 (máomáochóng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "worm", + "wordSecond": "虫子 (chóngzi)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "snail", + "wordSecond": "蜗牛 (wōniú)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bat", + "wordSecond": "蝙蝠 (biānfú)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "owl", + "wordSecond": "猫头鹰 (māotóuyīng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "eagle", + "wordSecond": "鹰 (yīng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "parrot", + "wordSecond": "鹦鹉 (yīngwǔ)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "penguin", + "wordSecond": "企鹅 (qǐ'é)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "seal", + "wordSecond": "海豹 (hǎibào)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "walrus", + "wordSecond": "海象 (hǎixiàng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "polar bear", + "wordSecond": "北极熊 (běijíxióng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hippo", + "wordSecond": "河马 (hémǎ)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "rhino", + "wordSecond": "犀牛 (xīniú)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cheetah", + "wordSecond": "猎豹 (lièbào)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "leopard", + "wordSecond": "豹子 (bàozi)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "gorilla", + "wordSecond": "大猩猩 (dàxīngxing)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "chimpanzee", + "wordSecond": "黑猩猩 (hēixīngxing)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "koala", + "wordSecond": "考拉 (kǎolā)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sloth", + "wordSecond": "树懒 (shùlǎn)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "raccoon", + "wordSecond": "浣熊 (huànxióng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "skunk", + "wordSecond": "臭鼬 (chòuyòu)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "squirrel", + "wordSecond": "松鼠 (sōngshǔ)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hedgehog", + "wordSecond": "刺猬 (cìwei)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hamster", + "wordSecond": "仓鼠 (cāngshǔ)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "guinea pig", + "wordSecond": "豚鼠 (túnshǔ)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "ferret", + "wordSecond": "雪貂 (xuědiāo)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "lizard", + "wordSecond": "蜥蜴 (xīyì)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "iguana", + "wordSecond": "鬣蜥 (lièxī)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "chameleon", + "wordSecond": "变色龙 (biànsèlóng)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "gecko", + "wordSecond": "壁虎 (bìhǔ)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "alligator", + "wordSecond": "短吻鳄 (duǎnwěn'è)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "ostrich", + "wordSecond": "鸵鸟 (tuóniǎo)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "flamingo", + "wordSecond": "火烈鸟 (huǒlièniǎo)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "peacock", + "wordSecond": "孔雀 (kǒngquè)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "swan", + "wordSecond": "天鹅 (tiān'é)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "goose", + "wordSecond": "鹅 (é)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "turkey", + "wordSecond": "火鸡 (huǒjī)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "donkey", + "wordSecond": "驴 (lǘ)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "camel", + "wordSecond": "骆驼 (luòtuo)", + "createdAt": "2026-02-19T13:16:01.638Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_es_de_A1.json b/output/2026_02_19_animals_wildlife_es_de_A1.json new file mode 100644 index 0000000..94ca91b --- /dev/null +++ b/output/2026_02_19_animals_wildlife_es_de_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:17:17.163Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el perro", + "wordSecond": "der Hund", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el gato", + "wordSecond": "die Katze", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pájaro", + "wordSecond": "der Vogel", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pez", + "wordSecond": "der Fisch", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la vaca", + "wordSecond": "die Kuh", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el caballo", + "wordSecond": "das Pferd", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el cerdo", + "wordSecond": "das Schwein", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la gallina", + "wordSecond": "das Huhn", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pollo", + "wordSecond": "das Küken", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el león", + "wordSecond": "der Löwe", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el tigre", + "wordSecond": "der Tiger", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el elefante", + "wordSecond": "der Elefant", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el oso", + "wordSecond": "der Bär", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el mono", + "wordSecond": "der Affe", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la jirafa", + "wordSecond": "die Giraffe", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cebra", + "wordSecond": "das Zebra", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el lobo", + "wordSecond": "der Wolf", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el zorro", + "wordSecond": "der Fuchs", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el conejo", + "wordSecond": "das Kaninchen", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la oveja", + "wordSecond": "das Schaf", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cabra", + "wordSecond": "die Ziege", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pato", + "wordSecond": "die Ente", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el ratón", + "wordSecond": "die Maus", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la rana", + "wordSecond": "der Frosch", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la serpiente", + "wordSecond": "die Schlange", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la tortuga", + "wordSecond": "die Schildkröte", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el cocodrilo", + "wordSecond": "das Krokodil", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el hipopótamo", + "wordSecond": "das Nilpferd", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el rinoceronte", + "wordSecond": "das Nashorn", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el camello", + "wordSecond": "das Kamel", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pingüino", + "wordSecond": "der Pinguin", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la foca", + "wordSecond": "der Seehund", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la ballena", + "wordSecond": "der Wal", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el delfín", + "wordSecond": "der Delfin", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el tiburón", + "wordSecond": "der Hai", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la estrella de mar", + "wordSecond": "der Seestern", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pulpo", + "wordSecond": "der Oktopus", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el cangrejo", + "wordSecond": "die Krabbe", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la medusa", + "wordSecond": "die Qualle", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la mariposa", + "wordSecond": "der Schmetterling", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la abeja", + "wordSecond": "die Biene", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la hormiga", + "wordSecond": "die Ameise", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la araña", + "wordSecond": "die Spinne", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el escarabajo", + "wordSecond": "der Käfer", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la mosca", + "wordSecond": "die Fliege", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el mosquito", + "wordSecond": "die Mücke", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la libélula", + "wordSecond": "die Libelle", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el saltamontes", + "wordSecond": "die Heuschrecke", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el caracol", + "wordSecond": "die Schnecke", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el gusano", + "wordSecond": "der Wurm", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el murciélago", + "wordSecond": "die Fledermaus", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el águila", + "wordSecond": "der Adler", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el búho", + "wordSecond": "die Eule", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el cuervo", + "wordSecond": "die Krähe", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el gorrión", + "wordSecond": "der Spatz", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el cisne", + "wordSecond": "der Schwan", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el flamenco", + "wordSecond": "der Flamingo", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pavo real", + "wordSecond": "der Pfau", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el loro", + "wordSecond": "der Papagei", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el canario", + "wordSecond": "der Kanarienvogel", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el hámster", + "wordSecond": "der Hamster", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el cobaya", + "wordSecond": "das Meerschweinchen", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el hurón", + "wordSecond": "das Frettchen", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pez dorado", + "wordSecond": "der Goldfisch", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el conejo enano", + "wordSecond": "das Zwergkaninchen", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el lagarto", + "wordSecond": "die Eidechse", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el camaleón", + "wordSecond": "das Chamäleon", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la iguana", + "wordSecond": "der Leguan", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el erizo", + "wordSecond": "der Igel", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el mapache", + "wordSecond": "der Waschbär", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el tejón", + "wordSecond": "der Dachs", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el castor", + "wordSecond": "der Biber", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la ardilla", + "wordSecond": "das Eichhörnchen", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el ciervo", + "wordSecond": "der Hirsch", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el alce", + "wordSecond": "der Elch", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el búfalo", + "wordSecond": "der Büffel", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el jabalí", + "wordSecond": "das Wildschwein", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el panda", + "wordSecond": "der Panda", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el koala", + "wordSecond": "der Koala", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el canguro", + "wordSecond": "das Känguru", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el avestruz", + "wordSecond": "der Strauß", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el tucán", + "wordSecond": "der Tukan", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el colibrí", + "wordSecond": "der Kolibri", + "createdAt": "2026-02-19T13:17:17.163Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_es_fr_A1.json b/output/2026_02_19_animals_wildlife_es_fr_A1.json new file mode 100644 index 0000000..ced812b --- /dev/null +++ b/output/2026_02_19_animals_wildlife_es_fr_A1.json @@ -0,0 +1,1085 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:17:33.739Z", + "metadata": { + "itemCount": 82, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "perro", + "wordSecond": "chien", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gato", + "wordSecond": "chat", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pájaro", + "wordSecond": "oiseau", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pez", + "wordSecond": "poisson", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vaca", + "wordSecond": "vache", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "caballo", + "wordSecond": "cheval", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cerdo", + "wordSecond": "cochon", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gallina", + "wordSecond": "poule", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pollo", + "wordSecond": "poulet", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "oveja", + "wordSecond": "mouton", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cabra", + "wordSecond": "chèvre", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pato", + "wordSecond": "canard", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "conejo", + "wordSecond": "lapin", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ratón", + "wordSecond": "souris", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "león", + "wordSecond": "lion", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tigre", + "wordSecond": "tigre", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "elefante", + "wordSecond": "éléphant", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "oso", + "wordSecond": "ours", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "jirafa", + "wordSecond": "girafe", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mono", + "wordSecond": "singe", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cebra", + "wordSecond": "zèbre", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hipopótamo", + "wordSecond": "hippopotame", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "rinoceronte", + "wordSecond": "rhinocéros", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cocodrilo", + "wordSecond": "crocodile", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "serpiente", + "wordSecond": "serpent", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tortuga", + "wordSecond": "tortue", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "rana", + "wordSecond": "grenouille", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ballena", + "wordSecond": "baleine", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tiburón", + "wordSecond": "requin", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "delfín", + "wordSecond": "dauphin", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "foca", + "wordSecond": "phoque", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pulpo", + "wordSecond": "pieuvre", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "medusa", + "wordSecond": "méduse", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cangrejo", + "wordSecond": "crabe", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "langosta", + "wordSecond": "homard", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "caballito de mar", + "wordSecond": "hippocampe", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mariposa", + "wordSecond": "papillon", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "abeja", + "wordSecond": "abeille", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hormiga", + "wordSecond": "fourmi", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mosca", + "wordSecond": "mouche", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mosquito", + "wordSecond": "moustique", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "araña", + "wordSecond": "araignée", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "escorpión", + "wordSecond": "scorpion", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "caracol", + "wordSecond": "escargot", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gusano", + "wordSecond": "ver", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "saltamontes", + "wordSecond": "sauterelle", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "libélula", + "wordSecond": "libellule", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ciervo", + "wordSecond": "cerf", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lobo", + "wordSecond": "loup", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "zorro", + "wordSecond": "renard", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mapache", + "wordSecond": "raton laveur", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ardilla", + "wordSecond": "écureuil", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "erizo", + "wordSecond": "hérisson", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "murciélago", + "wordSecond": "chauve-souris", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "águila", + "wordSecond": "aigle", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "búho", + "wordSecond": "hibou", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cuervo", + "wordSecond": "corbeau", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gorrión", + "wordSecond": "moineau", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "paloma", + "wordSecond": "pigeon", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gaviota", + "wordSecond": "mouette", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pingüino", + "wordSecond": "manchot", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "flamenco", + "wordSecond": "flamant", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "camello", + "wordSecond": "chameau", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "llama", + "wordSecond": "lama", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "canguro", + "wordSecond": "kangourou", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "koala", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "leopardo", + "wordSecond": "léopard", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "guepardo", + "wordSecond": "guépard", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hiena", + "wordSecond": "hyène", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "jabalí", + "wordSecond": "sanglier", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "castor", + "wordSecond": "castor", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "topo", + "wordSecond": "taupe", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "rana toro", + "wordSecond": "crapaud", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "salamandra", + "wordSecond": "salamandre", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "iguana", + "wordSecond": "iguane", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "camaleón", + "wordSecond": "caméléon", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ornitorrinco", + "wordSecond": "ornithorynque", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "equidna", + "wordSecond": "échidné", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "armadillo", + "wordSecond": "tatou", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "suricata", + "wordSecond": "suricate", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "marmota", + "wordSecond": "marmotte", + "createdAt": "2026-02-19T13:17:33.739Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_es_it_A1.json b/output/2026_02_19_animals_wildlife_es_it_A1.json new file mode 100644 index 0000000..17ff16e --- /dev/null +++ b/output/2026_02_19_animals_wildlife_es_it_A1.json @@ -0,0 +1,1072 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:17:50.041Z", + "metadata": { + "itemCount": 81, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "perro", + "wordSecond": "cane", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gato", + "wordSecond": "gatto", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pájaro", + "wordSecond": "uccello", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pez", + "wordSecond": "pesce", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vaca", + "wordSecond": "mucca", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "caballo", + "wordSecond": "cavallo", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cerdo", + "wordSecond": "maiale", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gallina", + "wordSecond": "gallina", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pollo", + "wordSecond": "pollo", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "oveja", + "wordSecond": "pecora", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cabra", + "wordSecond": "capra", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pato", + "wordSecond": "anatra", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "conejo", + "wordSecond": "coniglio", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ratón", + "wordSecond": "topo", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "león", + "wordSecond": "leone", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tigre", + "wordSecond": "tigre", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "elefante", + "wordSecond": "elefante", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "oso", + "wordSecond": "orso", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mono", + "wordSecond": "scimmia", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "jirafa", + "wordSecond": "giraffa", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cebra", + "wordSecond": "zebra", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "rinoceronte", + "wordSecond": "rinoceronte", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hipopótamo", + "wordSecond": "ippopotamo", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cocodrilo", + "wordSecond": "coccodrillo", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "serpiente", + "wordSecond": "serpente", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tortuga", + "wordSecond": "tartaruga", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "rana", + "wordSecond": "rana", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ballena", + "wordSecond": "balena", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tiburón", + "wordSecond": "squalo", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "delfín", + "wordSecond": "delfino", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pulpo", + "wordSecond": "polpo", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "medusa", + "wordSecond": "medusa", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cangrejo", + "wordSecond": "granchio", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "langosta", + "wordSecond": "aragosta", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mariposa", + "wordSecond": "farfalla", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "abeja", + "wordSecond": "ape", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hormiga", + "wordSecond": "formica", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mosca", + "wordSecond": "mosca", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mosquito", + "wordSecond": "zanzara", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "araña", + "wordSecond": "ragno", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gusano", + "wordSecond": "verme", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "caracol", + "wordSecond": "lumaca", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ciervo", + "wordSecond": "cervo", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lobo", + "wordSecond": "lupo", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "zorro", + "wordSecond": "volpe", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mapache", + "wordSecond": "procione", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ardilla", + "wordSecond": "scoiattolo", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "murciélago", + "wordSecond": "pipistrello", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "águila", + "wordSecond": "aquila", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "búho", + "wordSecond": "gufo", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "paloma", + "wordSecond": "piccione", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gorrión", + "wordSecond": "passero", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cisne", + "wordSecond": "cigno", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pavo", + "wordSecond": "tacchino", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pavo real", + "wordSecond": "pavone", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "loro", + "wordSecond": "pappagallo", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "canario", + "wordSecond": "canarino", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hámster", + "wordSecond": "criceto", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cobaya", + "wordSecond": "cavia", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pez dorado", + "wordSecond": "pesce rosso", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tortuga", + "wordSecond": "tartaruga", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lagarto", + "wordSecond": "lucertola", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "camello", + "wordSecond": "cammello", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "llama", + "wordSecond": "lama", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "alce", + "wordSecond": "alce", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bisonte", + "wordSecond": "bisonte", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "koala", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "canguro", + "wordSecond": "canguro", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pingüino", + "wordSecond": "pinguino", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "foca", + "wordSecond": "foca", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "morsa", + "wordSecond": "tricheco", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "erizo", + "wordSecond": "riccio", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "topo", + "wordSecond": "talpa", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tejón", + "wordSecond": "tasso", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "castor", + "wordSecond": "castoro", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nutria", + "wordSecond": "lontra", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "comadreja", + "wordSecond": "donnola", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "marmota", + "wordSecond": "marmotta", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "liebre", + "wordSecond": "lepre", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ciervo", + "wordSecond": "cervo", + "createdAt": "2026-02-19T13:17:50.041Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_es_ja_A1.json b/output/2026_02_19_animals_wildlife_es_ja_A1.json new file mode 100644 index 0000000..35fc8ed --- /dev/null +++ b/output/2026_02_19_animals_wildlife_es_ja_A1.json @@ -0,0 +1,1085 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:18:18.020Z", + "metadata": { + "itemCount": 82, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "perro", + "wordSecond": "犬 (いぬ, inu)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "gato", + "wordSecond": "猫 (ねこ, neko)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pájaro", + "wordSecond": "鳥 (とり, tori)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pez", + "wordSecond": "魚 (さかな, sakana)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "vaca", + "wordSecond": "牛 (うし, ushi)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "caballo", + "wordSecond": "馬 (うま, uma)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cerdo", + "wordSecond": "豚 (ぶた, buta)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "gallina", + "wordSecond": "鶏 (にわとり, niwatori)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pollo", + "wordSecond": "鶏 (にわとり, niwatori)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "oveja", + "wordSecond": "羊 (ひつじ, hitsuji)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cabras", + "wordSecond": "山羊 (やぎ, yagi)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pato", + "wordSecond": "鴨 (かも, kamo)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "conejo", + "wordSecond": "兎 (うさぎ, usagi)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ratón", + "wordSecond": "鼠 (ねずみ, nezumi)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "león", + "wordSecond": "ライオン (らいおん, raion)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tigre", + "wordSecond": "虎 (とら, tora)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "elefante", + "wordSecond": "象 (ぞう, zou)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "oso", + "wordSecond": "熊 (くま, kuma)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "jirafa", + "wordSecond": "キリン (きりん, kirin)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mono", + "wordSecond": "猿 (さる, saru)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "zorro", + "wordSecond": "狐 (きつね, kitsune)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lobo", + "wordSecond": "狼 (おおかみ, ookami)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ciervo", + "wordSecond": "鹿 (しか, shika)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ballena", + "wordSecond": "鯨 (くじら, kujira)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tiburón", + "wordSecond": "鮫 (さめ, same)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "delfín", + "wordSecond": "イルカ (いるか, iruka)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pulpo", + "wordSecond": "蛸 (たこ, tako)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "medusa", + "wordSecond": "海月 (くらげ, kurage)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cangrejo", + "wordSecond": "蟹 (かに, kani)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mariposa", + "wordSecond": "蝶 (ちょう, chou)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "abeja", + "wordSecond": "蜂 (はち, hachi)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hormiga", + "wordSecond": "蟻 (あり, ari)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mosca", + "wordSecond": "蝿 (はえ, hae)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mosquito", + "wordSecond": "蚊 (か, ka)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "araña", + "wordSecond": "蜘蛛 (くも, kumo)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "caracol", + "wordSecond": "蝸牛 (かたつむり, katatsumuri)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "gusano", + "wordSecond": "虫 (むし, mushi)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "rana", + "wordSecond": "蛙 (かえる, kaeru)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "serpiente", + "wordSecond": "蛇 (へび, hebi)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tortuga", + "wordSecond": "亀 (かめ, kame)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cocodrilo", + "wordSecond": "鰐 (わに, wani)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hipopótamo", + "wordSecond": "カバ (かば, kaba)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "rinoceronte", + "wordSecond": "犀 (さい, sai)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cebra", + "wordSecond": "シマウマ (しまうま, shimauma)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "camello", + "wordSecond": "ラクダ (らくだ, rakuda)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "panda", + "wordSecond": "パンダ (ぱんだ, panda)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "koala", + "wordSecond": "コアラ (こあら, koara)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pingüino", + "wordSecond": "ペンギン (ぺんぎん, pengin)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "águila", + "wordSecond": "鷲 (わし, washi)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "halcón", + "wordSecond": "鷹 (たか, taka)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "búho", + "wordSecond": "梟 (ふくろう, fukurou)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "gorrión", + "wordSecond": "雀 (すずめ, suzume)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "paloma", + "wordSecond": "鳩 (はと, hato)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cuervo", + "wordSecond": "烏 (からす, karasu)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "gaviota", + "wordSecond": "鴎 (かもめ, kamome)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cisne", + "wordSecond": "白鳥 (はくちょう, hakuchou)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "flamenco", + "wordSecond": "フラミンゴ (ふらみんご, furamingo)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "loro", + "wordSecond": "オウム (おうむ, oumu)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "canario", + "wordSecond": "カナリア (かなりあ, kanaria)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hámster", + "wordSecond": "ハムスター (はむすたー, hamusutaa)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cobaya", + "wordSecond": "モルモット (もるもっと, morumotto)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hurón", + "wordSecond": "フェレット (ふぇれっと, feretto)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "erizo", + "wordSecond": "ハリネズミ (はりねずみ, harinezumi)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ardilla", + "wordSecond": "栗鼠 (りす, risu)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mapache", + "wordSecond": "アライグマ (あらいぐま, araiguma)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mofeta", + "wordSecond": "スカンク (すかんく, sukanku)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tejón", + "wordSecond": "穴熊 (あなぐま, anaguma)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "castor", + "wordSecond": "ビーバー (びーばー, biibaa)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "topo", + "wordSecond": "土竜 (もぐら, mogura)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "murciélago", + "wordSecond": "蝙蝠 (こうもり, koumori)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "canguro", + "wordSecond": "カンガルー (かんがるー, kangaruu)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ornitorrinco", + "wordSecond": "カモノハシ (かものはし, kamonohashi)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "equidna", + "wordSecond": "ハリモグラ (はりもぐら, harimogura)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lemur", + "wordSecond": "キツネザル (きつねざる, kitsunezaru)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "chimpancé", + "wordSecond": "チンパンジー (ちんぱんじー, chinpanjii)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "gorila", + "wordSecond": "ゴリラ (ごりら, gorira)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "orangután", + "wordSecond": "オランウータン (おらんうーたん, oranuutan)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "bisonte", + "wordSecond": "バイソン (ばいそん, baison)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "alce", + "wordSecond": "ヘラジカ (へらじか, herajika)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "reno", + "wordSecond": "トナカイ (となかい, tonakai)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "jabalí", + "wordSecond": "猪 (いのしし, inoshishi)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "liebre", + "wordSecond": "野兎 (のうさぎ, nousagi)", + "createdAt": "2026-02-19T13:18:18.020Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_es_ko_A1.json b/output/2026_02_19_animals_wildlife_es_ko_A1.json new file mode 100644 index 0000000..1323d34 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_es_ko_A1.json @@ -0,0 +1,1085 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:56:49.005Z", + "metadata": { + "itemCount": 82, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "perro", + "wordSecond": "개 (gae)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "gato", + "wordSecond": "고양이 (goyangi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pájaro", + "wordSecond": "새 (sae)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "vaca", + "wordSecond": "소 (so)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "caballo", + "wordSecond": "말 (mal)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cerdo", + "wordSecond": "돼지 (dwaeji)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "gallina", + "wordSecond": "닭 (dak)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pollo", + "wordSecond": "닭 (dak)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "león", + "wordSecond": "사자 (saja)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tigre", + "wordSecond": "호랑이 (horangi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "elefante", + "wordSecond": "코끼리 (kokkiri)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "oso", + "wordSecond": "곰 (gom)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pez", + "wordSecond": "물고기 (mulgogi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ballena", + "wordSecond": "고래 (gorae)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tiburón", + "wordSecond": "상어 (sangeo)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mariposa", + "wordSecond": "나비 (nabi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "abeja", + "wordSecond": "벌 (beol)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hormiga", + "wordSecond": "개미 (gaemi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "conejo", + "wordSecond": "토끼 (tokki)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ratón", + "wordSecond": "쥐 (jwi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "serpiente", + "wordSecond": "뱀 (baem)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mono", + "wordSecond": "원숭이 (wonsungi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "jirafa", + "wordSecond": "기린 (girin)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cebra", + "wordSecond": "얼룩말 (eollungmal)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lobo", + "wordSecond": "늑대 (neukdae)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "zorro", + "wordSecond": "여우 (yeou)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "rana", + "wordSecond": "개구리 (gaeguri)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tortuga", + "wordSecond": "거북이 (geobugi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cocodrilo", + "wordSecond": "악어 (ageo)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hipopótamo", + "wordSecond": "하마 (hama)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "rinoceronte", + "wordSecond": "코뿔소 (koppulso)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ciervo", + "wordSecond": "사슴 (saseum)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "oveja", + "wordSecond": "양 (yang)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cabra", + "wordSecond": "염소 (yeomso)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pato", + "wordSecond": "오리 (ori)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "águila", + "wordSecond": "독수리 (doksuri)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "búho", + "wordSecond": "부엉이 (bueongi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "delfín", + "wordSecond": "돌고래 (dolgorae)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "foca", + "wordSecond": "물개 (mulgae)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pulpo", + "wordSecond": "문어 (muneo)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "medusa", + "wordSecond": "해파리 (haepari)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cangrejo", + "wordSecond": "게 (ge)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "langosta", + "wordSecond": "바닷가재 (badatgajae)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "camarón", + "wordSecond": "새우 (saeu)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "caracol", + "wordSecond": "달팽이 (dalpaengi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "araña", + "wordSecond": "거미 (geomi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "escorpión", + "wordSecond": "전갈 (jeongal)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mosquito", + "wordSecond": "모기 (mogi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mosca", + "wordSecond": "파리 (pari)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "libélula", + "wordSecond": "잠자리 (jamjari)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "saltamontes", + "wordSecond": "메뚜기 (mettugi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "gusano", + "wordSecond": "벌레 (beolle)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ciempiés", + "wordSecond": "지네 (jine)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ardilla", + "wordSecond": "다람쥐 (daramjwi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "murciélago", + "wordSecond": "박쥐 (bakjwi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "erizo", + "wordSecond": "고슴도치 (goseumdochi)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mapache", + "wordSecond": "라쿤 (rakun)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "panda", + "wordSecond": "판다 (panda)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "koala", + "wordSecond": "코알라 (koalla)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pingüino", + "wordSecond": "펭귄 (penggwin)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "flamenco", + "wordSecond": "플라밍고 (peullaminggo)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "loro", + "wordSecond": "앵무새 (aengmusae)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pavo real", + "wordSecond": "공작 (gongjak)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cisne", + "wordSecond": "백조 (baekjo)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "gorila", + "wordSecond": "고릴라 (gorilla)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "chimpancé", + "wordSecond": "침팬지 (chimpaenji)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hiena", + "wordSecond": "하이에나 (haiena)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "jabalí", + "wordSecond": "멧돼지 (metdwaeji)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "alce", + "wordSecond": "엘크 (elkeu)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "búfalo", + "wordSecond": "버팔로 (beopallo)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "camello", + "wordSecond": "낙타 (nakta)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "llama", + "wordSecond": "라마 (rama)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "canguro", + "wordSecond": "캥거루 (kaenggeoru)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "avestruz", + "wordSecond": "타조 (tajo)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "águila pescadora", + "wordSecond": "물수리 (mulsuri)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "halcón", + "wordSecond": "매 (mae)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "buitre", + "wordSecond": "독수리 (doksuri)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tucán", + "wordSecond": "큰부리새 (keunburisae)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "colibrí", + "wordSecond": "벌새 (beolsae)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cucaracha", + "wordSecond": "바퀴벌레 (bakwibeolle)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mariposa nocturna", + "wordSecond": "나방 (nabang)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "luciérnaga", + "wordSecond": "반딧불 (banditbul)", + "createdAt": "2026-02-19T15:56:49.005Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_es_pl_A1.json b/output/2026_02_19_animals_wildlife_es_pl_A1.json new file mode 100644 index 0000000..c236928 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_es_pl_A1.json @@ -0,0 +1,1085 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:22:42.572Z", + "metadata": { + "itemCount": 82, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "perro", + "wordSecond": "pies", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "gato", + "wordSecond": "kot", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pájaro", + "wordSecond": "ptak", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pez", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "vaca", + "wordSecond": "krowa", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "caballo", + "wordSecond": "koń", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cerdo", + "wordSecond": "świnia", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "gallina", + "wordSecond": "kura", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pollo", + "wordSecond": "kurczak", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "oveja", + "wordSecond": "owca", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cabra", + "wordSecond": "koza", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pato", + "wordSecond": "kaczka", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "conejo", + "wordSecond": "królik", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ratón", + "wordSecond": "mysz", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "león", + "wordSecond": "lew", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tigre", + "wordSecond": "tygrys", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "elefante", + "wordSecond": "słoń", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "oso", + "wordSecond": "niedźwiedź", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mono", + "wordSecond": "małpa", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "jirafa", + "wordSecond": "żyrafa", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cebra", + "wordSecond": "zebra", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "lobo", + "wordSecond": "wilk", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "zorro", + "wordSecond": "lis", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ciervo", + "wordSecond": "jeleń", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ballena", + "wordSecond": "wieloryb", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tiburón", + "wordSecond": "rekin", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "delfín", + "wordSecond": "delfin", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "foca", + "wordSecond": "foka", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pulpo", + "wordSecond": "ośmiornica", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "medusa", + "wordSecond": "meduza", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cangrejo", + "wordSecond": "krab", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "langosta", + "wordSecond": "homar", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "camarón", + "wordSecond": "krewetka", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "rana", + "wordSecond": "żaba", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tortuga", + "wordSecond": "żółw", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cocodrilo", + "wordSecond": "krokodyl", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "serpiente", + "wordSecond": "wąż", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "lagarto", + "wordSecond": "jaszczurka", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "águila", + "wordSecond": "orzeł", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "halcón", + "wordSecond": "sokół", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "búho", + "wordSecond": "sowa", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cuervo", + "wordSecond": "kruk", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "gorrión", + "wordSecond": "wróbel", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "paloma", + "wordSecond": "gołąb", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "golondrina", + "wordSecond": "jaskółka", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mariposa", + "wordSecond": "motyl", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "abeja", + "wordSecond": "pszczoła", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hormiga", + "wordSecond": "mrówka", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mosca", + "wordSecond": "mucha", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mosquito", + "wordSecond": "komar", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "araña", + "wordSecond": "pająk", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "escarabajo", + "wordSecond": "chrząszcz", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "saltamontes", + "wordSecond": "konik polny", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "caracol", + "wordSecond": "ślimak", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "gusano", + "wordSecond": "robak", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "erizo", + "wordSecond": "jeż", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ardilla", + "wordSecond": "wiewiórka", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "topo", + "wordSecond": "kret", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "murciélago", + "wordSecond": "nietoperz", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mapache", + "wordSecond": "szop", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "castor", + "wordSecond": "bóbr", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "alce", + "wordSecond": "łoś", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "rinoceronte", + "wordSecond": "nosorożec", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hipopótamo", + "wordSecond": "hipopotam", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "canguro", + "wordSecond": "kangur", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "koala", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pingüino", + "wordSecond": "pingwin", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "flamenco", + "wordSecond": "flaming", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pavo real", + "wordSecond": "paw", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cisne", + "wordSecond": "łabędź", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "leopardo", + "wordSecond": "lampart", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "guepardo", + "wordSecond": "gepard", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hiena", + "wordSecond": "hiena", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "jabalí", + "wordSecond": "dzik", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "morsa", + "wordSecond": "mors", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "nutria", + "wordSecond": "wydra", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "camello", + "wordSecond": "wielbłąd", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "llama", + "wordSecond": "lama", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "burro", + "wordSecond": "osioł", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "gallina", + "wordSecond": "kogut", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pavo", + "wordSecond": "indyk", + "createdAt": "2026-02-19T13:22:42.572Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_es_pt_A1.json b/output/2026_02_19_animals_wildlife_es_pt_A1.json new file mode 100644 index 0000000..4913cd2 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_es_pt_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:16:58.158Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "perro", + "wordSecond": "cachorro", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gato", + "wordSecond": "gato", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pájaro", + "wordSecond": "pássaro", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pez", + "wordSecond": "peixe", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vaca", + "wordSecond": "vaca", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "caballo", + "wordSecond": "cavalo", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cerdo", + "wordSecond": "porco", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gallina", + "wordSecond": "galinha", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pollo", + "wordSecond": "frango", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "oveja", + "wordSecond": "ovelha", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cabra", + "wordSecond": "cabra", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pato", + "wordSecond": "pato", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "conejo", + "wordSecond": "coelho", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ratón", + "wordSecond": "rato", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "león", + "wordSecond": "leão", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tigre", + "wordSecond": "tigre", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "elefante", + "wordSecond": "elefante", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "oso", + "wordSecond": "urso", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "jirafa", + "wordSecond": "girafa", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mono", + "wordSecond": "macaco", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cebra", + "wordSecond": "zebra", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rinoceronte", + "wordSecond": "rinoceronte", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hipopótamo", + "wordSecond": "hipopótamo", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cocodrilo", + "wordSecond": "crocodilo", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "serpiente", + "wordSecond": "cobra", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tortuga", + "wordSecond": "tartaruga", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rana", + "wordSecond": "sapo", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ballena", + "wordSecond": "baleia", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tiburón", + "wordSecond": "tubarão", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "delfín", + "wordSecond": "golfinho", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pulpo", + "wordSecond": "polvo", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "medusa", + "wordSecond": "água-viva", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estrella de mar", + "wordSecond": "estrela-do-mar", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cangrejo", + "wordSecond": "caranguejo", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "langosta", + "wordSecond": "lagosta", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mariposa", + "wordSecond": "mariposa", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "abeja", + "wordSecond": "abelha", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hormiga", + "wordSecond": "formiga", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mosca", + "wordSecond": "mosca", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mosquito", + "wordSecond": "pernilongo", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "araña", + "wordSecond": "aranha", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escorpión", + "wordSecond": "escorpião", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "caracol", + "wordSecond": "caracol", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gusano", + "wordSecond": "minhoca", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lombriz", + "wordSecond": "lombriga", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ciervo", + "wordSecond": "veado", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lobo", + "wordSecond": "lobo", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "zorro", + "wordSecond": "raposa", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mapache", + "wordSecond": "guaxinim", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ardilla", + "wordSecond": "esquilo", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "murciélago", + "wordSecond": "morcego", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "erizo", + "wordSecond": "ouriço", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "topo", + "wordSecond": "toupeira", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "camello", + "wordSecond": "camelo", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "llama", + "wordSecond": "lhama", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "koala", + "wordSecond": "coala", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "canguro", + "wordSecond": "canguru", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pingüino", + "wordSecond": "pinguim", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "foca", + "wordSecond": "foca", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "morsa", + "wordSecond": "morsa", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "águila", + "wordSecond": "águia", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "halcón", + "wordSecond": "falcão", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "búho", + "wordSecond": "coruja", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuervo", + "wordSecond": "corvo", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gorrión", + "wordSecond": "pardal", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "paloma", + "wordSecond": "pomba", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "loro", + "wordSecond": "papagaio", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "canario", + "wordSecond": "canário", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cisne", + "wordSecond": "cisne", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "flamenco", + "wordSecond": "flamingo", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pavo real", + "wordSecond": "pavão", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gallina de Guinea", + "wordSecond": "galinha-d'angola", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pavo", + "wordSecond": "peru", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ganso", + "wordSecond": "ganso", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cisne negro", + "wordSecond": "cisne-negro", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hámster", + "wordSecond": "hamster", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cobaya", + "wordSecond": "porquinho-da-índia", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hurón", + "wordSecond": "furão", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "iguana", + "wordSecond": "iguana", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lagarto", + "wordSecond": "lagarto", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "salamandra", + "wordSecond": "salamandra", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "camaleón", + "wordSecond": "camaleão", + "createdAt": "2026-02-19T13:16:58.158Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_es_zh_A1.json b/output/2026_02_19_animals_wildlife_es_zh_A1.json new file mode 100644 index 0000000..e4f7f8c --- /dev/null +++ b/output/2026_02_19_animals_wildlife_es_zh_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:18:42.639Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "perro", + "wordSecond": "狗 (gǒu)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "gato", + "wordSecond": "猫 (māo)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pájaro", + "wordSecond": "鸟 (niǎo)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pez", + "wordSecond": "鱼 (yú)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "vaca", + "wordSecond": "牛 (niú)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "caballo", + "wordSecond": "马 (mǎ)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cerdo", + "wordSecond": "猪 (zhū)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "gallina", + "wordSecond": "鸡 (jī)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pollo", + "wordSecond": "鸡 (jī)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "oveja", + "wordSecond": "羊 (yáng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "conejo", + "wordSecond": "兔子 (tùzi)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ratón", + "wordSecond": "老鼠 (lǎoshǔ)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "león", + "wordSecond": "狮子 (shīzi)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tigre", + "wordSecond": "老虎 (lǎohǔ)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "elefante", + "wordSecond": "大象 (dàxiàng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "oso", + "wordSecond": "熊 (xióng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mono", + "wordSecond": "猴子 (hóuzi)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "jirafa", + "wordSecond": "长颈鹿 (chángjǐnglù)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cebra", + "wordSecond": "斑马 (bānmǎ)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cocodrilo", + "wordSecond": "鳄鱼 (èyú)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "serpiente", + "wordSecond": "蛇 (shé)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "rana", + "wordSecond": "青蛙 (qīngwā)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tortuga", + "wordSecond": "乌龟 (wūguī)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ballena", + "wordSecond": "鲸鱼 (jīngyú)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tiburón", + "wordSecond": "鲨鱼 (shāyú)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "delfín", + "wordSecond": "海豚 (hǎitún)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pulpo", + "wordSecond": "章鱼 (zhāngyú)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "medusa", + "wordSecond": "水母 (shuǐmǔ)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cangrejo", + "wordSecond": "螃蟹 (pángxiè)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "estrella de mar", + "wordSecond": "海星 (hǎixīng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mariposa", + "wordSecond": "蝴蝶 (húdié)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "abeja", + "wordSecond": "蜜蜂 (mìfēng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hormiga", + "wordSecond": "蚂蚁 (mǎyǐ)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mosca", + "wordSecond": "苍蝇 (cāngying)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mosquito", + "wordSecond": "蚊子 (wénzi)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "araña", + "wordSecond": "蜘蛛 (zhīzhū)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "escarabajo", + "wordSecond": "甲虫 (jiǎchóng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "gusano", + "wordSecond": "虫子 (chóngzi)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "saltamontes", + "wordSecond": "蚱蜢 (zhàměng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "libélula", + "wordSecond": "蜻蜓 (qīngtíng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pato", + "wordSecond": "鸭子 (yāzi)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ganso", + "wordSecond": "鹅 (é)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cisne", + "wordSecond": "天鹅 (tiān'é)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "águila", + "wordSecond": "鹰 (yīng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "búho", + "wordSecond": "猫头鹰 (māotóuyīng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "loro", + "wordSecond": "鹦鹉 (yīngwǔ)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "paloma", + "wordSecond": "鸽子 (gēzi)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "gorrión", + "wordSecond": "麻雀 (máquè)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cuervo", + "wordSecond": "乌鸦 (wūyā)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ardilla", + "wordSecond": "松鼠 (sōngshǔ)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "zorro", + "wordSecond": "狐狸 (húli)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "lobo", + "wordSecond": "狼 (láng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ciervo", + "wordSecond": "鹿 (lù)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "jabalí", + "wordSecond": "野猪 (yězhū)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "murciélago", + "wordSecond": "蝙蝠 (biānfú)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "erizo", + "wordSecond": "刺猬 (cìwei)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "topo", + "wordSecond": "鼹鼠 (yǎnshǔ)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "castor", + "wordSecond": "海狸 (hǎilí)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mapache", + "wordSecond": "浣熊 (huànxióng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "koala", + "wordSecond": "考拉 (kǎolā)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "canguro", + "wordSecond": "袋鼠 (dàishǔ)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "panda", + "wordSecond": "熊猫 (xióngmāo)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pingüino", + "wordSecond": "企鹅 (qǐ'é)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "foca", + "wordSecond": "海豹 (hǎibào)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "morsa", + "wordSecond": "海象 (hǎixiàng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "camello", + "wordSecond": "骆驼 (luòtuo)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "rinoceronte", + "wordSecond": "犀牛 (xīniú)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hipopótamo", + "wordSecond": "河马 (hémǎ)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "chimpancé", + "wordSecond": "黑猩猩 (hēixīngxing)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "gorila", + "wordSecond": "大猩猩 (dàxīngxing)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "loro", + "wordSecond": "鹦鹉 (yīngwǔ)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "flamenco", + "wordSecond": "火烈鸟 (huǒlièniǎo)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pavo real", + "wordSecond": "孔雀 (kǒngquè)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "avestruz", + "wordSecond": "鸵鸟 (tuóniǎo)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cigüeña", + "wordSecond": "鹳 (guàn)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "colibrí", + "wordSecond": "蜂鸟 (fēngniǎo)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tucán", + "wordSecond": "巨嘴鸟 (jùzuǐniǎo)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "caracol", + "wordSecond": "蜗牛 (wōniú)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "babosa", + "wordSecond": "鼻涕虫 (bítichóng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ciempiés", + "wordSecond": "蜈蚣 (wúgōng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "escorpión", + "wordSecond": "蝎子 (xiēzi)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "grillo", + "wordSecond": "蟋蟀 (xīshuài)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "luciérnaga", + "wordSecond": "萤火虫 (yínghuǒchóng)", + "createdAt": "2026-02-19T13:18:42.639Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_fr_it_A1.json b/output/2026_02_19_animals_wildlife_fr_it_A1.json new file mode 100644 index 0000000..05d238c --- /dev/null +++ b/output/2026_02_19_animals_wildlife_fr_it_A1.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:27:25.168Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chien", + "wordSecond": "cane", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chat", + "wordSecond": "gatto", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "oiseau", + "wordSecond": "uccello", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vache", + "wordSecond": "mucca", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cheval", + "wordSecond": "cavallo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cochon", + "wordSecond": "maiale", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "poule", + "wordSecond": "gallina", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "lion", + "wordSecond": "leone", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tigre", + "wordSecond": "tigre", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "éléphant", + "wordSecond": "elefante", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ours", + "wordSecond": "orso", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "poisson", + "wordSecond": "pesce", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "baleine", + "wordSecond": "balena", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "requin", + "wordSecond": "squalo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "papillon", + "wordSecond": "farfalla", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "abeille", + "wordSecond": "ape", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fourmi", + "wordSecond": "formica", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "souris", + "wordSecond": "topo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "lapin", + "wordSecond": "coniglio", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "serpent", + "wordSecond": "serpente", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "grenouille", + "wordSecond": "rana", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tortue", + "wordSecond": "tartaruga", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "singe", + "wordSecond": "scimmia", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "zèbre", + "wordSecond": "zebra", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "girafe", + "wordSecond": "giraffa", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "hippopotame", + "wordSecond": "ippopotamo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rhinocéros", + "wordSecond": "rinoceronte", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "loup", + "wordSecond": "lupo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "renard", + "wordSecond": "volpe", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cerf", + "wordSecond": "cervo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "écureuil", + "wordSecond": "scoiattolo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chauve-souris", + "wordSecond": "pipistrello", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mouton", + "wordSecond": "pecora", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chèvre", + "wordSecond": "capra", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "âne", + "wordSecond": "asino", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "canard", + "wordSecond": "anatra", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "oie", + "wordSecond": "oca", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dinde", + "wordSecond": "tacchino", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "perroquet", + "wordSecond": "pappagallo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "hamster", + "wordSecond": "criceto", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "coq", + "wordSecond": "gallo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "poussin", + "wordSecond": "pulcino", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "agneau", + "wordSecond": "agnello", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "veau", + "wordSecond": "vitello", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "porcelet", + "wordSecond": "maialino", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "poulain", + "wordSecond": "puledro", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chiot", + "wordSecond": "cucciolo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chaton", + "wordSecond": "gattino", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dauphin", + "wordSecond": "delfino", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "phoque", + "wordSecond": "foca", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "étoile de mer", + "wordSecond": "stella marina", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "crabe", + "wordSecond": "granchio", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "méduse", + "wordSecond": "medusa", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pieuvre", + "wordSecond": "polpo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "calmar", + "wordSecond": "calamaro", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "crevette", + "wordSecond": "gamberetto", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "homard", + "wordSecond": "aragosta", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mouche", + "wordSecond": "mosca", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "moustique", + "wordSecond": "zanzara", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "araignée", + "wordSecond": "ragno", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "scarabée", + "wordSecond": "scarabeo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "coccinelle", + "wordSecond": "coccinella", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "libellule", + "wordSecond": "libellula", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sauterelle", + "wordSecond": "cavalletta", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "criquet", + "wordSecond": "grillo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chenille", + "wordSecond": "bruco", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ver", + "wordSecond": "verme", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "escargot", + "wordSecond": "lumaca", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "koala", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "kangourou", + "wordSecond": "canguro", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pingouin", + "wordSecond": "pinguino", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "autruche", + "wordSecond": "struzzo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "aigle", + "wordSecond": "aquila", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "faucon", + "wordSecond": "falco", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "hibou", + "wordSecond": "gufo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "corbeau", + "wordSecond": "corvo", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cygne", + "wordSecond": "cigno", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "paon", + "wordSecond": "pavone", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "colombe", + "wordSecond": "colomba", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "éléphant de mer", + "wordSecond": "elefante marino", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "loutre", + "wordSecond": "lontra", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "castor", + "wordSecond": "castoro", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "hérisson", + "wordSecond": "riccio", + "createdAt": "2026-02-19T13:27:25.168Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_fr_ja_A1.json b/output/2026_02_19_animals_wildlife_fr_ja_A1.json new file mode 100644 index 0000000..7f5039e --- /dev/null +++ b/output/2026_02_19_animals_wildlife_fr_ja_A1.json @@ -0,0 +1,519 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:27:47.906Z", + "metadata": { + "itemCount": 80, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chien", + "wordSecond": "犬 (いぬ, inu)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chat", + "wordSecond": "猫 (ねこ, neko)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "oiseau", + "wordSecond": "鳥 (とり, tori)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "vache", + "wordSecond": "牛 (うし, ushi)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cheval", + "wordSecond": "馬 (うま, uma)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cochon", + "wordSecond": "豚 (ぶた, buta)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "poule", + "wordSecond": "鶏 (にわとり, niwatori)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "lion", + "wordSecond": "ライオン (らいおん, raion)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tigre", + "wordSecond": "虎 (とら, tora)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "éléphant", + "wordSecond": "象 (ぞう, zou)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ours", + "wordSecond": "熊 (くま, kuma)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "poisson", + "wordSecond": "魚 (さかな, sakana)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "baleine", + "wordSecond": "鯨 (くじら, kujira)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "requin", + "wordSecond": "鮫 (さめ, same)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "papillon", + "wordSecond": "蝶 (ちょう, chou)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "abeille", + "wordSecond": "蜂 (はち, hachi)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "fourmi", + "wordSecond": "蟻 (あり, ari)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "souris", + "wordSecond": "鼠 (ねずみ, nezumi)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "lapin", + "wordSecond": "兎 (うさぎ, usagi)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "singe", + "wordSecond": "猿 (さる, saru)", + "createdAt": "2026-02-19T13:27:47.906Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_fr_ko_A1.json b/output/2026_02_19_animals_wildlife_fr_ko_A1.json new file mode 100644 index 0000000..dee4e31 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_fr_ko_A1.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:28:33.709Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chien", + "wordSecond": "개 (gae)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chat", + "wordSecond": "고양이 (goyangi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "oiseau", + "wordSecond": "새 (sae)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "vache", + "wordSecond": "소 (so)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cheval", + "wordSecond": "말 (mal)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cochon", + "wordSecond": "돼지 (dwaeji)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "poule", + "wordSecond": "닭 (dak)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "lion", + "wordSecond": "사자 (saja)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tigre", + "wordSecond": "호랑이 (horangi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "éléphant", + "wordSecond": "코끼리 (kokkiri)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "ours", + "wordSecond": "곰 (gom)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "poisson", + "wordSecond": "물고기 (mulgogi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "baleine", + "wordSecond": "고래 (gorae)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "requin", + "wordSecond": "상어 (sangeo)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "papillon", + "wordSecond": "나비 (nabi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "abeille", + "wordSecond": "벌 (beol)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "fourmi", + "wordSecond": "개미 (gaemi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "souris", + "wordSecond": "쥐 (jwi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "lapin", + "wordSecond": "토끼 (tokki)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "serpent", + "wordSecond": "뱀 (baem)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "singe", + "wordSecond": "원숭이 (wonsungi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "zèbre", + "wordSecond": "얼룩말 (eollungmal)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "girafe", + "wordSecond": "기린 (girin)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "hippopotame", + "wordSecond": "하마 (hama)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "crocodile", + "wordSecond": "악어 (ageo)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "grenouille", + "wordSecond": "개구리 (gaeguri)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tortue", + "wordSecond": "거북이 (geobugi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "canard", + "wordSecond": "오리 (ori)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "mouton", + "wordSecond": "양 (yang)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chèvre", + "wordSecond": "염소 (yeomso)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "âne", + "wordSecond": "당나귀 (dangnagwi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "coq", + "wordSecond": "수탉 (sutak)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dinde", + "wordSecond": "칠면조 (chilmyeonjo)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "renard", + "wordSecond": "여우 (yeou)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "loup", + "wordSecond": "늑대 (neukdae)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cerf", + "wordSecond": "사슴 (saseum)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sanglier", + "wordSecond": "멧돼지 (metdwaeji)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "écureuil", + "wordSecond": "다람쥐 (daramjwi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chauve-souris", + "wordSecond": "박쥐 (bakjwi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "panda", + "wordSecond": "판다 (panda)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "koala", + "wordSecond": "코알라 (koalla)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "kangourou", + "wordSecond": "캥거루 (kaenggeoru)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pingouin", + "wordSecond": "펭귄 (penggwin)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "phoque", + "wordSecond": "물개 (mulgae)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dauphin", + "wordSecond": "돌고래 (dolgorae)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pieuvre", + "wordSecond": "문어 (muneo)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "méduse", + "wordSecond": "해파리 (haepari)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "crabe", + "wordSecond": "게 (ge)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "crevette", + "wordSecond": "새우 (saeu)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "étoile de mer", + "wordSecond": "불가사리 (bulgasari)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "escargot", + "wordSecond": "달팽이 (dalpaengi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "libellule", + "wordSecond": "잠자리 (jamjari)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "mouche", + "wordSecond": "파리 (pari)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "moustique", + "wordSecond": "모기 (mogi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "araignée", + "wordSecond": "거미 (geomi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "coccinelle", + "wordSecond": "무당벌레 (mudangbeolle)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chenille", + "wordSecond": "애벌레 (aebeolle)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "ver", + "wordSecond": "벌레 (beolle)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cigale", + "wordSecond": "매미 (maemi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sauterelle", + "wordSecond": "메뚜기 (mettugi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "hamster", + "wordSecond": "햄스터 (haemseuteo)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "perroquet", + "wordSecond": "앵무새 (aengmusae)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "poisson rouge", + "wordSecond": "금붕어 (geumbungeo)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tortue de mer", + "wordSecond": "바다거북 (badageobuk)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "poulpe", + "wordSecond": "낙지 (nakji)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "calmar", + "wordSecond": "오징어 (ojingeo)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "anguille", + "wordSecond": "장어 (jangeo)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "saumon", + "wordSecond": "연어 (yeoneo)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "thon", + "wordSecond": "참치 (chamchi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "morue", + "wordSecond": "대구 (daegu)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "hareng", + "wordSecond": "청어 (cheongeo)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "anchois", + "wordSecond": "멸치 (myeolchi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pie", + "wordSecond": "까치 (kkachi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "corbeau", + "wordSecond": "까마귀 (kkamagwi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "hibou", + "wordSecond": "부엉이 (bueongi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "faucon", + "wordSecond": "매 (mae)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "aigle", + "wordSecond": "독수리 (doksuri)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "vautour", + "wordSecond": "독수리 (doksuri)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cygne", + "wordSecond": "백조 (baekjo)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "flamant rose", + "wordSecond": "홍학 (honghak)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pélican", + "wordSecond": "펠리컨 (pellikeon)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "autruche", + "wordSecond": "타조 (tajo)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "paon", + "wordSecond": "공작 (gongjak)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "colombe", + "wordSecond": "비둘기 (bidulgi)", + "createdAt": "2026-02-19T13:28:33.709Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_fr_pl_A1.json b/output/2026_02_19_animals_wildlife_fr_pl_A1.json new file mode 100644 index 0000000..6871d17 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_fr_pl_A1.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:28:50.648Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chien", + "wordSecond": "pies", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chat", + "wordSecond": "kot", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "oiseau", + "wordSecond": "ptak", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "vache", + "wordSecond": "krowa", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cheval", + "wordSecond": "koń", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cochon", + "wordSecond": "świnia", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "poule", + "wordSecond": "kura", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "lion", + "wordSecond": "lew", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "tigre", + "wordSecond": "tygrys", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "éléphant", + "wordSecond": "słoń", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "ours", + "wordSecond": "niedźwiedź", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "poisson", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "baleine", + "wordSecond": "wieloryb", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "requin", + "wordSecond": "rekin", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "papillon", + "wordSecond": "motyl", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "abeille", + "wordSecond": "pszczoła", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "fourmi", + "wordSecond": "mrówka", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "souris", + "wordSecond": "mysz", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "lapin", + "wordSecond": "królik", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "hamster", + "wordSecond": "chomik", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "perroquet", + "wordSecond": "papuga", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "serpent", + "wordSecond": "wąż", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "tortue", + "wordSecond": "żółw", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "grenouille", + "wordSecond": "żaba", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "canard", + "wordSecond": "kaczka", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "oie", + "wordSecond": "gęś", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "mouton", + "wordSecond": "owca", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chèvre", + "wordSecond": "koza", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "âne", + "wordSecond": "osioł", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "coq", + "wordSecond": "kogut", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "singe", + "wordSecond": "małpa", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "girafe", + "wordSecond": "żyrafa", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "zèbre", + "wordSecond": "zebra", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "hippopotame", + "wordSecond": "hipopotam", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rhinocéros", + "wordSecond": "nosorożec", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "kangourou", + "wordSecond": "kangur", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "loup", + "wordSecond": "wilk", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "renard", + "wordSecond": "lis", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "écureuil", + "wordSecond": "wiewiórka", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cerf", + "wordSecond": "jeleń", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sanglier", + "wordSecond": "dzik", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chauve-souris", + "wordSecond": "nietoperz", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dauphin", + "wordSecond": "delfin", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "phoque", + "wordSecond": "foka", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pieuvre", + "wordSecond": "ośmiornica", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "méduse", + "wordSecond": "meduza", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "étoile de mer", + "wordSecond": "rozgwiazda", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "crabe", + "wordSecond": "krab", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "crevette", + "wordSecond": "krewetka", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "mouche", + "wordSecond": "mucha", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "moustique", + "wordSecond": "komar", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "araignée", + "wordSecond": "pająk", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "coccinelle", + "wordSecond": "biedronka", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "libellule", + "wordSecond": "ważka", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chenille", + "wordSecond": "gąsienica", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "escargot", + "wordSecond": "ślimak", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "ver", + "wordSecond": "robak", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "poule", + "wordSecond": "kura", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "poussin", + "wordSecond": "kurczak", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "caneton", + "wordSecond": "kaczątko", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "agneau", + "wordSecond": "jagnię", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "veau", + "wordSecond": "cielę", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "porcelet", + "wordSecond": "prosię", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chiot", + "wordSecond": "szczeniak", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chaton", + "wordSecond": "kociak", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "lapereau", + "wordSecond": "króliczek", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "tigreau", + "wordSecond": "tygrysek", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "lionceau", + "wordSecond": "lwiątko", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "éléphanteau", + "wordSecond": "słoniątko", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "ourson", + "wordSecond": "niedźwiadek", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "renardeau", + "wordSecond": "lisek", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "louveteau", + "wordSecond": "wilczek", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "oiseau", + "wordSecond": "ptak", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "aigle", + "wordSecond": "orzeł", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "corbeau", + "wordSecond": "kruk", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pigeon", + "wordSecond": "gołąb", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cygne", + "wordSecond": "łabędź", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "hibou", + "wordSecond": "sowa", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pie", + "wordSecond": "sroka", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "moineau", + "wordSecond": "wróbel", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "hirondelle", + "wordSecond": "jaskółka", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "colombe", + "wordSecond": "gołębica", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "perdrix", + "wordSecond": "kuropatwa", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "faisan", + "wordSecond": "bażant", + "createdAt": "2026-02-19T13:28:50.648Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_fr_zh_A1.json b/output/2026_02_19_animals_wildlife_fr_zh_A1.json new file mode 100644 index 0000000..7dddd4d --- /dev/null +++ b/output/2026_02_19_animals_wildlife_fr_zh_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:28:09.956Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chien", + "wordSecond": "狗 (gǒu)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chat", + "wordSecond": "猫 (māo)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "oiseau", + "wordSecond": "鸟 (niǎo)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vache", + "wordSecond": "牛 (niú)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cheval", + "wordSecond": "马 (mǎ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cochon", + "wordSecond": "猪 (zhū)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "poule", + "wordSecond": "鸡 (jī)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lion", + "wordSecond": "狮子 (shīzi)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tigre", + "wordSecond": "老虎 (lǎohǔ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "éléphant", + "wordSecond": "大象 (dàxiàng)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ours", + "wordSecond": "熊 (xióng)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "poisson", + "wordSecond": "鱼 (yú)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "baleine", + "wordSecond": "鲸鱼 (jīngyú)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "requin", + "wordSecond": "鲨鱼 (shāyú)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "papillon", + "wordSecond": "蝴蝶 (húdié)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "abeille", + "wordSecond": "蜜蜂 (mìfēng)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fourmi", + "wordSecond": "蚂蚁 (mǎyǐ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "souris", + "wordSecond": "老鼠 (lǎoshǔ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lapin", + "wordSecond": "兔子 (tùzi)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "serpent", + "wordSecond": "蛇 (shé)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "singe", + "wordSecond": "猴子 (hóuzi)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chien", + "wordSecond": "狗 (gǒu)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chat", + "wordSecond": "猫 (māo)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "oiseau", + "wordSecond": "鸟 (niǎo)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vache", + "wordSecond": "牛 (niú)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cheval", + "wordSecond": "马 (mǎ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cochon", + "wordSecond": "猪 (zhū)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "poule", + "wordSecond": "鸡 (jī)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "canard", + "wordSecond": "鸭子 (yāzi)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mouton", + "wordSecond": "羊 (yáng)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chèvre", + "wordSecond": "山羊 (shānyáng)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "âne", + "wordSecond": "驴 (lǘ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "coq", + "wordSecond": "公鸡 (gōngjī)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lion", + "wordSecond": "狮子 (shīzi)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tigre", + "wordSecond": "老虎 (lǎohǔ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "éléphant", + "wordSecond": "大象 (dàxiàng)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ours", + "wordSecond": "熊 (xióng)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "girafe", + "wordSecond": "长颈鹿 (chángjǐnglù)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "zèbre", + "wordSecond": "斑马 (bānmǎ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "hippopotame", + "wordSecond": "河马 (hémǎ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "rhinocéros", + "wordSecond": "犀牛 (xīniú)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "kangourou", + "wordSecond": "袋鼠 (dàishǔ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "panda", + "wordSecond": "熊猫 (xióngmāo)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "loup", + "wordSecond": "狼 (láng)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "renard", + "wordSecond": "狐狸 (húli)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cerf", + "wordSecond": "鹿 (lù)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "écureuil", + "wordSecond": "松鼠 (sōngshǔ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tortue", + "wordSecond": "乌龟 (wūguī)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "grenouille", + "wordSecond": "青蛙 (qīngwā)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "crocodile", + "wordSecond": "鳄鱼 (èyú)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "poisson", + "wordSecond": "鱼 (yú)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "baleine", + "wordSecond": "鲸鱼 (jīngyú)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "requin", + "wordSecond": "鲨鱼 (shāyú)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "dauphin", + "wordSecond": "海豚 (hǎitún)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pieuvre", + "wordSecond": "章鱼 (zhāngyú)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "méduse", + "wordSecond": "水母 (shuǐmǔ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "crabe", + "wordSecond": "螃蟹 (pángxiè)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "crevette", + "wordSecond": "虾 (xiā)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "étoile de mer", + "wordSecond": "海星 (hǎixīng)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "papillon", + "wordSecond": "蝴蝶 (húdié)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "abeille", + "wordSecond": "蜜蜂 (mìfēng)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fourmi", + "wordSecond": "蚂蚁 (mǎyǐ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mouche", + "wordSecond": "苍蝇 (cāngying)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "moustique", + "wordSecond": "蚊子 (wénzi)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "araignée", + "wordSecond": "蜘蛛 (zhīzhū)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "scorpion", + "wordSecond": "蝎子 (xiēzi)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "coccinelle", + "wordSecond": "瓢虫 (piáochóng)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "libellule", + "wordSecond": "蜻蜓 (qīngtíng)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chenille", + "wordSecond": "毛毛虫 (máomáochóng)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ver", + "wordSecond": "虫子 (chóngzi)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "escargot", + "wordSecond": "蜗牛 (wōniú)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "perroquet", + "wordSecond": "鹦鹉 (yīngwǔ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "hamster", + "wordSecond": "仓鼠 (cāngshǔ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cochon d'Inde", + "wordSecond": "豚鼠 (túnshǔ)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "poisson rouge", + "wordSecond": "金鱼 (jīnyú)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tortue", + "wordSecond": "乌龟 (wūguī)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lézard", + "wordSecond": "蜥蜴 (xīyì)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chameau", + "wordSecond": "骆驼 (luòtuo)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "autruche", + "wordSecond": "鸵鸟 (tuóniǎo)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pingouin", + "wordSecond": "企鹅 (qǐ'é)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "phoque", + "wordSecond": "海豹 (hǎibào)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "castor", + "wordSecond": "海狸 (hǎilí)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tatou", + "wordSecond": "犰狳 (qiúyú)", + "createdAt": "2026-02-19T13:28:09.956Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_it_ja_A1.json b/output/2026_02_19_animals_wildlife_it_ja_A1.json new file mode 100644 index 0000000..89250a5 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_it_ja_A1.json @@ -0,0 +1,1085 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:30:30.713Z", + "metadata": { + "itemCount": 82, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cane", + "wordSecond": "犬 (いぬ, inu)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "gatto", + "wordSecond": "猫 (ねこ, neko)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "uccello", + "wordSecond": "鳥 (とり, tori)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pesce", + "wordSecond": "魚 (さかな, sakana)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mucca", + "wordSecond": "牛 (うし, ushi)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cavallo", + "wordSecond": "馬 (うま, uma)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "maiale", + "wordSecond": "豚 (ぶた, buta)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "gallina", + "wordSecond": "鶏 (にわとり, niwatori)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "leone", + "wordSecond": "ライオン (らいおん, raion)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tigre", + "wordSecond": "虎 (とら, tora)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "elefante", + "wordSecond": "象 (ぞう, zou)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "orso", + "wordSecond": "熊 (くま, kuma)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "balena", + "wordSecond": "鯨 (くじら, kujira)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "squalo", + "wordSecond": "鮫 (さめ, same)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "farfalla", + "wordSecond": "蝶 (ちょう, chou)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ape", + "wordSecond": "蜂 (はち, hachi)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "formica", + "wordSecond": "蟻 (あり, ari)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pecora", + "wordSecond": "羊 (ひつじ, hitsuji)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "capra", + "wordSecond": "山羊 (やぎ, yagi)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "anatra", + "wordSecond": "鴨 (かも, kamo)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "coniglio", + "wordSecond": "兎 (うさぎ, usagi)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "topo", + "wordSecond": "鼠 (ねずみ, nezumi)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "scimmia", + "wordSecond": "猿 (さる, saru)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lupo", + "wordSecond": "狼 (おおかみ, ookami)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "volpe", + "wordSecond": "狐 (きつね, kitsune)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cervo", + "wordSecond": "鹿 (しか, shika)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "giraffa", + "wordSecond": "キリン (きりん, kirin)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "zebra", + "wordSecond": "シマウマ (しまうま, shimauma)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cammello", + "wordSecond": "ラクダ (らくだ, rakuda)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pinguino", + "wordSecond": "ペンギン (ぺんぎん, pengin)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "rana", + "wordSecond": "蛙 (かえる, kaeru)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "serpente", + "wordSecond": "蛇 (へび, hebi)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tartaruga", + "wordSecond": "亀 (かめ, kame)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "coccodrillo", + "wordSecond": "ワニ (わに, wani)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "polpo", + "wordSecond": "蛸 (たこ, tako)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "granchio", + "wordSecond": "蟹 (かに, kani)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "gambero", + "wordSecond": "海老 (えび, ebi)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "medusa", + "wordSecond": "海月 (くらげ, kurage)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "delfino", + "wordSecond": "海豚 (いるか, iruka)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "foca", + "wordSecond": "アザラシ (あざらし, azarashi)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ippopotamo", + "wordSecond": "カバ (かば, kaba)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "rinoceronte", + "wordSecond": "サイ (さい, sai)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "canguro", + "wordSecond": "カンガルー (かんがるー, kangaruu)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "koala", + "wordSecond": "コアラ (こあら, koara)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "panda", + "wordSecond": "パンダ (ぱんだ, panda)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "procione", + "wordSecond": "アライグマ (あらいぐま, araiguma)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "castoro", + "wordSecond": "ビーバー (びーばー, biibaa)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "scoiattolo", + "wordSecond": "栗鼠 (りす, risu)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "talpa", + "wordSecond": "土竜 (もぐら, mogura)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "riccio", + "wordSecond": "針鼠 (はりねずみ, harinezumi)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pipistrello", + "wordSecond": "蝙蝠 (こうもり, koumori)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "civetta", + "wordSecond": "梟 (ふくろう, fukurou)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "aquila", + "wordSecond": "鷲 (わし, washi)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "falco", + "wordSecond": "鷹 (たか, taka)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "corvo", + "wordSecond": "烏 (からす, karasu)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "passero", + "wordSecond": "雀 (すずめ, suzume)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "piccione", + "wordSecond": "鳩 (はと, hato)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cigno", + "wordSecond": "白鳥 (はくちょう, hakuchou)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "oca", + "wordSecond": "鵞鳥 (がちょう, gachou)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pavone", + "wordSecond": "孔雀 (くじゃく, kujaku)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pappagallo", + "wordSecond": "鸚鵡 (おうむ, oumu)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "colibrì", + "wordSecond": "ハチドリ (はちどり, hachidori)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cicala", + "wordSecond": "蝉 (せみ, semi)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "grillo", + "wordSecond": "蟋蟀 (こおろぎ, koorogi)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "libellula", + "wordSecond": "蜻蛉 (とんぼ, tonbo)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lucertola", + "wordSecond": "蜥蜴 (とかげ, tokage)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "iguana", + "wordSecond": "イグアナ (いぐあな, iguana)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "camaleonte", + "wordSecond": "カメレオン (かめれおん, kamereon)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "geco", + "wordSecond": "ヤモリ (やもり, yamori)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lumaca", + "wordSecond": "蝸牛 (かたつむり, katatsumuri)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "chiocciola", + "wordSecond": "巻貝 (まきがい, makigai)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ostrica", + "wordSecond": "牡蠣 (かき, kaki)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "vongola", + "wordSecond": "蛤 (はまぐり, hamaguri)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "aragosta", + "wordSecond": "伊勢海老 (いせえび, iseebi)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "calamaro", + "wordSecond": "烏賊 (いか, ika)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "seppia", + "wordSecond": "墨烏賊 (すみいか, sumiika)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "stella marina", + "wordSecond": "海星 (ひとで, hitode)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "riccio di mare", + "wordSecond": "雲丹 (うに, uni)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cavalluccio marino", + "wordSecond": "竜の落とし子 (たつのおとしご, tatsunootoshigo)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pesce pagliaccio", + "wordSecond": "クマノミ (くまのみ, kumanomi)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "salmone", + "wordSecond": "鮭 (さけ, sake)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tonno", + "wordSecond": "鮪 (まぐろ, maguro)", + "createdAt": "2026-02-19T13:30:30.713Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_it_ko_A1.json b/output/2026_02_19_animals_wildlife_it_ko_A1.json new file mode 100644 index 0000000..cee1ac6 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_it_ko_A1.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:31:17.531Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cane", + "wordSecond": "개 (gae)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "gatto", + "wordSecond": "고양이 (goyangi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "uccello", + "wordSecond": "새 (sae)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pesce", + "wordSecond": "물고기 (mulgogi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mucca", + "wordSecond": "소 (so)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cavallo", + "wordSecond": "말 (mal)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "maiale", + "wordSecond": "돼지 (dwaeji)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "gallina", + "wordSecond": "닭 (dak)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "leone", + "wordSecond": "사자 (saja)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tigre", + "wordSecond": "호랑이 (horangi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "elefante", + "wordSecond": "코끼리 (kokkiri)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "orso", + "wordSecond": "곰 (gom)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "balena", + "wordSecond": "고래 (gorae)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "squalo", + "wordSecond": "상어 (sangeo)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "farfalla", + "wordSecond": "나비 (nabi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ape", + "wordSecond": "벌 (beol)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "formica", + "wordSecond": "개미 (gaemi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "coniglio", + "wordSecond": "토끼 (tokki)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "topo", + "wordSecond": "쥐 (jwi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "serpente", + "wordSecond": "뱀 (baem)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "rana", + "wordSecond": "개구리 (gaeguri)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lupo", + "wordSecond": "늑대 (neukdae)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "volpe", + "wordSecond": "여우 (yeou)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "scimmia", + "wordSecond": "원숭이 (wonsungi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cammello", + "wordSecond": "낙타 (nakta)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "giraffa", + "wordSecond": "기린 (girin)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "zebra", + "wordSecond": "얼룩말 (eollungmal)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ippopotamo", + "wordSecond": "하마 (hama)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "rinoceronte", + "wordSecond": "코뿔소 (koppulso)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "coccodrillo", + "wordSecond": "악어 (ageo)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pinguino", + "wordSecond": "펭귄 (penggwin)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "aquila", + "wordSecond": "독수리 (doksuri)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "civetta", + "wordSecond": "올빼미 (olppaemi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "piccione", + "wordSecond": "비둘기 (bidulgi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "anatra", + "wordSecond": "오리 (ori)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cigno", + "wordSecond": "백조 (baekjo)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pavone", + "wordSecond": "공작 (gongjak)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "corvo", + "wordSecond": "까마귀 (kkamagwi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "gabbiano", + "wordSecond": "갈매기 (galmaegi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "falco", + "wordSecond": "매 (mae)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tartaruga", + "wordSecond": "거북이 (geobugi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lucertola", + "wordSecond": "도마뱀 (domabaem)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "canguro", + "wordSecond": "캥거루 (kaenggeoru)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "koala", + "wordSecond": "코알라 (koalla)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "panda", + "wordSecond": "판다 (panda)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "procione", + "wordSecond": "너구리 (neoguri)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "castoro", + "wordSecond": "비버 (bibeo)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "istrice", + "wordSecond": "고슴도치 (goseumdochi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "scoiattolo", + "wordSecond": "다람쥐 (daramjwi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "talpa", + "wordSecond": "두더지 (dudeoji)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "riccio", + "wordSecond": "고슴도치 (goseumdochi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pipistrello", + "wordSecond": "박쥐 (bakjwi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "delfino", + "wordSecond": "돌고래 (dolgorae)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "foca", + "wordSecond": "물개 (mulgae)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "polpo", + "wordSecond": "문어 (muneo)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "medusa", + "wordSecond": "해파리 (haepari)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "granchio", + "wordSecond": "게 (ge)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "aragosta", + "wordSecond": "바닷가재 (badatgajae)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "gambero", + "wordSecond": "새우 (saeu)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ostrica", + "wordSecond": "굴 (gul)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "calamaro", + "wordSecond": "오징어 (ojingeo)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "stella marina", + "wordSecond": "불가사리 (bulgasari)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cavalluccio marino", + "wordSecond": "해마 (haema)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lumaca", + "wordSecond": "달팽이 (dalpaengi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "verme", + "wordSecond": "벌레 (beolle)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ragno", + "wordSecond": "거미 (geomi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "scarafaggio", + "wordSecond": "바퀴벌레 (bakwibeolle)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mosca", + "wordSecond": "파리 (pari)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "zanzara", + "wordSecond": "모기 (mogi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "libellula", + "wordSecond": "잠자리 (jamjari)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "grillo", + "wordSecond": "귀뚜라미 (gwitturami)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cicala", + "wordSecond": "매미 (maemi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "coccinella", + "wordSecond": "무당벌레 (mudangbeolle)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lombrico", + "wordSecond": "지렁이 (jireongi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bruco", + "wordSecond": "애벌레 (aebeolle)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cavalletta", + "wordSecond": "메뚜기 (mettugi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mantide", + "wordSecond": "사마귀 (samagwi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "scorpione", + "wordSecond": "전갈 (jeongal)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "millepiedi", + "wordSecond": "지네 (jine)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "porcospino", + "wordSecond": "고슴도치 (goseumdochi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "asino", + "wordSecond": "당나귀 (dangnagwi)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "capra", + "wordSecond": "염소 (yeomso)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pecora", + "wordSecond": "양 (yang)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "toro", + "wordSecond": "황소 (hwangso)", + "createdAt": "2026-02-19T13:31:17.531Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_it_pl_A1.json b/output/2026_02_19_animals_wildlife_it_pl_A1.json new file mode 100644 index 0000000..cf08fbd --- /dev/null +++ b/output/2026_02_19_animals_wildlife_it_pl_A1.json @@ -0,0 +1,1189 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:31:36.702Z", + "metadata": { + "itemCount": 90, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cane", + "wordSecond": "pies", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gatto", + "wordSecond": "kot", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "uccello", + "wordSecond": "ptak", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pesce", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mucca", + "wordSecond": "krowa", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cavallo", + "wordSecond": "koń", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "maiale", + "wordSecond": "świnia", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gallina", + "wordSecond": "kura", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gallo", + "wordSecond": "kogut", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pecora", + "wordSecond": "owca", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "capra", + "wordSecond": "koza", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "anatra", + "wordSecond": "kaczka", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "coniglio", + "wordSecond": "królik", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "leone", + "wordSecond": "lew", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tigre", + "wordSecond": "tygrys", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "elefante", + "wordSecond": "słoń", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "orso", + "wordSecond": "niedźwiedź", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "scimmia", + "wordSecond": "małpa", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "zebra", + "wordSecond": "zebra", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "giraffa", + "wordSecond": "żyrafa", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "coccodrillo", + "wordSecond": "krokodyl", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "serpente", + "wordSecond": "wąż", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "rana", + "wordSecond": "żaba", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "topo", + "wordSecond": "mysz", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "volpe", + "wordSecond": "lis", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lupo", + "wordSecond": "wilk", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cervo", + "wordSecond": "jeleń", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cammello", + "wordSecond": "wielbłąd", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ippopotamo", + "wordSecond": "hipopotam", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "rinoceronte", + "wordSecond": "nosorożec", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "balena", + "wordSecond": "wieloryb", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "squalo", + "wordSecond": "rekin", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "delfino", + "wordSecond": "delfin", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "polpo", + "wordSecond": "ośmiornica", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "medusa", + "wordSecond": "meduza", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "granchio", + "wordSecond": "krab", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gambero", + "wordSecond": "krewetka", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "stella marina", + "wordSecond": "rozgwiazda", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tartaruga", + "wordSecond": "żółw", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "foca", + "wordSecond": "foka", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pinguino", + "wordSecond": "pingwin", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "aquila", + "wordSecond": "orzeł", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "falco", + "wordSecond": "sokół", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gufo", + "wordSecond": "sowa", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cigno", + "wordSecond": "łabędź", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pappagallo", + "wordSecond": "papuga", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "colomba", + "wordSecond": "gołąb", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "corvo", + "wordSecond": "kruk", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "passero", + "wordSecond": "wróbel", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "civetta", + "wordSecond": "syczek", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "farfalla", + "wordSecond": "motyl", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ape", + "wordSecond": "pszczoła", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "formica", + "wordSecond": "mrówka", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mosca", + "wordSecond": "mucha", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "zanzara", + "wordSecond": "komar", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ragno", + "wordSecond": "pająk", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "scarafaggio", + "wordSecond": "karaluch", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "coccinella", + "wordSecond": "biedronka", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "grillo", + "wordSecond": "świerszcz", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lucertola", + "wordSecond": "jaszczurka", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "criceto", + "wordSecond": "chomik", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "criceto dorato", + "wordSecond": "chomik syryjski", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "porcellino d'India", + "wordSecond": "świnka morska", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "furetto", + "wordSecond": "fretka", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "criceto russo", + "wordSecond": "chomik dżungarski", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pesce rosso", + "wordSecond": "złota rybka", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "canarino", + "wordSecond": "kanarek", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pappagallino", + "wordSecond": "papużka falista", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tartaruga d'acqua", + "wordSecond": "żółw wodny", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "coniglio nano", + "wordSecond": "królik miniaturowy", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "serpente domestico", + "wordSecond": "wąż domowy", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "geco", + "wordSecond": "gekon", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "iguana", + "wordSecond": "iguana", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cavallo pony", + "wordSecond": "kucyk", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "asino", + "wordSecond": "osioł", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tacchino", + "wordSecond": "indyk", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "oca", + "wordSecond": "gęś", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pavone", + "wordSecond": "paw", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cigno nero", + "wordSecond": "łabędź czarny", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "airone", + "wordSecond": "czapla", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pellicano", + "wordSecond": "pelikan", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "fenicottero", + "wordSecond": "flaming", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "struzzo", + "wordSecond": "struś", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "emu", + "wordSecond": "emu", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "kiwi", + "wordSecond": "kiwi", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pipistrello", + "wordSecond": "nietoperz", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "talpa", + "wordSecond": "kret", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "riccio", + "wordSecond": "jeż", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "scoiattolo", + "wordSecond": "wiewiórka", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "castoro", + "wordSecond": "bóbr", + "createdAt": "2026-02-19T13:31:36.702Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_it_zh_A1.json b/output/2026_02_19_animals_wildlife_it_zh_A1.json new file mode 100644 index 0000000..eb4b82c --- /dev/null +++ b/output/2026_02_19_animals_wildlife_it_zh_A1.json @@ -0,0 +1,1072 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:30:52.987Z", + "metadata": { + "itemCount": 81, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cane", + "wordSecond": "狗 (gǒu)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "gatto", + "wordSecond": "猫 (māo)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "uccello", + "wordSecond": "鸟 (niǎo)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pesce", + "wordSecond": "鱼 (yú)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mucca", + "wordSecond": "牛 (niú)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cavallo", + "wordSecond": "马 (mǎ)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "maiale", + "wordSecond": "猪 (zhū)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "gallina", + "wordSecond": "鸡 (jī)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pecora", + "wordSecond": "羊 (yáng)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "anatra", + "wordSecond": "鸭 (yā)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "leone", + "wordSecond": "狮子 (shīzi)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tigre", + "wordSecond": "老虎 (lǎohǔ)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "elefante", + "wordSecond": "大象 (dàxiàng)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "orso", + "wordSecond": "熊 (xióng)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "scimmia", + "wordSecond": "猴子 (hóuzi)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "giraffa", + "wordSecond": "长颈鹿 (chángjǐnglù)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "zebra", + "wordSecond": "斑马 (bānmǎ)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lupo", + "wordSecond": "狼 (láng)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "volpe", + "wordSecond": "狐狸 (húli)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "coniglio", + "wordSecond": "兔子 (tùzi)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cervo", + "wordSecond": "鹿 (lù)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "topo", + "wordSecond": "老鼠 (lǎoshǔ)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "serpente", + "wordSecond": "蛇 (shé)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "rana", + "wordSecond": "青蛙 (qīngwā)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tartaruga", + "wordSecond": "乌龟 (wūguī)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "coccodrillo", + "wordSecond": "鳄鱼 (èyú)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "balena", + "wordSecond": "鲸鱼 (jīngyú)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "squalo", + "wordSecond": "鲨鱼 (shāyú)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "delfino", + "wordSecond": "海豚 (hǎitún)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "polpo", + "wordSecond": "章鱼 (zhāngyú)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "granchio", + "wordSecond": "螃蟹 (pángxiè)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "gambero", + "wordSecond": "虾 (xiā)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "medusa", + "wordSecond": "水母 (shuǐmǔ)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "stella marina", + "wordSecond": "海星 (hǎixīng)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "farfalla", + "wordSecond": "蝴蝶 (húdié)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ape", + "wordSecond": "蜜蜂 (mìfēng)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "formica", + "wordSecond": "蚂蚁 (mǎyǐ)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mosca", + "wordSecond": "苍蝇 (cāngying)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "zanzara", + "wordSecond": "蚊子 (wénzi)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ragno", + "wordSecond": "蜘蛛 (zhīzhū)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lucertola", + "wordSecond": "蜥蜴 (xīyì)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cammello", + "wordSecond": "骆驼 (luòtuo)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "panda", + "wordSecond": "熊猫 (xióngmāo)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "koala", + "wordSecond": "考拉 (kǎolā)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pinguino", + "wordSecond": "企鹅 (qǐ'é)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "aquila", + "wordSecond": "鹰 (yīng)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "corvo", + "wordSecond": "乌鸦 (wūyā)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "piccione", + "wordSecond": "鸽子 (gēzi)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cigno", + "wordSecond": "天鹅 (tiān'é)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pappagallo", + "wordSecond": "鹦鹉 (yīngwǔ)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "civetta", + "wordSecond": "猫头鹰 (māotóuyīng)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tacchino", + "wordSecond": "火鸡 (huǒjī)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "asino", + "wordSecond": "驴 (lǘ)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "capra", + "wordSecond": "山羊 (shānyáng)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "maialino", + "wordSecond": "小猪 (xiǎo zhū)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "vitello", + "wordSecond": "小牛 (xiǎo niú)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pulcino", + "wordSecond": "小鸡 (xiǎo jī)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "anatroccolo", + "wordSecond": "小鸭 (xiǎo yā)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "agnello", + "wordSecond": "小羊 (xiǎo yáng)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cucciolo", + "wordSecond": "小狗 (xiǎo gǒu)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "gattino", + "wordSecond": "小猫 (xiǎo māo)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "criceto", + "wordSecond": "仓鼠 (cāngshǔ)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cavia", + "wordSecond": "豚鼠 (túnshǔ)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "furetto", + "wordSecond": "雪貂 (xuědiāo)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pesce rosso", + "wordSecond": "金鱼 (jīnyú)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cavalluccio marino", + "wordSecond": "海马 (hǎimǎ)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lumaca", + "wordSecond": "蜗牛 (wōniú)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "verme", + "wordSecond": "虫子 (chóngzi)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "grillo", + "wordSecond": "蟋蟀 (xīshuài)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "coccinella", + "wordSecond": "瓢虫 (piáochóng)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "libellula", + "wordSecond": "蜻蜓 (qīngtíng)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "falena", + "wordSecond": "蛾子 (ézi)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "scorpione", + "wordSecond": "蝎子 (xiēzi)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pipistrello", + "wordSecond": "蝙蝠 (biānfú)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "procione", + "wordSecond": "浣熊 (huànxióng)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "istrice", + "wordSecond": "豪猪 (háozhū)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "castoro", + "wordSecond": "河狸 (hélí)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "scoiattolo", + "wordSecond": "松鼠 (sōngshǔ)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "talpa", + "wordSecond": "鼹鼠 (yǎnshǔ)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "riccio", + "wordSecond": "刺猬 (cìwei)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "canguro", + "wordSecond": "袋鼠 (dàishǔ)", + "createdAt": "2026-02-19T13:30:52.987Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_ja_ko_A1.json b/output/2026_02_19_animals_wildlife_ja_ko_A1.json new file mode 100644 index 0000000..3b7df53 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_ja_ko_A1.json @@ -0,0 +1,1072 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:32:44.480Z", + "metadata": { + "itemCount": 81, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "犬 (いぬ, inu)", + "wordSecond": "개 (gae)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "猫 (ねこ, neko)", + "wordSecond": "고양이 (goyangi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鳥 (とり, tori)", + "wordSecond": "새 (sae)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "牛 (うし, ushi)", + "wordSecond": "소 (so)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "馬 (うま, uma)", + "wordSecond": "말 (mal)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "豚 (ぶた, buta)", + "wordSecond": "돼지 (dwaeji)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鶏 (にわとり, niwatori)", + "wordSecond": "닭 (dak)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ライオン (らいおん, raion)", + "wordSecond": "사자 (saja)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "虎 (とら, tora)", + "wordSecond": "호랑이 (horangi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "象 (ぞう, zou)", + "wordSecond": "코끼리 (kokkiri)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "熊 (くま, kuma)", + "wordSecond": "곰 (gom)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "魚 (さかな, sakana)", + "wordSecond": "물고기 (mulgogi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鯨 (くじら, kujira)", + "wordSecond": "고래 (gorae)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鮫 (さめ, same)", + "wordSecond": "상어 (sangeo)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "蝶 (ちょう, chou)", + "wordSecond": "나비 (nabi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "蜂 (はち, hachi)", + "wordSecond": "벌 (beol)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "蟻 (あり, ari)", + "wordSecond": "개미 (gaemi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "羊 (ひつじ, hitsuji)", + "wordSecond": "양 (yang)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "山羊 (やぎ, yagi)", + "wordSecond": "염소 (yeomso)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鴨 (かも, kamo)", + "wordSecond": "오리 (ori)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "兎 (うさぎ, usagi)", + "wordSecond": "토끼 (tokki)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鼠 (ねずみ, nezumi)", + "wordSecond": "쥐 (jwi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "狐 (きつね, kitsune)", + "wordSecond": "여우 (yeou)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "狼 (おおかみ, ookami)", + "wordSecond": "늑대 (neukdae)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鹿 (しか, shika)", + "wordSecond": "사슴 (saseum)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "猿 (さる, saru)", + "wordSecond": "원숭이 (wonsungi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "蛇 (へび, hebi)", + "wordSecond": "뱀 (baem)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "亀 (かめ, kame)", + "wordSecond": "거북이 (geobugi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "蛙 (かえる, kaeru)", + "wordSecond": "개구리 (gaeguri)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "蜘蛛 (くも, kumo)", + "wordSecond": "거미 (geomi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "蟹 (かに, kani)", + "wordSecond": "게 (ge)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "烏賊 (いか, ika)", + "wordSecond": "오징어 (ojingeo)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "海豚 (いるか, iruka)", + "wordSecond": "돌고래 (dolgorae)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "海豹 (あざらし, azarashi)", + "wordSecond": "물개 (mulgae)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "海獺 (らっこ, rakko)", + "wordSecond": "해달 (haedal)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "駱駝 (らくだ, rakuda)", + "wordSecond": "낙타 (nakta)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "麒麟 (きりん, kirin)", + "wordSecond": "기린 (girin)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "熊猫 (ぱんだ, panda)", + "wordSecond": "판다 (panda)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鰐 (わに, wani)", + "wordSecond": "악어 (ageo)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "河馬 (かば, kaba)", + "wordSecond": "하마 (hama)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "犀 (さい, sai)", + "wordSecond": "코뿔소 (koppulso)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "孔雀 (くじゃく, kujaku)", + "wordSecond": "공작 (gongjak)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鳩 (はと, hato)", + "wordSecond": "비둘기 (bidulgi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鷲 (わし, washi)", + "wordSecond": "독수리 (doksuri)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鷹 (たか, taka)", + "wordSecond": "매 (mae)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "梟 (ふくろう, fukurou)", + "wordSecond": "부엉이 (bueongi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "雀 (すずめ, suzume)", + "wordSecond": "참새 (chamsae)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "烏 (からす, karasu)", + "wordSecond": "까마귀 (kkamagwi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "燕 (つばめ, tsubame)", + "wordSecond": "제비 (jebi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "白鳥 (はくちょう, hakuchou)", + "wordSecond": "백조 (baekjo)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鴨 (かも, kamo)", + "wordSecond": "오리 (ori)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "七面鳥 (しちめんちょう, shichimenchou)", + "wordSecond": "칠면조 (chilmyeonjo)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "豚 (ぶた, buta)", + "wordSecond": "돼지 (dwaeji)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子牛 (こうし, koushi)", + "wordSecond": "송아지 (songaji)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子馬 (こうま, kouma)", + "wordSecond": "망아지 (mangaji)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子羊 (こひつじ, kohitsuji)", + "wordSecond": "새끼 양 (saekki yang)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子山羊 (こやぎ, koyagi)", + "wordSecond": "새끼 염소 (saekki yeomso)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子犬 (こいぬ, koinu)", + "wordSecond": "강아지 (gangaji)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子猫 (こねこ, koneko)", + "wordSecond": "고양이 새끼 (goyangi saekki)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子兎 (こうさぎ, kousagi)", + "wordSecond": "새끼 토끼 (saekki tokki)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子鼠 (こねずみ, konezumi)", + "wordSecond": "새끼 쥐 (saekki jwi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子熊 (こぐま, koguma)", + "wordSecond": "새끼 곰 (saekki gom)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子虎 (ことら, kotora)", + "wordSecond": "새끼 호랑이 (saekki horangi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子獅子 (こじし, kojishi)", + "wordSecond": "새끼 사자 (saekki saja)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子象 (こぞう, kozou)", + "wordSecond": "새끼 코끼리 (saekki kokkiri)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子鹿 (こじか, kojika)", + "wordSecond": "새끼 사슴 (saekki saseum)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子猿 (こざる, kozaru)", + "wordSecond": "새끼 원숭이 (saekki wonsungi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子亀 (こがめ, kogame)", + "wordSecond": "새끼 거북이 (saekki geobugi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子蛙 (こがえる, kogaeru)", + "wordSecond": "새끼 개구리 (saekki gaeguri)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子魚 (こざかな, kozakana)", + "wordSecond": "새끼 물고기 (saekki mulgogi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子鯨 (こくじら, kokujira)", + "wordSecond": "새끼 고래 (saekki gorae)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子鮫 (こさめ, kosame)", + "wordSecond": "새끼 상어 (saekki sangeo)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子蝶 (こちょう, kochou)", + "wordSecond": "새끼 나비 (saekki nabi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子蜂 (こはち, kohachi)", + "wordSecond": "새끼 벌 (saekki beol)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子蟻 (こあり, koari)", + "wordSecond": "새끼 개미 (saekki gaemi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子蜘蛛 (こぐも, kogumo)", + "wordSecond": "새끼 거미 (saekki geomi)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子蟹 (こかに, kokani)", + "wordSecond": "새끼 게 (saekki ge)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子烏賊 (こいか, koika)", + "wordSecond": "새끼 오징어 (saekki ojing-eo)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子海豚 (こいるか, ko iruka)", + "wordSecond": "새끼 돌고래 (saekki dolgorae)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子海豹 (こあざらし, ko azarashi)", + "wordSecond": "새끼 물개 (saekki mulgae)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子海獺 (こらっこ, ko rakko)", + "wordSecond": "새끼 해달 (saekki haedal)", + "createdAt": "2026-02-19T13:32:44.480Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_ja_pl_A1.json b/output/2026_02_19_animals_wildlife_ja_pl_A1.json new file mode 100644 index 0000000..64a9f40 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_ja_pl_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:33:09.897Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "犬 (いぬ, inu)", + "wordSecond": "pies", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "猫 (ねこ, neko)", + "wordSecond": "kot", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "鳥 (とり, tori)", + "wordSecond": "ptak", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "牛 (うし, ushi)", + "wordSecond": "krowa", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "馬 (うま, uma)", + "wordSecond": "koń", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "豚 (ぶた, buta)", + "wordSecond": "świnia", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "鶏 (にわとり, niwatori)", + "wordSecond": "kura", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ライオン (らいおん, raion)", + "wordSecond": "lew", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "虎 (とら, tora)", + "wordSecond": "tygrys", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "象 (ぞう, zou)", + "wordSecond": "słoń", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "熊 (くま, kuma)", + "wordSecond": "niedźwiedź", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "魚 (さかな, sakana)", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "鯨 (くじら, kujira)", + "wordSecond": "wieloryb", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "鮫 (さめ, same)", + "wordSecond": "rekin", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "蝶 (ちょう, chou)", + "wordSecond": "motyl", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "蜂 (はち, hachi)", + "wordSecond": "pszczoła", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "蟻 (あり, ari)", + "wordSecond": "mrówka", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "羊 (ひつじ, hitsuji)", + "wordSecond": "owca", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "山羊 (やぎ, yagi)", + "wordSecond": "koza", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "鴨 (かも, kamo)", + "wordSecond": "kaczka", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "兎 (うさぎ, usagi)", + "wordSecond": "królik", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "鼠 (ねずみ, nezumi)", + "wordSecond": "mysz", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "蛇 (へび, hebi)", + "wordSecond": "wąż", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "蛙 (かえる, kaeru)", + "wordSecond": "żaba", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "亀 (かめ, kame)", + "wordSecond": "żółw", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "狐 (きつね, kitsune)", + "wordSecond": "lis", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "狼 (おおかみ, ookami)", + "wordSecond": "wilk", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "猿 (さる, saru)", + "wordSecond": "małpa", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "鹿 (しか, shika)", + "wordSecond": "jeleń", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "豚 (ぶた, buta)", + "wordSecond": "świnia", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "鶏 (にわとり, niwatori)", + "wordSecond": "kura", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "雄鶏 (おんどり, ondori)", + "wordSecond": "kogut", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子犬 (こいぬ, koinu)", + "wordSecond": "szczeniak", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子猫 (こねこ, koneko)", + "wordSecond": "kociak", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子牛 (こうし, koushi)", + "wordSecond": "cielę", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子馬 (こうま, kouma)", + "wordSecond": "źrebię", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子豚 (こぶた, kobuta)", + "wordSecond": "prosię", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子羊 (こひつじ, kohitsuji)", + "wordSecond": "jagnię", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子山羊 (こやぎ, koyagi)", + "wordSecond": "koźlę", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子鴨 (こがも, kogamo)", + "wordSecond": "kaczątko", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子兎 (こうさぎ, kousagi)", + "wordSecond": "króliczek", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子鼠 (こねずみ, konezumi)", + "wordSecond": "myszka", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子蛇 (こへび, kohebi)", + "wordSecond": "wężyk", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子蛙 (こかえる, kokaeru)", + "wordSecond": "żabka", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子亀 (こがめ, kogame)", + "wordSecond": "żółwik", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子狐 (こぎつね, kogitsune)", + "wordSecond": "lisek", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子狼 (こおおかみ, koookami)", + "wordSecond": "wilczek", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子猿 (こざる, kozaru)", + "wordSecond": "małpka", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子鹿 (こじか, kojika)", + "wordSecond": "jelonek", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "鳥の巣 (とりのす, torinosu)", + "wordSecond": "gniazdo", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "巣 (す, su)", + "wordSecond": "gniazdo", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "卵 (たまご, tamago)", + "wordSecond": "jajko", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "蜂蜜 (はちみつ, hachimitsu)", + "wordSecond": "miód", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "羽 (はね, hane)", + "wordSecond": "pióro", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "毛 (け, ke)", + "wordSecond": "sierść", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "皮 (かわ, kawa)", + "wordSecond": "skóra", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "牙 (きば, kiba)", + "wordSecond": "kieł", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "角 (つの, tsuno)", + "wordSecond": "róg", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "尻尾 (しっぽ, shippo)", + "wordSecond": "ogon", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "爪 (つめ, tsume)", + "wordSecond": "pazur", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "蹄 (ひづめ, hizume)", + "wordSecond": "kopyto", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "鰭 (ひれ, hire)", + "wordSecond": "płetwa", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "甲羅 (こうら, koura)", + "wordSecond": "skorupa", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "巣穴 (すあな, suana)", + "wordSecond": "nora", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "洞窟 (どうくつ, doukutsu)", + "wordSecond": "jaskinia", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "森 (もり, mori)", + "wordSecond": "las", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ジャングル (じゃんぐる, janguru)", + "wordSecond": "dżungla", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "サバンナ (さばんな, sabanna)", + "wordSecond": "sawanna", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "草原 (そうげん, sougen)", + "wordSecond": "step", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "山 (やま, yama)", + "wordSecond": "góra", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "川 (かわ, kawa)", + "wordSecond": "rzeka", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "湖 (みずうみ, mizuumi)", + "wordSecond": "jezioro", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "海 (うみ, umi)", + "wordSecond": "morze", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "大洋 (たいよう, taiyou)", + "wordSecond": "ocean", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "砂漠 (さばく, sabaku)", + "wordSecond": "pustynia", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "北極 (ほっきょく, hokkyoku)", + "wordSecond": "Arktyka", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "南極 (なんきょく, nankyoku)", + "wordSecond": "Antarktyda", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "熱帯 (ねったい, nettai)", + "wordSecond": "tropiki", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "動物園 (どうぶつえん, doubutsuen)", + "wordSecond": "zoo", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "農場 (のうじょう, noujou)", + "wordSecond": "farma", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "家 (いえ, ie)", + "wordSecond": "dom", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "庭 (にわ, niwa)", + "wordSecond": "ogród", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "公園 (こうえん, kouen)", + "wordSecond": "park", + "createdAt": "2026-02-19T13:33:09.897Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_ja_zh_A1.json b/output/2026_02_19_animals_wildlife_ja_zh_A1.json new file mode 100644 index 0000000..1de426e --- /dev/null +++ b/output/2026_02_19_animals_wildlife_ja_zh_A1.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:32:10.414Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "犬 (いぬ, inu)", + "wordSecond": "狗 (gǒu)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "猫 (ねこ, neko)", + "wordSecond": "猫 (māo)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "鳥 (とり, tori)", + "wordSecond": "鸟 (niǎo)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "牛 (うし, ushi)", + "wordSecond": "牛 (niú)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "馬 (うま, uma)", + "wordSecond": "马 (mǎ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "豚 (ぶた, buta)", + "wordSecond": "猪 (zhū)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "鶏 (にわとり, niwatori)", + "wordSecond": "鸡 (jī)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ライオン (らいおん, raion)", + "wordSecond": "狮子 (shīzi)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "虎 (とら, tora)", + "wordSecond": "老虎 (lǎohǔ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "象 (ぞう, zō)", + "wordSecond": "大象 (dàxiàng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "熊 (くま, kuma)", + "wordSecond": "熊 (xióng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "魚 (さかな, sakana)", + "wordSecond": "鱼 (yú)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "鯨 (くじら, kujira)", + "wordSecond": "鲸鱼 (jīngyú)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "サメ (さめ, same)", + "wordSecond": "鲨鱼 (shāyú)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "蝶 (ちょう, chō)", + "wordSecond": "蝴蝶 (húdié)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "蜂 (はち, hachi)", + "wordSecond": "蜜蜂 (mìfēng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "蟻 (あり, ari)", + "wordSecond": "蚂蚁 (mǎyǐ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "羊 (ひつじ, hitsuji)", + "wordSecond": "羊 (yáng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "山羊 (やぎ, yagi)", + "wordSecond": "山羊 (shānyáng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "鴨 (かも, kamo)", + "wordSecond": "鸭子 (yāzi)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "兎 (うさぎ, usagi)", + "wordSecond": "兔子 (tùzi)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "鼠 (ねずみ, nezumi)", + "wordSecond": "老鼠 (lǎoshǔ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "蛇 (へび, hebi)", + "wordSecond": "蛇 (shé)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "蛙 (かえる, kaeru)", + "wordSecond": "青蛙 (qīngwā)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "亀 (かめ, kame)", + "wordSecond": "乌龟 (wūguī)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "狐 (きつね, kitsune)", + "wordSecond": "狐狸 (húli)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "狼 (おおかみ, ōkami)", + "wordSecond": "狼 (láng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "猿 (さる, saru)", + "wordSecond": "猴子 (hóuzi)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "パンダ (ぱんだ, panda)", + "wordSecond": "熊猫 (xióngmāo)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "キリン (きりん, kirin)", + "wordSecond": "长颈鹿 (chángjǐnglù)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "カバ (かば, kaba)", + "wordSecond": "河马 (hémǎ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "カンガルー (かんがるー, kangarū)", + "wordSecond": "袋鼠 (dàishǔ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "コアラ (こあら, koara)", + "wordSecond": "考拉 (kǎolā)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ペンギン (ぺんぎん, pengin)", + "wordSecond": "企鹅 (qǐ'é)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "フクロウ (ふくろう, fukurō)", + "wordSecond": "猫头鹰 (māotóuyīng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ハト (はと, hato)", + "wordSecond": "鸽子 (gēzi)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "スズメ (すずめ, suzume)", + "wordSecond": "麻雀 (máquè)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "カラス (からす, karasu)", + "wordSecond": "乌鸦 (wūyā)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "クモ (くも, kumo)", + "wordSecond": "蜘蛛 (zhīzhū)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "カタツムリ (かたつむり, katatsumuri)", + "wordSecond": "蜗牛 (wōniú)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ミツバチ (みつばち, mitsubachi)", + "wordSecond": "蜜蜂 (mìfēng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "カブトムシ (かぶとむし, kabutomushi)", + "wordSecond": "甲虫 (jiǎchóng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "トンボ (とんぼ, tonbo)", + "wordSecond": "蜻蜓 (qīngtíng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "カマキリ (かまきり, kamakiri)", + "wordSecond": "螳螂 (tángláng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "コオロギ (こおろぎ, kōrogi)", + "wordSecond": "蟋蟀 (xīshuài)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "カエル (かえる, kaeru)", + "wordSecond": "青蛙 (qīngwā)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "イルカ (いるか, iruka)", + "wordSecond": "海豚 (hǎitún)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "アザラシ (あざらし, azarashi)", + "wordSecond": "海豹 (hǎibào)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ラッコ (らっこ, rakko)", + "wordSecond": "海獺 (hǎitǎ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "タコ (たこ, tako)", + "wordSecond": "章鱼 (zhāngyú)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "イカ (いか, ika)", + "wordSecond": "鱿鱼 (yóuyú)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "エビ (えび, ebi)", + "wordSecond": "虾 (xiā)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "カニ (かに, kani)", + "wordSecond": "螃蟹 (pángxiè)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "クラゲ (くらげ, kurage)", + "wordSecond": "水母 (shuǐmǔ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ヒトデ (ひとで, hitode)", + "wordSecond": "海星 (hǎixīng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ウマ (うま, uma)", + "wordSecond": "马 (mǎ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ロバ (ろば, roba)", + "wordSecond": "驴 (lǘ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ヤギ (やぎ, yagi)", + "wordSecond": "山羊 (shānyáng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ブタ (ぶた, buta)", + "wordSecond": "猪 (zhū)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ニワトリ (にわとり, niwatori)", + "wordSecond": "鸡 (jī)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "アヒル (あひる, ahiru)", + "wordSecond": "鸭子 (yāzi)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ガチョウ (がちょう, gachō)", + "wordSecond": "鹅 (é)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "七面鳥 (しちめんちょう, shichimenchō)", + "wordSecond": "火鸡 (huǒjī)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ハムスター (はむすたー, hamusutā)", + "wordSecond": "仓鼠 (cāngshǔ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "モルモット (もるもっと, morumotto)", + "wordSecond": "豚鼠 (túnshǔ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "フェレット (ふぇれっと, feretto)", + "wordSecond": "雪貂 (xuědiāo)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ウサギ (うさぎ, usagi)", + "wordSecond": "兔子 (tùzi)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "カメレオン (かめれおん, kamereon)", + "wordSecond": "变色龙 (biànsèlóng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "トカゲ (とかげ, tokage)", + "wordSecond": "蜥蜴 (xīyì)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ワニ (わに, wani)", + "wordSecond": "鳄鱼 (èyú)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "フラミンゴ (ふらみんご, furamingo)", + "wordSecond": "火烈鸟 (huǒlièniǎo)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ダチョウ (だちょう, dachō)", + "wordSecond": "鸵鸟 (tuóniǎo)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "クジャク (くじゃく, kujaku)", + "wordSecond": "孔雀 (kǒngquè)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "オウム (おうむ, ōmu)", + "wordSecond": "鹦鹉 (yīngwǔ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "インコ (いんこ, inko)", + "wordSecond": "鹦鹉 (yīngwǔ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "カナリア (かなりあ, kanaria)", + "wordSecond": "金丝雀 (jīnsīquè)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ハチドリ (はちどり, hachidori)", + "wordSecond": "蜂鸟 (fēngniǎo)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ツバメ (つばめ, tsubame)", + "wordSecond": "燕子 (yànzi)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ワシ (わし, washi)", + "wordSecond": "鹰 (yīng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "タカ (たか, taka)", + "wordSecond": "鹰 (yīng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "フクロウ (ふくろう, fukurō)", + "wordSecond": "猫头鹰 (māotóuyīng)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "モグラ (もぐら, mogura)", + "wordSecond": "鼹鼠 (yǎnshǔ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "コウモリ (こうもり, kōmori)", + "wordSecond": "蝙蝠 (biānfú)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "リス (りす, risu)", + "wordSecond": "松鼠 (sōngshǔ)", + "createdAt": "2026-02-19T13:32:10.414Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_ko_pl_A1.json b/output/2026_02_19_animals_wildlife_ko_pl_A1.json new file mode 100644 index 0000000..c9aeb89 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_ko_pl_A1.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:34:21.448Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "개 (gae)", + "wordSecond": "pies", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "고양이 (goyangi)", + "wordSecond": "kot", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "새 (sae)", + "wordSecond": "ptak", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "소 (so)", + "wordSecond": "krowa", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "말 (mal)", + "wordSecond": "koń", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "돼지 (dwaeji)", + "wordSecond": "świnia", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "닭 (dak)", + "wordSecond": "kura", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "사자 (saja)", + "wordSecond": "lew", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "호랑이 (horangi)", + "wordSecond": "tygrys", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "코끼리 (kokkiri)", + "wordSecond": "słoń", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "곰 (gom)", + "wordSecond": "niedźwiedź", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "물고기 (mulgogi)", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "고래 (gorae)", + "wordSecond": "wieloryb", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "상어 (sangeo)", + "wordSecond": "rekin", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "나비 (nabi)", + "wordSecond": "motyl", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "벌 (beol)", + "wordSecond": "pszczoła", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "개미 (gaemi)", + "wordSecond": "mrówka", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "토끼 (tokki)", + "wordSecond": "królik", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "쥐 (jwi)", + "wordSecond": "mysz", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "뱀 (baem)", + "wordSecond": "wąż", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "거북이 (geobugi)", + "wordSecond": "żółw", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "원숭이 (wonsungi)", + "wordSecond": "małpa", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "여우 (yeou)", + "wordSecond": "lis", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "늑대 (neukdae)", + "wordSecond": "wilkołak", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "사슴 (saseum)", + "wordSecond": "jeleń", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "염소 (yeomso)", + "wordSecond": "koza", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "양 (yang)", + "wordSecond": "owca", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "당나귀 (dangnagwi)", + "wordSecond": "osioł", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "오리 (ori)", + "wordSecond": "kaczka", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "거위 (geowi)", + "wordSecond": "gęś", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "박쥐 (bakjwi)", + "wordSecond": "nietoperz", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "다람쥐 (daramjwi)", + "wordSecond": "wiewiórka", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "고슴도치 (goseumdochi)", + "wordSecond": "jeż", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "족제비 (jokjebi)", + "wordSecond": "łasica", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "표범 (pyobeom)", + "wordSecond": "pantera", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "하마 (hama)", + "wordSecond": "hipopotam", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "기린 (girin)", + "wordSecond": "żyrafa", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "코뿔소 (koppulso)", + "wordSecond": "nosorożec", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "악어 (ageo)", + "wordSecond": "krokodyl", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "펭귄 (peng-gwin)", + "wordSecond": "pingwin", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "물개 (mulgae)", + "wordSecond": "foka", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "해마 (haema)", + "wordSecond": "konik morski", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "문어 (muneo)", + "wordSecond": "ośmiornica", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "오징어 (ojingeo)", + "wordSecond": "kałamarnica", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "게 (ge)", + "wordSecond": "krab", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "가재 (gajae)", + "wordSecond": "rak", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "조개 (jogae)", + "wordSecond": "małż", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "성게 (seongge)", + "wordSecond": "jeżowiec", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "해파리 (haepari)", + "wordSecond": "meduza", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "불가사리 (bulgasari)", + "wordSecond": "rozgwiazda", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "나방 (nabang)", + "wordSecond": "ćma", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "잠자리 (jamjari)", + "wordSecond": "ważka", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "파리 (pari)", + "wordSecond": "mucha", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "모기 (mogi)", + "wordSecond": "komar", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "바퀴벌레 (bakwibeolle)", + "wordSecond": "karaluch", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "사마귀 (samagwi)", + "wordSecond": "modliszka", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "반딧불이 (banditburi)", + "wordSecond": "świetlik", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "메뚜기 (mettugi)", + "wordSecond": "szarańcza", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "귀뚜라미 (gwitturami)", + "wordSecond": "świerszcz", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "달팽이 (dalpaeng-i)", + "wordSecond": "ślimak", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "지렁이 (jireong-i)", + "wordSecond": "dżdżownica", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "두더지 (dudeoji)", + "wordSecond": "kret", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "고래상어 (goraesangeo)", + "wordSecond": "rekin wielorybi", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "돌고래 (dolgorae)", + "wordSecond": "delfin", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "범고래 (beomgorae)", + "wordSecond": "orka", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "바다사자 (badasaja)", + "wordSecond": "lew morski", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "바다표범 (badapyobeom)", + "wordSecond": "foka", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "북극곰 (bukgeukgom)", + "wordSecond": "niedźwiedź polarny", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "판다 (panda)", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "코알라 (koalla)", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "캥거루 (kaenggeoru)", + "wordSecond": "kangur", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "너구리 (neoguri)", + "wordSecond": "szop", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "스컹크 (seukeongkeu)", + "wordSecond": "skunks", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "아르마딜로 (areumadillo)", + "wordSecond": "pancernik", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "타조 (tajo)", + "wordSecond": "struś", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "공작 (gongjak)", + "wordSecond": "paw", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "독수리 (doksuri)", + "wordSecond": "orzeł", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "매 (mae)", + "wordSecond": "jastrząb", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "올빼미 (olppaemi)", + "wordSecond": "sowa", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "까마귀 (kkamagwi)", + "wordSecond": "kruk", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "까치 (kkachi)", + "wordSecond": "sroka", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "제비 (jebi)", + "wordSecond": "jaskółka", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "참새 (chamsae)", + "wordSecond": "wróbel", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "비둘기 (bidulgi)", + "wordSecond": "gołąb", + "createdAt": "2026-02-19T13:34:21.448Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_pt_de_A1.json b/output/2026_02_19_animals_wildlife_pt_de_A1.json new file mode 100644 index 0000000..ee295fc --- /dev/null +++ b/output/2026_02_19_animals_wildlife_pt_de_A1.json @@ -0,0 +1,1085 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:22:58.761Z", + "metadata": { + "itemCount": 82, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cachorro", + "wordSecond": "Hund", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "gato", + "wordSecond": "Katze", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pássaro", + "wordSecond": "Vogel", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vaca", + "wordSecond": "Kuh", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cavalo", + "wordSecond": "Pferd", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "porco", + "wordSecond": "Schwein", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "galinha", + "wordSecond": "Huhn", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "leão", + "wordSecond": "Löwe", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tigre", + "wordSecond": "Tiger", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "elefante", + "wordSecond": "Elefant", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "urso", + "wordSecond": "Bär", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "peixe", + "wordSecond": "Fisch", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "baleia", + "wordSecond": "Wal", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tubarão", + "wordSecond": "Hai", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "borboleta", + "wordSecond": "Schmetterling", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "abelha", + "wordSecond": "Biene", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "formiga", + "wordSecond": "Ameise", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "rato", + "wordSecond": "Maus", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "coelho", + "wordSecond": "Kaninchen", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cobra", + "wordSecond": "Schlange", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "macaco", + "wordSecond": "Affe", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "girafa", + "wordSecond": "Giraffe", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "zebra", + "wordSecond": "Zebra", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "rinoceronte", + "wordSecond": "Nashorn", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "hipopótamo", + "wordSecond": "Nilpferd", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "crocodilo", + "wordSecond": "Krokodil", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pinguim", + "wordSecond": "Pinguin", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "coruja", + "wordSecond": "Eule", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "morcego", + "wordSecond": "Fledermaus", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ovelha", + "wordSecond": "Schaf", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cabra", + "wordSecond": "Ziege", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pato", + "wordSecond": "Ente", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ganso", + "wordSecond": "Gans", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "peru", + "wordSecond": "Truthahn", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pombo", + "wordSecond": "Taube", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "águia", + "wordSecond": "Adler", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "corvo", + "wordSecond": "Rabe", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "papagaio", + "wordSecond": "Papagei", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tartaruga", + "wordSecond": "Schildkröte", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sapo", + "wordSecond": "Frosch", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lagarto", + "wordSecond": "Eidechse", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "caracol", + "wordSecond": "Schnecke", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "minhoca", + "wordSecond": "Wurm", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "aranha", + "wordSecond": "Spinne", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mosquito", + "wordSecond": "Mücke", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mosca", + "wordSecond": "Fliege", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "joaninha", + "wordSecond": "Marienkäfer", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "grilo", + "wordSecond": "Grille", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "libélula", + "wordSecond": "Libelle", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lagosta", + "wordSecond": "Hummer", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "caranguejo", + "wordSecond": "Krabbe", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "polvo", + "wordSecond": "Tintenfisch", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "golfinho", + "wordSecond": "Delfin", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "foca", + "wordSecond": "Robbe", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lobo", + "wordSecond": "Wolf", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "raposa", + "wordSecond": "Fuchs", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "esquilo", + "wordSecond": "Eichhörnchen", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "veado", + "wordSecond": "Hirsch", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "javali", + "wordSecond": "Wildschwein", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "castor", + "wordSecond": "Biber", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "toupeira", + "wordSecond": "Maulwurf", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "porco-espinho", + "wordSecond": "Stachelschwein", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "canguru", + "wordSecond": "Känguru", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "coala", + "wordSecond": "Koala", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "camelô", + "wordSecond": "Kamel", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lhama", + "wordSecond": "Lama", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "panda", + "wordSecond": "Panda", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "leopardo", + "wordSecond": "Leopard", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "guepardo", + "wordSecond": "Gepard", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lince", + "wordSecond": "Luchs", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "morsa", + "wordSecond": "Walross", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ornitorrinco", + "wordSecond": "Schnabeltier", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tatu", + "wordSecond": "Gürteltier", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tamanduá", + "wordSecond": "Ameisenbär", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "preguiça", + "wordSecond": "Faultier", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "suricato", + "wordSecond": "Erdmännchen", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "hiena", + "wordSecond": "Hyäne", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chita", + "wordSecond": "Gepard", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "javali", + "wordSecond": "Wildschwein", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "texugo", + "wordSecond": "Dachs", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "doninha", + "wordSecond": "Wiesel", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "furão", + "wordSecond": "Frettchen", + "createdAt": "2026-02-19T13:22:58.761Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_pt_fr_A1.json b/output/2026_02_19_animals_wildlife_pt_fr_A1.json new file mode 100644 index 0000000..bbd316e --- /dev/null +++ b/output/2026_02_19_animals_wildlife_pt_fr_A1.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:23:15.859Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cachorro", + "wordSecond": "chien", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "gato", + "wordSecond": "chat", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pássaro", + "wordSecond": "oiseau", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vaca", + "wordSecond": "vache", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cavalo", + "wordSecond": "cheval", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "porco", + "wordSecond": "cochon", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "galinha", + "wordSecond": "poule", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "leão", + "wordSecond": "lion", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tigre", + "wordSecond": "tigre", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "elefante", + "wordSecond": "éléphant", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "urso", + "wordSecond": "ours", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "peixe", + "wordSecond": "poisson", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "baleia", + "wordSecond": "baleine", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tubarão", + "wordSecond": "requin", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "borboleta", + "wordSecond": "papillon", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "abelha", + "wordSecond": "abeille", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "formiga", + "wordSecond": "fourmi", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "rato", + "wordSecond": "souris", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "coelho", + "wordSecond": "lapin", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cobra", + "wordSecond": "serpent", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "macaco", + "wordSecond": "singe", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "girafa", + "wordSecond": "girafe", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "zebra", + "wordSecond": "zèbre", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "canguru", + "wordSecond": "kangourou", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pinguim", + "wordSecond": "manchot", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "coruja", + "wordSecond": "hibou", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "águia", + "wordSecond": "aigle", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "morcego", + "wordSecond": "chauve-souris", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lobo", + "wordSecond": "loup", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "raposa", + "wordSecond": "renard", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "veado", + "wordSecond": "cerf", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "javali", + "wordSecond": "sanglier", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "esquilo", + "wordSecond": "écureuil", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tartaruga", + "wordSecond": "tortue", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sapo", + "wordSecond": "crapaud", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "jacaré", + "wordSecond": "alligator", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "hipopótamo", + "wordSecond": "hippopotame", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "rinoceronte", + "wordSecond": "rhinocéros", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "camelo", + "wordSecond": "chameau", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "koala", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "leopardo", + "wordSecond": "léopard", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "guepardo", + "wordSecond": "guépard", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lontra", + "wordSecond": "loutre", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "foca", + "wordSecond": "phoque", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "polvo", + "wordSecond": "pieuvre", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "golfinho", + "wordSecond": "dauphin", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "caranguejo", + "wordSecond": "crabe", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lagosta", + "wordSecond": "homard", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "medusa", + "wordSecond": "méduse", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estrela-do-mar", + "wordSecond": "étoile de mer", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cavalo-marinho", + "wordSecond": "hippocampe", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "caracol", + "wordSecond": "escargot", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "minhoca", + "wordSecond": "ver de terre", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "aranha", + "wordSecond": "araignée", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "escorpião", + "wordSecond": "scorpion", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "besouro", + "wordSecond": "scarabée", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mosquito", + "wordSecond": "moustique", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mosca", + "wordSecond": "mouche", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "grilo", + "wordSecond": "grillon", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "libélula", + "wordSecond": "libellule", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "joaninha", + "wordSecond": "coccinelle", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lagarta", + "wordSecond": "chenille", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "carneiro", + "wordSecond": "mouton", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cabra", + "wordSecond": "chèvre", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ovelha", + "wordSecond": "brebis", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pato", + "wordSecond": "canard", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ganso", + "wordSecond": "oie", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "peru", + "wordSecond": "dinde", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pombo", + "wordSecond": "pigeon", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "papagaio", + "wordSecond": "perroquet", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "hamster", + "wordSecond": "hamster", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "porquinho-da-índia", + "wordSecond": "cochon d'Inde", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "furão", + "wordSecond": "furet", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "peixe dourado", + "wordSecond": "poisson rouge", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cobra", + "wordSecond": "serpent", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "iguana", + "wordSecond": "iguane", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tartaruga", + "wordSecond": "tortue", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cavalo", + "wordSecond": "cheval", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vaca", + "wordSecond": "vache", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "galo", + "wordSecond": "coq", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pintinho", + "wordSecond": "poussin", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ovelha", + "wordSecond": "mouton", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cabra", + "wordSecond": "chèvre", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "porco", + "wordSecond": "porc", + "createdAt": "2026-02-19T13:23:15.859Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_pt_it_A1.json b/output/2026_02_19_animals_wildlife_pt_it_A1.json new file mode 100644 index 0000000..8ab8346 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_pt_it_A1.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:23:32.627Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cachorro", + "wordSecond": "cane", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gato", + "wordSecond": "gatto", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pássaro", + "wordSecond": "uccello", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vaca", + "wordSecond": "mucca", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cavalo", + "wordSecond": "cavallo", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "porco", + "wordSecond": "maiale", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "galinha", + "wordSecond": "gallina", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "leão", + "wordSecond": "leone", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tigre", + "wordSecond": "tigre", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "elefante", + "wordSecond": "elefante", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "urso", + "wordSecond": "orso", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "peixe", + "wordSecond": "pesce", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "baleia", + "wordSecond": "balena", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tubarão", + "wordSecond": "squalo", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "borboleta", + "wordSecond": "farfalla", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "abelha", + "wordSecond": "ape", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "formiga", + "wordSecond": "formica", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "rato", + "wordSecond": "topo", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cobra", + "wordSecond": "serpente", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "macaco", + "wordSecond": "scimmia", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "girafa", + "wordSecond": "giraffa", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "zebra", + "wordSecond": "zebra", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "coelho", + "wordSecond": "coniglio", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ovelha", + "wordSecond": "pecora", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cabra", + "wordSecond": "capra", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pato", + "wordSecond": "anatra", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ganso", + "wordSecond": "oca", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "coruja", + "wordSecond": "gufo", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "morcego", + "wordSecond": "pipistrello", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "crocodilo", + "wordSecond": "coccodrillo", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "hipopótamo", + "wordSecond": "ippopotamo", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "rinoceronte", + "wordSecond": "rinoceronte", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "canguru", + "wordSecond": "canguro", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lobo", + "wordSecond": "lupo", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "raposa", + "wordSecond": "volpe", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "urso panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "leopardo", + "wordSecond": "leopardo", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "guepardo", + "wordSecond": "ghepardo", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "camelo", + "wordSecond": "cammello", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pinguim", + "wordSecond": "pinguino", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "foca", + "wordSecond": "foca", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "polvo", + "wordSecond": "polpo", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estrela-do-mar", + "wordSecond": "stella marina", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "caranguejo", + "wordSecond": "granchio", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lagosta", + "wordSecond": "aragosta", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "golfinho", + "wordSecond": "delfino", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lula", + "wordSecond": "calamaro", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "medusa", + "wordSecond": "medusa", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cavalo-marinho", + "wordSecond": "cavalluccio marino", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tartaruga", + "wordSecond": "tartaruga", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "jacaré", + "wordSecond": "alligatore", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "águia", + "wordSecond": "aquila", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "falcão", + "wordSecond": "falco", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "corvo", + "wordSecond": "corvo", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pardal", + "wordSecond": "passero", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "andorinha", + "wordSecond": "rondine", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "beija-flor", + "wordSecond": "colibrì", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "papagaio", + "wordSecond": "pappagallo", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "periquito", + "wordSecond": "parrocchetto", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "canário", + "wordSecond": "canarino", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pombo", + "wordSecond": "piccione", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gaivota", + "wordSecond": "gabbiano", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pelicano", + "wordSecond": "pellicano", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "flamingo", + "wordSecond": "fenicottero", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "avestruz", + "wordSecond": "struzzo", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ema", + "wordSecond": "nandù", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cisne", + "wordSecond": "cigno", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "esquilo", + "wordSecond": "scoiattolo", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "toupeira", + "wordSecond": "talpa", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ourigo", + "wordSecond": "riccio", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "texugo", + "wordSecond": "tasso", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "doninha", + "wordSecond": "donnola", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "furão", + "wordSecond": "furetto", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "guaxinim", + "wordSecond": "procione", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "castor", + "wordSecond": "castoro", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "porco-espinho", + "wordSecond": "istrice", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tatu", + "wordSecond": "armadillo", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "coala", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ornitorrinco", + "wordSecond": "ornitorinco", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "equidna", + "wordSecond": "echidna", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lêmure", + "wordSecond": "lemure", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gorila", + "wordSecond": "gorilla", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chimpanzé", + "wordSecond": "scimpanzé", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "orangotango", + "wordSecond": "orango", + "createdAt": "2026-02-19T13:23:32.627Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_pt_ja_A1.json b/output/2026_02_19_animals_wildlife_pt_ja_A1.json new file mode 100644 index 0000000..f6f98d6 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_pt_ja_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:24:01.285Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cachorro", + "wordSecond": "犬 (いぬ, inu)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "gato", + "wordSecond": "猫 (ねこ, neko)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pássaro", + "wordSecond": "鳥 (とり, tori)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "vaca", + "wordSecond": "牛 (うし, ushi)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cavalo", + "wordSecond": "馬 (うま, uma)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "porco", + "wordSecond": "豚 (ぶた, buta)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "galinha", + "wordSecond": "鶏 (にわとり, niwatori)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "leão", + "wordSecond": "ライオン (らいおん, raion)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tigre", + "wordSecond": "虎 (とら, tora)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "elefante", + "wordSecond": "象 (ぞう, zou)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "urso", + "wordSecond": "熊 (くま, kuma)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "peixe", + "wordSecond": "魚 (さかな, sakana)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "baleia", + "wordSecond": "鯨 (くじら, kujira)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tubarão", + "wordSecond": "鮫 (さめ, same)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "borboleta", + "wordSecond": "蝶 (ちょう, chou)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "abelha", + "wordSecond": "蜂 (はち, hachi)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "formiga", + "wordSecond": "蟻 (あり, ari)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "rato", + "wordSecond": "鼠 (ねずみ, nezumi)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "coelho", + "wordSecond": "兎 (うさぎ, usagi)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "macaco", + "wordSecond": "猿 (さる, saru)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cobra", + "wordSecond": "蛇 (へび, hebi)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pato", + "wordSecond": "鴨 (かも, kamo)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ovelha", + "wordSecond": "羊 (ひつじ, hitsuji)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cabra", + "wordSecond": "山羊 (やぎ, yagi)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "girafa", + "wordSecond": "キリン (きりん, kirin)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "zebra", + "wordSecond": "シマウマ (しまうま, shimauma)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "rinoceronte", + "wordSecond": "サイ (さい, sai)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "hipopótamo", + "wordSecond": "カバ (かば, kaba)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "canguru", + "wordSecond": "カンガルー (かんがるー, kangaruu)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "panda", + "wordSecond": "パンダ (ぱんだ, panda)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "coruja", + "wordSecond": "フクロウ (ふくろう, fukurou)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "morcego", + "wordSecond": "コウモリ (こうもり, koumori)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "esquilo", + "wordSecond": "リス (りす, risu)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tartaruga", + "wordSecond": "亀 (かめ, kame)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "lagarto", + "wordSecond": "トカゲ (とかげ, tokage)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sapo", + "wordSecond": "蛙 (かえる, kaeru)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "polvo", + "wordSecond": "蛸 (たこ, tako)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "golfinho", + "wordSecond": "イルカ (いるか, iruka)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "foca", + "wordSecond": "アザラシ (あざらし, azarashi)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pinguim", + "wordSecond": "ペンギン (ぺんぎん, pengin)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "caranguejo", + "wordSecond": "蟹 (かに, kani)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "lagosta", + "wordSecond": "伊勢海老 (いせえび, iseebi)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "camelo", + "wordSecond": "ラクダ (らくだ, rakuda)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pavão", + "wordSecond": "孔雀 (くじゃく, kujaku)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cisne", + "wordSecond": "白鳥 (はくちょう, hakuchou)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "águia", + "wordSecond": "鷲 (わし, washi)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "corvo", + "wordSecond": "烏 (からす, karasu)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "gaivota", + "wordSecond": "カモメ (かもめ, kamome)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "mosquito", + "wordSecond": "蚊 (か, ka)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "aranha", + "wordSecond": "蜘蛛 (くも, kumo)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "escorpião", + "wordSecond": "蠍 (さそり, sasori)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "joaninha", + "wordSecond": "天道虫 (てんとうむし, tentoumushi)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "gafanhoto", + "wordSecond": "バッタ (ばった, batta)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "libélula", + "wordSecond": "蜻蛉 (とんぼ, tonbo)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "minhoca", + "wordSecond": "蚯蚓 (みみず, mimizu)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "caracol", + "wordSecond": "蝸牛 (かたつむり, katatsumuri)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "lesma", + "wordSecond": "ナメクジ (なめくじ, namekuji)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "lobo", + "wordSecond": "狼 (おおかみ, ookami)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "raposa", + "wordSecond": "狐 (きつね, kitsune)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "veado", + "wordSecond": "鹿 (しか, shika)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "javali", + "wordSecond": "猪 (いのしし, inoshishi)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "texugo", + "wordSecond": "アナグマ (あなぐま, anaguma)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "toupeira", + "wordSecond": "モグラ (もぐら, mogura)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ourigo", + "wordSecond": "ハリネズミ (はりねずみ, harinezumi)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "castor", + "wordSecond": "ビーバー (びーばー, biibaa)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "lontra", + "wordSecond": "カワウソ (かわうそ, kawauso)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "guaxinim", + "wordSecond": "アライグマ (あらいぐま, araiguma)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "panda vermelho", + "wordSecond": "レッサーパンダ (れっさーぱんだ, ressaa panda)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "leopardo", + "wordSecond": "豹 (ひょう, hyou)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "guepardo", + "wordSecond": "チーター (ちーたー, chiitaa)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "hiena", + "wordSecond": "ハイエナ (はいえな, haiena)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "crocodilo", + "wordSecond": "ワニ (わに, wani)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "jacaré", + "wordSecond": "アリゲーター (ありげーたー, arigeetaa)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "búfalo", + "wordSecond": "水牛 (すいぎゅう, suigyuu)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "alce", + "wordSecond": "ヘラジカ (へらじか, herajika)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cervo", + "wordSecond": "シカ (しか, shika)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cão selvagem", + "wordSecond": "リカオン (りかおん, rikaon)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "suricata", + "wordSecond": "ミーアキャット (みーあきゃっと, miia kyatto)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ornitorrinco", + "wordSecond": "カモノハシ (かものはし, kamo no hashi)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "equidna", + "wordSecond": "ハリモグラ (はりもぐら, harimogura)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "coala", + "wordSecond": "コアラ (こあら, koara)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dingo", + "wordSecond": "ディンゴ (でぃんご, dingo)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cangambá", + "wordSecond": "スカンク (すかんく, sukanku)", + "createdAt": "2026-02-19T13:24:01.285Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_pt_ko_A1.json b/output/2026_02_19_animals_wildlife_pt_ko_A1.json new file mode 100644 index 0000000..dce0a23 --- /dev/null +++ b/output/2026_02_19_animals_wildlife_pt_ko_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:24:49.026Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cachorro", + "wordSecond": "개 (gae)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "gato", + "wordSecond": "고양이 (goyangi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pássaro", + "wordSecond": "새 (sae)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "vaca", + "wordSecond": "소 (so)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cavalo", + "wordSecond": "말 (mal)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "porco", + "wordSecond": "돼지 (dwaeji)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "galinha", + "wordSecond": "닭 (dak)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "leão", + "wordSecond": "사자 (saja)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tigre", + "wordSecond": "호랑이 (horangi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "elefante", + "wordSecond": "코끼리 (kokkiri)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "urso", + "wordSecond": "곰 (gom)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "peixe", + "wordSecond": "물고기 (mulgogi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "baleia", + "wordSecond": "고래 (gorae)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tubarão", + "wordSecond": "상어 (sangeo)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "borboleta", + "wordSecond": "나비 (nabi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "abelha", + "wordSecond": "벌 (beol)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "formiga", + "wordSecond": "개미 (gaemi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "rato", + "wordSecond": "쥐 (jwi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "coelho", + "wordSecond": "토끼 (tokki)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "macaco", + "wordSecond": "원숭이 (wonsungi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cobra", + "wordSecond": "뱀 (baem)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "crocodilo", + "wordSecond": "악어 (ageo)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "girafa", + "wordSecond": "기린 (girin)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "zebra", + "wordSecond": "얼룩말 (eollukmal)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "hipopótamo", + "wordSecond": "하마 (hama)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "rinoceronte", + "wordSecond": "코뿔소 (koppulso)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lobo", + "wordSecond": "늑대 (neukdae)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "raposa", + "wordSecond": "여우 (yeou)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "coruja", + "wordSecond": "올빼미 (olppaemi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "morcego", + "wordSecond": "박쥐 (bakjwi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "esquilo", + "wordSecond": "다람쥐 (daramjwi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tartaruga", + "wordSecond": "거북이 (geobugi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "polvo", + "wordSecond": "문어 (muneo)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lula", + "wordSecond": "오징어 (ojingeo)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "caranguejo", + "wordSecond": "게 (ge)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lagosta", + "wordSecond": "바닷가재 (badatgajae)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "golfinho", + "wordSecond": "돌고래 (dolgorae)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "foca", + "wordSecond": "물개 (mulgae)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pinguim", + "wordSecond": "펭귄 (penggwin)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "águia", + "wordSecond": "독수리 (doksuri)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pato", + "wordSecond": "오리 (ori)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cisne", + "wordSecond": "백조 (baekjo)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pombo", + "wordSecond": "비둘기 (bidulgi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "corvo", + "wordSecond": "까마귀 (kkamagwi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pavão", + "wordSecond": "공작 (gongjak)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "peru", + "wordSecond": "칠면조 (chilmyeonjo)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "camelo", + "wordSecond": "낙타 (nakta)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "canguru", + "wordSecond": "캥거루 (kaenggeoru)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "panda", + "wordSecond": "판다 (panda)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "koala", + "wordSecond": "코알라 (koalla)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "preguiça", + "wordSecond": "나무늘보 (namuneulbo)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tatu", + "wordSecond": "아르마딜로 (areumadillo)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "guaxinim", + "wordSecond": "너구리 (neoguri)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "doninha", + "wordSecond": "족제비 (jokjebi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "texugo", + "wordSecond": "오소리 (osori)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "castor", + "wordSecond": "비버 (bibeo)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "porco-espinho", + "wordSecond": "고슴도치 (goseumdochi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "toupeira", + "wordSecond": "두더지 (dudeoji)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ouriço", + "wordSecond": "고슴도치 (goseumdochi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lagarto", + "wordSecond": "도마뱀 (domabaem)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "iguana", + "wordSecond": "이구아나 (iguana)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "camaleão", + "wordSecond": "카멜레온 (kamelleon)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sapo", + "wordSecond": "개구리 (gaeguri)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "rã", + "wordSecond": "개구리 (gaeguri)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "salamandra", + "wordSecond": "도롱뇽 (dorongnyong)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "caracol", + "wordSecond": "달팽이 (dalpaengi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lesma", + "wordSecond": "민달팽이 (mindalpaengi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "minhoca", + "wordSecond": "지렁이 (jireongi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "aranha", + "wordSecond": "거미 (geomi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "escorpião", + "wordSecond": "전갈 (jeongal)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "centopeia", + "wordSecond": "지네 (jine)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "joaninha", + "wordSecond": "무당벌레 (mudangbeolle)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "gafanhoto", + "wordSecond": "메뚜기 (mettugi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "grilo", + "wordSecond": "귀뚜라미 (gwitturami)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "libélula", + "wordSecond": "잠자리 (jamjari)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "mosquito", + "wordSecond": "모기 (mogi)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "mosca", + "wordSecond": "파리 (pari)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "barata", + "wordSecond": "바퀴벌레 (bakwibeolle)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "besouro", + "wordSecond": "딱정벌레 (ttakjeongbeolle)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lagarta", + "wordSecond": "애벌레 (aebeolle)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "carneiro", + "wordSecond": "양 (yang)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cabra", + "wordSecond": "염소 (yeomso)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ovelha", + "wordSecond": "양 (yang)", + "createdAt": "2026-02-19T13:24:49.026Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_pt_pl_A1.json b/output/2026_02_19_animals_wildlife_pt_pl_A1.json new file mode 100644 index 0000000..7bbda7e --- /dev/null +++ b/output/2026_02_19_animals_wildlife_pt_pl_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:25:05.979Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cachorro", + "wordSecond": "pies", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "gato", + "wordSecond": "kot", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pássaro", + "wordSecond": "ptak", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "vaca", + "wordSecond": "krowa", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cavalo", + "wordSecond": "koń", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "porco", + "wordSecond": "świnia", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "galinha", + "wordSecond": "kura", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "leão", + "wordSecond": "lew", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tigre", + "wordSecond": "tygrys", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "elefante", + "wordSecond": "słoń", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "urso", + "wordSecond": "niedźwiedź", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "peixe", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "baleia", + "wordSecond": "wieloryb", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tubarão", + "wordSecond": "rekin", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "borboleta", + "wordSecond": "motyl", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "abelha", + "wordSecond": "pszczoła", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "formiga", + "wordSecond": "mrówka", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "rato", + "wordSecond": "mysz", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "coelho", + "wordSecond": "królik", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cobra", + "wordSecond": "wąż", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "macaco", + "wordSecond": "małpa", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "girafa", + "wordSecond": "żyrafa", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "zebra", + "wordSecond": "zebra", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "rinoceronte", + "wordSecond": "nosorożec", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "hipopótamo", + "wordSecond": "hipopotam", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "crocodilo", + "wordSecond": "krokodyl", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "lagarto", + "wordSecond": "jaszczurka", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tartaruga", + "wordSecond": "żółw", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sapo", + "wordSecond": "żaba", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "caracol", + "wordSecond": "ślimak", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "minhoca", + "wordSecond": "dżdżownica", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "aranha", + "wordSecond": "pająk", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "mosca", + "wordSecond": "mucha", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "mosquito", + "wordSecond": "komar", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "joaninha", + "wordSecond": "biedronka", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "grilo", + "wordSecond": "świerszcz", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "libélula", + "wordSecond": "ważka", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "lagosta", + "wordSecond": "homar", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "caranguejo", + "wordSecond": "krab", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "polvo", + "wordSecond": "ośmiornica", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "lula", + "wordSecond": "kałamarnica", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "estrela-do-mar", + "wordSecond": "rozgwiazda", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "golfinho", + "wordSecond": "delfin", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "foca", + "wordSecond": "foka", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pinguim", + "wordSecond": "pingwin", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "coruja", + "wordSecond": "sowa", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "águia", + "wordSecond": "orzeł", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "corvo", + "wordSecond": "kruk", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pardal", + "wordSecond": "wróbel", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pombo", + "wordSecond": "gołąb", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pato", + "wordSecond": "kaczka", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cisne", + "wordSecond": "łabędź", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ganso", + "wordSecond": "gęś", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "peru", + "wordSecond": "indyk", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ovelha", + "wordSecond": "owca", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cabra", + "wordSecond": "koza", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "burro", + "wordSecond": "osioł", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "camelo", + "wordSecond": "wielbłąd", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "esquilo", + "wordSecond": "wiewiórka", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "texugo", + "wordSecond": "borsuk", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "raposa", + "wordSecond": "lis", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "lobo", + "wordSecond": "wilk", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "veado", + "wordSecond": "jeleń", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "javali", + "wordSecond": "dzik", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "morcego", + "wordSecond": "nietoperz", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "toupeira", + "wordSecond": "kret", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ouriço", + "wordSecond": "jeż", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "panda", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "canguru", + "wordSecond": "kangur", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "coala", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "leopardo", + "wordSecond": "lampart", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "guepardo", + "wordSecond": "gepard", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "hiena", + "wordSecond": "hiena", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "suricata", + "wordSecond": "surykatka", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "lêmure", + "wordSecond": "lemur", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "gorila", + "wordSecond": "goryl", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "chimpanzé", + "wordSecond": "szympans", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "orangotango", + "wordSecond": "orangutan", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "búfalo", + "wordSecond": "bawół", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "alce", + "wordSecond": "łoś", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "castor", + "wordSecond": "bóbr", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "lontra", + "wordSecond": "wydra", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "falcão", + "wordSecond": "jastrząb", + "createdAt": "2026-02-19T13:25:05.979Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_pt_zh_A1.json b/output/2026_02_19_animals_wildlife_pt_zh_A1.json new file mode 100644 index 0000000..950345d --- /dev/null +++ b/output/2026_02_19_animals_wildlife_pt_zh_A1.json @@ -0,0 +1,1072 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:24:24.496Z", + "metadata": { + "itemCount": 81, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cachorro", + "wordSecond": "狗 (gǒu)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "gato", + "wordSecond": "猫 (māo)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pássaro", + "wordSecond": "鸟 (niǎo)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "vaca", + "wordSecond": "牛 (niú)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cavalo", + "wordSecond": "马 (mǎ)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "porco", + "wordSecond": "猪 (zhū)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "galinha", + "wordSecond": "鸡 (jī)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "leão", + "wordSecond": "狮子 (shīzi)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tigre", + "wordSecond": "老虎 (lǎohǔ)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "elefante", + "wordSecond": "大象 (dàxiàng)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "urso", + "wordSecond": "熊 (xióng)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "peixe", + "wordSecond": "鱼 (yú)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "baleia", + "wordSecond": "鲸鱼 (jīngyú)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tubarão", + "wordSecond": "鲨鱼 (shāyú)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "borboleta", + "wordSecond": "蝴蝶 (húdié)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "abelha", + "wordSecond": "蜜蜂 (mìfēng)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "formiga", + "wordSecond": "蚂蚁 (mǎyǐ)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "rato", + "wordSecond": "老鼠 (lǎoshǔ)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "coelho", + "wordSecond": "兔子 (tùzi)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cobra", + "wordSecond": "蛇 (shé)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "macaco", + "wordSecond": "猴子 (hóuzi)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "girafa", + "wordSecond": "长颈鹿 (chángjǐnglù)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "zebra", + "wordSecond": "斑马 (bānmǎ)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pinguim", + "wordSecond": "企鹅 (qǐ'é)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "coruja", + "wordSecond": "猫头鹰 (māotóuyīng)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "morcego", + "wordSecond": "蝙蝠 (biānfú)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ovelha", + "wordSecond": "羊 (yáng)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cabra", + "wordSecond": "山羊 (shānyáng)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pato", + "wordSecond": "鸭子 (yāzi)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ganso", + "wordSecond": "鹅 (é)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "peru", + "wordSecond": "火鸡 (huǒjī)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "coelho", + "wordSecond": "兔子 (tùzi)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "hamster", + "wordSecond": "仓鼠 (cāngshǔ)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "peixe dourado", + "wordSecond": "金鱼 (jīnyú)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "papagaio", + "wordSecond": "鹦鹉 (yīngwǔ)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "canário", + "wordSecond": "金丝雀 (jīnsīquè)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tartaruga", + "wordSecond": "乌龟 (wūguī)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "lagarto", + "wordSecond": "蜥蜴 (xīyì)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sapo", + "wordSecond": "青蛙 (qīngwā)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "caracol", + "wordSecond": "蜗牛 (wōniú)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "minhoca", + "wordSecond": "蚯蚓 (qiūyǐn)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "aranha", + "wordSecond": "蜘蛛 (zhīzhū)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "mosca", + "wordSecond": "苍蝇 (cāngying)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "mosquito", + "wordSecond": "蚊子 (wénzi)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "joaninha", + "wordSecond": "瓢虫 (piáochóng)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "gafanhoto", + "wordSecond": "蚱蜢 (zhàměng)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "grilo", + "wordSecond": "蟋蟀 (xīshuài)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "caranguejo", + "wordSecond": "螃蟹 (pángxiè)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "lagosta", + "wordSecond": "龙虾 (lóngxiā)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "polvo", + "wordSecond": "章鱼 (zhāngyú)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "lula", + "wordSecond": "鱿鱼 (yóuyú)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "golfinho", + "wordSecond": "海豚 (hǎitún)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "foca", + "wordSecond": "海豹 (hǎibào)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "leão-marinho", + "wordSecond": "海狮 (hǎishī)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "raposa", + "wordSecond": "狐狸 (húli)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "lobo", + "wordSecond": "狼 (láng)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "coiote", + "wordSecond": "郊狼 (jiāoláng)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "javali", + "wordSecond": "野猪 (yězhū)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "veado", + "wordSecond": "鹿 (lù)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "alce", + "wordSecond": "麋鹿 (mílù)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "rinoceronte", + "wordSecond": "犀牛 (xīniú)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "hipopótamo", + "wordSecond": "河马 (hémǎ)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "crocodilo", + "wordSecond": "鳄鱼 (èyú)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "jacaré", + "wordSecond": "短吻鳄 (duǎnwěn'è)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "camaleão", + "wordSecond": "变色龙 (biànsèlóng)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "iguana", + "wordSecond": "鬣蜥 (lièxī)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "panda", + "wordSecond": "熊猫 (xióngmāo)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "koala", + "wordSecond": "考拉 (kǎolā)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "canguru", + "wordSecond": "袋鼠 (dàishǔ)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ornitorrinco", + "wordSecond": "鸭嘴兽 (yāzuǐshòu)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "esquilo", + "wordSecond": "松鼠 (sōngshǔ)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "toupeira", + "wordSecond": "鼹鼠 (yǎnshǔ)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "texugo", + "wordSecond": "獾 (huān)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "doninha", + "wordSecond": "鼬 (yòu)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "furão", + "wordSecond": "雪貂 (xuědiāo)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "guaxinim", + "wordSecond": "浣熊 (huànxióng)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "preguiça", + "wordSecond": "树懒 (shùlǎn)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tamanduá", + "wordSecond": "食蚁兽 (shíyǐshòu)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tatu", + "wordSecond": "犰狳 (qiúyú)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "porco-espinho", + "wordSecond": "豪猪 (háozhū)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "castor", + "wordSecond": "海狸 (hǎilí)", + "createdAt": "2026-02-19T13:24:24.496Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_zh_ko_A1.json b/output/2026_02_19_animals_wildlife_zh_ko_A1.json new file mode 100644 index 0000000..dee484e --- /dev/null +++ b/output/2026_02_19_animals_wildlife_zh_ko_A1.json @@ -0,0 +1,1085 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:33:36.266Z", + "metadata": { + "itemCount": 82, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "狗 (gǒu)", + "wordSecond": "개 (gae)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "猫 (māo)", + "wordSecond": "고양이 (goyangi)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "鸟 (niǎo)", + "wordSecond": "새 (sae)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "鱼 (yú)", + "wordSecond": "물고기 (mulgogi)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "牛 (niú)", + "wordSecond": "소 (so)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "马 (mǎ)", + "wordSecond": "말 (mal)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "猪 (zhū)", + "wordSecond": "돼지 (dwaeji)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "鸡 (jī)", + "wordSecond": "닭 (dak)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "羊 (yáng)", + "wordSecond": "양 (yang)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "鸭 (yā)", + "wordSecond": "오리 (ori)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "兔子 (tùzi)", + "wordSecond": "토끼 (tokki)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "老鼠 (lǎoshǔ)", + "wordSecond": "쥐 (jwi)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "狮子 (shīzi)", + "wordSecond": "사자 (saja)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "老虎 (lǎohǔ)", + "wordSecond": "호랑이 (horangi)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "大象 (dàxiàng)", + "wordSecond": "코끼리 (kokkiri)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "熊 (xióng)", + "wordSecond": "곰 (gom)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "狼 (láng)", + "wordSecond": "늑대 (neukdae)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "狐狸 (húli)", + "wordSecond": "여우 (yeou)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "猴子 (hóuzi)", + "wordSecond": "원숭이 (wonsungi)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "长颈鹿 (chángjǐnglù)", + "wordSecond": "기린 (girin)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "斑马 (bānmǎ)", + "wordSecond": "얼룩말 (eollungmal)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "熊猫 (xióngmāo)", + "wordSecond": "판다 (panda)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "袋鼠 (dàishǔ)", + "wordSecond": "캥거루 (kaenggeoru)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "鲸鱼 (jīngyú)", + "wordSecond": "고래 (gorae)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "鲨鱼 (shāyú)", + "wordSecond": "상어 (sangeo)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "海豚 (hǎitún)", + "wordSecond": "돌고래 (dolgorae)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "章鱼 (zhāngyú)", + "wordSecond": "문어 (muneo)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "螃蟹 (pángxiè)", + "wordSecond": "게 (ge)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "虾 (xiā)", + "wordSecond": "새우 (saeu)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "海星 (hǎixīng)", + "wordSecond": "불가사리 (bulgasari)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "蝴蝶 (húdié)", + "wordSecond": "나비 (nabi)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "蜜蜂 (mìfēng)", + "wordSecond": "벌 (beol)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "蚂蚁 (mǎyǐ)", + "wordSecond": "개미 (gaemi)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "蜘蛛 (zhīzhū)", + "wordSecond": "거미 (geomi)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "苍蝇 (cāngying)", + "wordSecond": "파리 (pari)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "蚊子 (wénzi)", + "wordSecond": "모기 (mogi)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "蟑螂 (zhāngláng)", + "wordSecond": "바퀴벌레 (bakwibeolle)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "蛇 (shé)", + "wordSecond": "뱀 (baem)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "青蛙 (qīngwā)", + "wordSecond": "개구리 (gaeguri)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "乌龟 (wūguī)", + "wordSecond": "거북이 (geobugi)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "鳄鱼 (èyú)", + "wordSecond": "악어 (ageo)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "恐龙 (kǒnglóng)", + "wordSecond": "공룡 (gongnyong)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "鸟巢 (niǎocháo)", + "wordSecond": "둥지 (dungji)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "蛋 (dàn)", + "wordSecond": "알 (al)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "羽毛 (yǔmáo)", + "wordSecond": "깃털 (gitteol)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "爪子 (zhuǎzi)", + "wordSecond": "발톱 (baltop)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "尾巴 (wěiba)", + "wordSecond": "꼬리 (kkori)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "角 (jiǎo)", + "wordSecond": "뿔 (ppul)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "翅膀 (chìbǎng)", + "wordSecond": "날개 (nalgae)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "毛 (máo)", + "wordSecond": "털 (teol)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "皮 (pí)", + "wordSecond": "가죽 (gajuk)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "动物园 (dòngwùyuán)", + "wordSecond": "동물원 (dongmurwon)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "农场 (nóngchǎng)", + "wordSecond": "농장 (nongjang)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "森林 (sēnlín)", + "wordSecond": "숲 (sup)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "海洋 (hǎiyáng)", + "wordSecond": "바다 (bada)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "河 (hé)", + "wordSecond": "강 (gang)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "湖 (hú)", + "wordSecond": "호수 (hosu)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "山 (shān)", + "wordSecond": "산 (san)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "洞穴 (dòngxué)", + "wordSecond": "동굴 (donggul)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "天空 (tiānkōng)", + "wordSecond": "하늘 (haneul)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "食物 (shíwù)", + "wordSecond": "음식 (eumsik)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "水 (shuǐ)", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "肉 (ròu)", + "wordSecond": "고기 (gogi)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "草 (cǎo)", + "wordSecond": "풀 (pul)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "叶子 (yèzi)", + "wordSecond": "잎 (ip)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "水果 (shuǐguǒ)", + "wordSecond": "과일 (gwail)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "坚果 (jiānguǒ)", + "wordSecond": "견과 (gyeongwa)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "种子 (zhǒngzi)", + "wordSecond": "씨 (ssi)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "花 (huā)", + "wordSecond": "꽃 (kkot)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "树 (shù)", + "wordSecond": "나무 (namu)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "植物 (zhíwù)", + "wordSecond": "식물 (singmul)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "昆虫 (kūnchóng)", + "wordSecond": "곤충 (gonchung)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "动物 (dòngwù)", + "wordSecond": "동물 (dongmul)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "宠物 (chǒngwù)", + "wordSecond": "애완동물 (aewandongmul)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "野生动物 (yěshēng dòngwù)", + "wordSecond": "야생동물 (yasaengdongmul)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "家畜 (jiāchù)", + "wordSecond": "가축 (gachuk)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "幼崽 (yòuzǎi)", + "wordSecond": "새끼 (saekki)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "妈妈 (māmā)", + "wordSecond": "엄마 (eomma)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "爸爸 (bàba)", + "wordSecond": "아빠 (appa)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "宝宝 (bǎobǎo)", + "wordSecond": "아기 (agi)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "家庭 (jiātíng)", + "wordSecond": "가족 (gajok)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "朋友 (péngyou)", + "wordSecond": "친구 (chingu)", + "createdAt": "2026-02-19T13:33:36.266Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_animals_wildlife_zh_pl_A1.json b/output/2026_02_19_animals_wildlife_zh_pl_A1.json new file mode 100644 index 0000000..9d9ad2b --- /dev/null +++ b/output/2026_02_19_animals_wildlife_zh_pl_A1.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:33:58.167Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Animals & Wildlife" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Animals & Wildlife" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "狗 (gǒu)", + "wordSecond": "pies", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "猫 (māo)", + "wordSecond": "kot", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鸟 (niǎo)", + "wordSecond": "ptak", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鱼 (yú)", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "牛 (niú)", + "wordSecond": "krowa", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "马 (mǎ)", + "wordSecond": "koń", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "猪 (zhū)", + "wordSecond": "świnia", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鸡 (jī)", + "wordSecond": "kura", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "羊 (yáng)", + "wordSecond": "owca", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鸭 (yā)", + "wordSecond": "kaczka", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "狮子 (shīzi)", + "wordSecond": "lew", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "老虎 (lǎohǔ)", + "wordSecond": "tygrys", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "大象 (dàxiàng)", + "wordSecond": "słoń", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "熊 (xióng)", + "wordSecond": "niedźwiedź", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "猴子 (hóuzi)", + "wordSecond": "małpa", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "狼 (láng)", + "wordSecond": "wilk", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "狐狸 (húli)", + "wordSecond": "lis", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "兔子 (tùzi)", + "wordSecond": "królik", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "老鼠 (lǎoshǔ)", + "wordSecond": "mysz", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蛇 (shé)", + "wordSecond": "wąż", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鲸鱼 (jīngyú)", + "wordSecond": "wieloryb", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鲨鱼 (shāyú)", + "wordSecond": "rekin", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "海豚 (hǎitún)", + "wordSecond": "delfin", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "章鱼 (zhāngyú)", + "wordSecond": "ośmiornica", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "螃蟹 (pángxiè)", + "wordSecond": "krab", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "虾 (xiā)", + "wordSecond": "krewetka", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "海星 (hǎixīng)", + "wordSecond": "rozgwiazda", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "海豹 (hǎibào)", + "wordSecond": "foka", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蝴蝶 (húdié)", + "wordSecond": "motyl", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蜜蜂 (mìfēng)", + "wordSecond": "pszczoła", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蚂蚁 (mǎyǐ)", + "wordSecond": "mrówka", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "苍蝇 (cāngying)", + "wordSecond": "mucha", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蚊子 (wénzi)", + "wordSecond": "komar", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蜘蛛 (zhīzhū)", + "wordSecond": "pająk", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蜗牛 (wōniú)", + "wordSecond": "ślimak", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "青蛙 (qīngwā)", + "wordSecond": "żaba", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "乌龟 (wūguī)", + "wordSecond": "żółw", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鳄鱼 (èyú)", + "wordSecond": "krokodyl", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "长颈鹿 (chángjǐnglù)", + "wordSecond": "żyrafa", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "斑马 (bānmǎ)", + "wordSecond": "zebra", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "河马 (hémǎ)", + "wordSecond": "hipopotam", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "犀牛 (xīniú)", + "wordSecond": "nosorożec", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "袋鼠 (dàishǔ)", + "wordSecond": "kangur", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "考拉 (kǎolā)", + "wordSecond": "koala", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "熊猫 (xióngmāo)", + "wordSecond": "panda", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "骆驼 (luòtuo)", + "wordSecond": "wielbłąd", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "企鹅 (qǐ'é)", + "wordSecond": "pingwin", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鹰 (yīng)", + "wordSecond": "orzeł", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鸽子 (gēzi)", + "wordSecond": "gołąb", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "乌鸦 (wūyā)", + "wordSecond": "kruk", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "麻雀 (máquè)", + "wordSecond": "wróbel", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "天鹅 (tiān'é)", + "wordSecond": "łabędź", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "孔雀 (kǒngquè)", + "wordSecond": "paw", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "猫头鹰 (māotóuyīng)", + "wordSecond": "sowa", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蝙蝠 (biānfú)", + "wordSecond": "nietoperz", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "松鼠 (sōngshǔ)", + "wordSecond": "wiewiórka", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "刺猬 (cìwei)", + "wordSecond": "jeż", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鹿 (lù)", + "wordSecond": "jeleń", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "麋鹿 (mílù)", + "wordSecond": "łoś", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "野猪 (yězhū)", + "wordSecond": "dzik", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "狐狸 (húli)", + "wordSecond": "lis", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "浣熊 (huànxióng)", + "wordSecond": "szop", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "臭鼬 (chòuyòu)", + "wordSecond": "skunks", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "水獭 (shuǐtǎ)", + "wordSecond": "wydra", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "海狸 (hǎilí)", + "wordSecond": "bóbr", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鼹鼠 (yǎnshǔ)", + "wordSecond": "kret", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "仓鼠 (cāngshǔ)", + "wordSecond": "chomik", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "豚鼠 (túnshǔ)", + "wordSecond": "świnka morska", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鹦鹉 (yīngwǔ)", + "wordSecond": "papuga", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "金鱼 (jīnyú)", + "wordSecond": "złota rybka", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "仓鼠 (cāngshǔ)", + "wordSecond": "chomik", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蜥蜴 (xīyì)", + "wordSecond": "jaszczurka", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "变色龙 (biànsèlóng)", + "wordSecond": "kameleon", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鬣蜥 (lièxī)", + "wordSecond": "iguana", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蝌蚪 (kēdǒu)", + "wordSecond": "kijanka", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "毛毛虫 (máomaochóng)", + "wordSecond": "gąsienica", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "瓢虫 (piáochóng)", + "wordSecond": "biedronka", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蟑螂 (zhāngláng)", + "wordSecond": "karaluch", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蚱蜢 (zhàměng)", + "wordSecond": "konik polny", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蝉 (chán)", + "wordSecond": "cykada", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "萤火虫 (yínghuǒchóng)", + "wordSecond": "świetlik", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蜈蚣 (wúgōng)", + "wordSecond": "stonoga", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蝎子 (xiēzi)", + "wordSecond": "skorpion", + "createdAt": "2026-02-19T13:33:58.167Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_arts_culture_en_es_B1.json b/output/2026_02_19_arts_culture_en_es_B1.json new file mode 100644 index 0000000..1f5b058 --- /dev/null +++ b/output/2026_02_19_arts_culture_en_es_B1.json @@ -0,0 +1,1215 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T16:02:58.809Z", + "metadata": { + "itemCount": 92, + "categoryCount": 1, + "exportScope": "Category: Arts & Culture" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Arts & Culture" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "painting", + "wordSecond": "pintura", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sculpture", + "wordSecond": "escultura", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "gallery", + "wordSecond": "galería", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "canvas", + "wordSecond": "lienzo", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "portrait", + "wordSecond": "retrato", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "museum", + "wordSecond": "museo", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "artist", + "wordSecond": "artista", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "exhibition", + "wordSecond": "exposición", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "drawing", + "wordSecond": "dibujo", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sketch", + "wordSecond": "boceto", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "brush", + "wordSecond": "pincel", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "color", + "wordSecond": "color", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "palette", + "wordSecond": "paleta", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "frame", + "wordSecond": "marco", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "artwork", + "wordSecond": "obra de arte", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "theatre", + "wordSecond": "teatro", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "concert", + "wordSecond": "concierto", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "orchestra", + "wordSecond": "orquesta", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dance", + "wordSecond": "baile", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "opera", + "wordSecond": "ópera", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "stage", + "wordSecond": "escenario", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "actor", + "wordSecond": "actor", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "actress", + "wordSecond": "actriz", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "audience", + "wordSecond": "público", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "performance", + "wordSecond": "actuación", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "play", + "wordSecond": "obra de teatro", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ballet", + "wordSecond": "ballet", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "melody", + "wordSecond": "melodía", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rhythm", + "wordSecond": "ritmo", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "chord", + "wordSecond": "acorde", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "instrument", + "wordSecond": "instrumento", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "genre", + "wordSecond": "género", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "song", + "wordSecond": "canción", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "singer", + "wordSecond": "cantante", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "band", + "wordSecond": "banda", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "guitar", + "wordSecond": "guitarra", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "piano", + "wordSecond": "piano", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "violin", + "wordSecond": "violín", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "drum", + "wordSecond": "tambor", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "note", + "wordSecond": "nota", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lyrics", + "wordSecond": "letra", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "film", + "wordSecond": "película", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "director", + "wordSecond": "director", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "scene", + "wordSecond": "escena", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "trailer", + "wordSecond": "tráiler", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "premiere", + "wordSecond": "estreno", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cinema", + "wordSecond": "cine", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "screen", + "wordSecond": "pantalla", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "script", + "wordSecond": "guion", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "camera", + "wordSecond": "cámara", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "character", + "wordSecond": "personaje", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "plot", + "wordSecond": "trama", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "soundtrack", + "wordSecond": "banda sonora", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "animation", + "wordSecond": "animación", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "documentary", + "wordSecond": "documental", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "comedy", + "wordSecond": "comedia", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "drama", + "wordSecond": "drama", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "action", + "wordSecond": "acción", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "horror", + "wordSecond": "terror", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "romance", + "wordSecond": "romance", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "science fiction", + "wordSecond": "ciencia ficción", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "thriller", + "wordSecond": "thriller", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "western", + "wordSecond": "western", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fantasy", + "wordSecond": "fantasía", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "musical", + "wordSecond": "musical", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "biography", + "wordSecond": "biografía", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "adventure", + "wordSecond": "aventura", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mystery", + "wordSecond": "misterio", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "family", + "wordSecond": "familiar", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "history", + "wordSecond": "historia", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "war", + "wordSecond": "guerra", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "crime", + "wordSecond": "crimen", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sports", + "wordSecond": "deportes", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "superhero", + "wordSecond": "superhéroe", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "zombie", + "wordSecond": "zombi", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "vampire", + "wordSecond": "vampiro", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "alien", + "wordSecond": "alienígena", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "robot", + "wordSecond": "robot", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "magic", + "wordSecond": "magia", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "future", + "wordSecond": "futuro", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "past", + "wordSecond": "pasado", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "present", + "wordSecond": "presente", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "love", + "wordSecond": "amor", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hate", + "wordSecond": "odio", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fear", + "wordSecond": "miedo", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "joy", + "wordSecond": "alegría", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sadness", + "wordSecond": "tristeza", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "anger", + "wordSecond": "ira", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "surprise", + "wordSecond": "sorpresa", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "disgust", + "wordSecond": "asco", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "trust", + "wordSecond": "confianza", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "anticipation", + "wordSecond": "anticipación", + "createdAt": "2026-02-19T16:02:58.809Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_arts_culture_en_pt_B1.json b/output/2026_02_19_arts_culture_en_pt_B1.json new file mode 100644 index 0000000..346e1ee --- /dev/null +++ b/output/2026_02_19_arts_culture_en_pt_B1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T16:13:14.977Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Arts & Culture" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Arts & Culture" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "painting", + "wordSecond": "pintura", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sculpture", + "wordSecond": "escultura", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "gallery", + "wordSecond": "galeria", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "canvas", + "wordSecond": "tela", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "portrait", + "wordSecond": "retrato", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "theatre", + "wordSecond": "teatro", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "concert", + "wordSecond": "concerto", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "orchestra", + "wordSecond": "orquestra", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dance", + "wordSecond": "dança", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "opera", + "wordSecond": "ópera", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "melody", + "wordSecond": "melodia", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rhythm", + "wordSecond": "ritmo", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chord", + "wordSecond": "acorde", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "instrument", + "wordSecond": "instrumento", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "genre", + "wordSecond": "gênero", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "film", + "wordSecond": "filme", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "director", + "wordSecond": "diretor", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "scene", + "wordSecond": "cena", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "trailer", + "wordSecond": "trailer", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "premiere", + "wordSecond": "estreia", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "artist", + "wordSecond": "artista", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "exhibition", + "wordSecond": "exposição", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "museum", + "wordSecond": "museu", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "drawing", + "wordSecond": "desenho", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sketch", + "wordSecond": "esboço", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "brush", + "wordSecond": "pincel", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "palette", + "wordSecond": "paleta", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "clay", + "wordSecond": "argila", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "marble", + "wordSecond": "mármore", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "statue", + "wordSecond": "estátua", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stage", + "wordSecond": "palco", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "actor", + "wordSecond": "ator", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "actress", + "wordSecond": "atriz", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "audience", + "wordSecond": "público", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "performance", + "wordSecond": "apresentação", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ballet", + "wordSecond": "balé", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "symphony", + "wordSecond": "sinfonia", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "choir", + "wordSecond": "coral", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "song", + "wordSecond": "canção", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lyrics", + "wordSecond": "letra", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tune", + "wordSecond": "melodia", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "beat", + "wordSecond": "batida", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "band", + "wordSecond": "banda", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "piano", + "wordSecond": "piano", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "guitar", + "wordSecond": "violão", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "violin", + "wordSecond": "violino", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "drum", + "wordSecond": "bateria", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "jazz", + "wordSecond": "jazz", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rock", + "wordSecond": "rock", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pop", + "wordSecond": "pop", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "classical", + "wordSecond": "clássico", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cinema", + "wordSecond": "cinema", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "movie", + "wordSecond": "filme", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "screen", + "wordSecond": "tela", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "script", + "wordSecond": "roteiro", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "character", + "wordSecond": "personagem", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "plot", + "wordSecond": "enredo", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dialogue", + "wordSecond": "diálogo", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "camera", + "wordSecond": "câmera", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lighting", + "wordSecond": "iluminação", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "costume", + "wordSecond": "figurino", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "makeup", + "wordSecond": "maquiagem", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "set", + "wordSecond": "cenário", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "soundtrack", + "wordSecond": "trilha sonora", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "subtitles", + "wordSecond": "legendas", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "review", + "wordSecond": "crítica", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "award", + "wordSecond": "prêmio", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "festival", + "wordSecond": "festival", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "culture", + "wordSecond": "cultura", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tradition", + "wordSecond": "tradição", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "heritage", + "wordSecond": "patrimônio", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "craft", + "wordSecond": "artesanato", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "design", + "wordSecond": "design", + "createdAt": "2026-02-19T16:13:14.977Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_arts_culture_es_pt_B1.json b/output/2026_02_19_arts_culture_es_pt_B1.json new file mode 100644 index 0000000..0b81e9c --- /dev/null +++ b/output/2026_02_19_arts_culture_es_pt_B1.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T16:13:29.841Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Arts & Culture" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Arts & Culture" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pintura", + "wordSecond": "pintura", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escultura", + "wordSecond": "escultura", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "galería", + "wordSecond": "galeria", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lienzo", + "wordSecond": "tela", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "retrato", + "wordSecond": "retrato", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pincel", + "wordSecond": "pincel", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "arte", + "wordSecond": "arte", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "museo", + "wordSecond": "museu", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "exposición", + "wordSecond": "exposição", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "artista", + "wordSecond": "artista", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "obra", + "wordSecond": "obra", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dibujo", + "wordSecond": "desenho", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "acuarela", + "wordSecond": "aquarela", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "óleo", + "wordSecond": "óleo", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estatua", + "wordSecond": "estátua", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "teatro", + "wordSecond": "teatro", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "concierto", + "wordSecond": "concerto", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "orquesta", + "wordSecond": "orquestra", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "danza", + "wordSecond": "dança", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ópera", + "wordSecond": "ópera", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ballet", + "wordSecond": "balé", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "actuación", + "wordSecond": "atuação", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escenario", + "wordSecond": "palco", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "público", + "wordSecond": "público", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "melodía", + "wordSecond": "melodia", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ritmo", + "wordSecond": "ritmo", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "acorde", + "wordSecond": "acorde", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "instrumento", + "wordSecond": "instrumento", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "género", + "wordSecond": "gênero", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "canción", + "wordSecond": "canção", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cantante", + "wordSecond": "cantor", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "músico", + "wordSecond": "músico", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nota", + "wordSecond": "nota", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "coro", + "wordSecond": "coro", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sinfonía", + "wordSecond": "sinfonia", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "película", + "wordSecond": "filme", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "director", + "wordSecond": "diretor", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escena", + "wordSecond": "cena", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tráiler", + "wordSecond": "trailer", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estreno", + "wordSecond": "estreia", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "guion", + "wordSecond": "roteiro", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "actor", + "wordSecond": "ator", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "actriz", + "wordSecond": "atriz", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cine", + "wordSecond": "cinema", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "banda sonora", + "wordSecond": "trilha sonora", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "festival", + "wordSecond": "festival", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "crítica", + "wordSecond": "crítica", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "poesía", + "wordSecond": "poesia", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "novela", + "wordSecond": "romance", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escritor", + "wordSecond": "escritor", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "literatura", + "wordSecond": "literatura", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fotografía", + "wordSecond": "fotografia", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cámara", + "wordSecond": "câmera", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "diseño", + "wordSecond": "design", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "moda", + "wordSecond": "moda", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "arquitectura", + "wordSecond": "arquitetura", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "edificio", + "wordSecond": "edifício", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "monumento", + "wordSecond": "monumento", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "patrimonio", + "wordSecond": "patrimônio", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cultura", + "wordSecond": "cultura", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tradición", + "wordSecond": "tradição", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "folclore", + "wordSecond": "folclore", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "artesanía", + "wordSecond": "artesanato", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cerámica", + "wordSecond": "cerâmica", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "grabado", + "wordSecond": "gravura", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "collage", + "wordSecond": "colagem", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ilustración", + "wordSecond": "ilustração", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "boceto", + "wordSecond": "esboço", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "comedia", + "wordSecond": "comédia", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "drama", + "wordSecond": "drama", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tragedia", + "wordSecond": "tragédia", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "musical", + "wordSecond": "musical", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "espectáculo", + "wordSecond": "espetáculo", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "audiencia", + "wordSecond": "audiência", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aplauso", + "wordSecond": "aplauso", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "entrada", + "wordSecond": "ingresso", + "createdAt": "2026-02-19T16:13:29.841Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_de_fr_A2.json b/output/2026_02_19_body_parts_health_de_fr_A2.json new file mode 100644 index 0000000..888dddb --- /dev/null +++ b/output/2026_02_19_body_parts_health_de_fr_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:07:25.297Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kopf", + "wordSecond": "tête", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Auge", + "wordSecond": "œil", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Nase", + "wordSecond": "nez", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Mund", + "wordSecond": "bouche", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ohr", + "wordSecond": "oreille", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hals", + "wordSecond": "cou", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schulter", + "wordSecond": "épaule", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Arm", + "wordSecond": "bras", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ellbogen", + "wordSecond": "coude", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hand", + "wordSecond": "main", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Finger", + "wordSecond": "doigt", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Daumen", + "wordSecond": "pouce", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Brust", + "wordSecond": "poitrine", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Rücken", + "wordSecond": "dos", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bauch", + "wordSecond": "ventre", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hüfte", + "wordSecond": "hanche", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bein", + "wordSecond": "jambe", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Knie", + "wordSecond": "genou", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fuß", + "wordSecond": "pied", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Zehe", + "wordSecond": "orteil", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Haar", + "wordSecond": "cheveu", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gesicht", + "wordSecond": "visage", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Lippe", + "wordSecond": "lèvre", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Zahn", + "wordSecond": "dent", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Zunge", + "wordSecond": "langue", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kinn", + "wordSecond": "menton", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Stirn", + "wordSecond": "front", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wange", + "wordSecond": "joue", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hals", + "wordSecond": "gorge", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Handgelenk", + "wordSecond": "poignet", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Knöchel", + "wordSecond": "cheville", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Herz", + "wordSecond": "cœur", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Lunge", + "wordSecond": "poumon", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Leber", + "wordSecond": "foie", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Magen", + "wordSecond": "estomac", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Niere", + "wordSecond": "rein", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gehirn", + "wordSecond": "cerveau", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Knochen", + "wordSecond": "os", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Muskel", + "wordSecond": "muscle", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Blut", + "wordSecond": "sang", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Haut", + "wordSecond": "peau", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Nagel", + "wordSecond": "ongle", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schmerz", + "wordSecond": "douleur", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fieber", + "wordSecond": "fièvre", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Erkältung", + "wordSecond": "rhume", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Husten", + "wordSecond": "toux", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schnupfen", + "wordSecond": "rhinite", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kopfschmerzen", + "wordSecond": "mal de tête", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Halsschmerzen", + "wordSecond": "mal de gorge", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bauchschmerzen", + "wordSecond": "mal de ventre", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Müdigkeit", + "wordSecond": "fatigue", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "gesund", + "wordSecond": "sain", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "krank", + "wordSecond": "malade", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Arzt", + "wordSecond": "médecin", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ärztin", + "wordSecond": "médecin", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Krankenhaus", + "wordSecond": "hôpital", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Medizin", + "wordSecond": "médicament", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tablette", + "wordSecond": "comprimé", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pille", + "wordSecond": "pilule", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Injektion", + "wordSecond": "injection", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Verband", + "wordSecond": "pansement", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Operation", + "wordSecond": "opération", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Apotheke", + "wordSecond": "pharmacie", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Krankenwagen", + "wordSecond": "ambulance", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schwester", + "wordSecond": "infirmière", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pfleger", + "wordSecond": "infirmier", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Termin", + "wordSecond": "rendez-vous", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Untersuchung", + "wordSecond": "examen", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Diagnose", + "wordSecond": "diagnostic", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Behandlung", + "wordSecond": "traitement", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Erholung", + "wordSecond": "récupération", + "createdAt": "2026-02-19T14:07:25.297Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_de_it_A2.json b/output/2026_02_19_body_parts_health_de_it_A2.json new file mode 100644 index 0000000..54be088 --- /dev/null +++ b/output/2026_02_19_body_parts_health_de_it_A2.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:07:39.037Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kopf", + "wordSecond": "testa", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Arm", + "wordSecond": "braccio", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bein", + "wordSecond": "gamba", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hand", + "wordSecond": "mano", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fuß", + "wordSecond": "piede", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Auge", + "wordSecond": "occhio", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ohr", + "wordSecond": "orecchio", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nase", + "wordSecond": "naso", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mund", + "wordSecond": "bocca", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zahn", + "wordSecond": "dente", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hals", + "wordSecond": "collo", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schulter", + "wordSecond": "spalla", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rücken", + "wordSecond": "schiena", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Brust", + "wordSecond": "petto", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bauch", + "wordSecond": "pancia", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Finger", + "wordSecond": "dito", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Daumen", + "wordSecond": "pollice", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Knie", + "wordSecond": "ginocchio", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Knöchel", + "wordSecond": "caviglia", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zehe", + "wordSecond": "dito del piede", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Haar", + "wordSecond": "capello", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gesicht", + "wordSecond": "viso", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Lippe", + "wordSecond": "labbro", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zunge", + "wordSecond": "lingua", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kinn", + "wordSecond": "mento", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Stirn", + "wordSecond": "fronte", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wange", + "wordSecond": "guancia", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ellbogen", + "wordSecond": "gomito", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Handgelenk", + "wordSecond": "polso", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hüfte", + "wordSecond": "anca", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Herz", + "wordSecond": "cuore", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Lunge", + "wordSecond": "polmone", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Leber", + "wordSecond": "fegato", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Magen", + "wordSecond": "stomaco", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Niere", + "wordSecond": "rene", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gehirn", + "wordSecond": "cervello", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Blut", + "wordSecond": "sangue", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Knochen", + "wordSecond": "osso", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Haut", + "wordSecond": "pelle", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Muskel", + "wordSecond": "muscolo", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schmerz", + "wordSecond": "dolore", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fieber", + "wordSecond": "febbre", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Erkältung", + "wordSecond": "raffreddore", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Husten", + "wordSecond": "tosse", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schnupfen", + "wordSecond": "naso che cola", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kopfschmerzen", + "wordSecond": "mal di testa", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Halsschmerzen", + "wordSecond": "mal di gola", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bauchschmerzen", + "wordSecond": "mal di pancia", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zahnschmerzen", + "wordSecond": "mal di denti", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Müde", + "wordSecond": "stanco", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gesund", + "wordSecond": "sano", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Krank", + "wordSecond": "malato", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schwach", + "wordSecond": "debole", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Stark", + "wordSecond": "forte", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Arzt", + "wordSecond": "medico", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ärztin", + "wordSecond": "dottoressa", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Krankenhaus", + "wordSecond": "ospedale", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Medizin", + "wordSecond": "medicina", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tablette", + "wordSecond": "compressa", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pille", + "wordSecond": "pillola", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tropfen", + "wordSecond": "gocce", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Salbe", + "wordSecond": "pomata", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Verband", + "wordSecond": "benda", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pflaster", + "wordSecond": "cerotto", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Injektion", + "wordSecond": "iniezione", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Operation", + "wordSecond": "operazione", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Untersuchung", + "wordSecond": "visita medica", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Blutdruck", + "wordSecond": "pressione sanguigna", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Temperatur", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gesundheit", + "wordSecond": "salute", + "createdAt": "2026-02-19T14:07:39.037Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_de_ja_A2.json b/output/2026_02_19_body_parts_health_de_ja_A2.json new file mode 100644 index 0000000..359c676 --- /dev/null +++ b/output/2026_02_19_body_parts_health_de_ja_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:08:01.491Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kopf", + "wordSecond": "頭 (あたま, atama)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Auge", + "wordSecond": "目 (め, me)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ohr", + "wordSecond": "耳 (みみ, mimi)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Nase", + "wordSecond": "鼻 (はな, hana)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Mund", + "wordSecond": "口 (くち, kuchi)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Zahn", + "wordSecond": "歯 (は, ha)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Zunge", + "wordSecond": "舌 (した, shita)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hals", + "wordSecond": "首 (くび, kubi)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schulter", + "wordSecond": "肩 (かた, kata)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Arm", + "wordSecond": "腕 (うで, ude)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ellbogen", + "wordSecond": "肘 (ひじ, hiji)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hand", + "wordSecond": "手 (て, te)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Finger", + "wordSecond": "指 (ゆび, yubi)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Brust", + "wordSecond": "胸 (むね, mune)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Bauch", + "wordSecond": "お腹 (おなか, onaka)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Rücken", + "wordSecond": "背中 (せなか, senaka)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hüfte", + "wordSecond": "腰 (こし, koshi)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Bein", + "wordSecond": "足 (あし, ashi)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Knie", + "wordSecond": "膝 (ひざ, hiza)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fuß", + "wordSecond": "足 (あし, ashi)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Zehe", + "wordSecond": "足の指 (あしのゆび, ashi no yubi)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Haar", + "wordSecond": "髪 (かみ, kami)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Gesicht", + "wordSecond": "顔 (かお, kao)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Stirn", + "wordSecond": "額 (ひたい, hitai)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wange", + "wordSecond": "頬 (ほお, hoo)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kinn", + "wordSecond": "顎 (あご, ago)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Lippe", + "wordSecond": "唇 (くちびる, kuchibiru)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hals (Kehle)", + "wordSecond": "喉 (のど, nodo)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Handgelenk", + "wordSecond": "手首 (てくび, tekubi)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Knöchel", + "wordSecond": "足首 (あしくび, ashikubi)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Herz", + "wordSecond": "心臓 (しんぞう, shinzou)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Lunge", + "wordSecond": "肺 (はい, hai)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Leber", + "wordSecond": "肝臓 (かんぞう, kanzou)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Magen", + "wordSecond": "胃 (い, i)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Darm", + "wordSecond": "腸 (ちょう, chou)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Niere", + "wordSecond": "腎臓 (じんぞう, jinzou)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Gehirn", + "wordSecond": "脳 (のう, nou)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Blut", + "wordSecond": "血 (ち, chi)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Knochen", + "wordSecond": "骨 (ほね, hone)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Muskel", + "wordSecond": "筋肉 (きんにく, kinniku)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Haut", + "wordSecond": "皮膚 (ひふ, hifu)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schmerz", + "wordSecond": "痛み (いたみ, itami)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kopfschmerzen", + "wordSecond": "頭痛 (ずつう, zutsuu)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Bauchschmerzen", + "wordSecond": "腹痛 (ふくつう, fukutsuu)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fieber", + "wordSecond": "熱 (ねつ, netsu)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Erkältung", + "wordSecond": "風邪 (かぜ, kaze)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Husten", + "wordSecond": "咳 (せき, seki)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schnupfen", + "wordSecond": "鼻水 (はなみず, hanamizu)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Müdigkeit", + "wordSecond": "疲れ (つかれ, tsukare)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Gesund", + "wordSecond": "健康 (けんこう, kenkou)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Krank", + "wordSecond": "病気 (びょうき, byouki)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Arzt", + "wordSecond": "医者 (いしゃ, isha)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Krankenhaus", + "wordSecond": "病院 (びょういん, byouin)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Medizin", + "wordSecond": "薬 (くすり, kusuri)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tablette", + "wordSecond": "錠剤 (じょうざい, jouzai)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Pflaster", + "wordSecond": "絆創膏 (ばんそうこう, bansoukou)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Verband", + "wordSecond": "包帯 (ほうたい, houtai)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Operation", + "wordSecond": "手術 (しゅじゅつ, shujutsu)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Untersuchung", + "wordSecond": "検査 (けんさ, kensa)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Blutdruck", + "wordSecond": "血圧 (けつあつ, ketsuatsu)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Temperatur", + "wordSecond": "体温 (たいおん, taion)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Puls", + "wordSecond": "脈 (みゃく, myaku)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Atmung", + "wordSecond": "呼吸 (こきゅう, kokyuu)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schlaf", + "wordSecond": "睡眠 (すいみん, suimin)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Appetit", + "wordSecond": "食欲 (しょくよく, shokuyoku)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Übelkeit", + "wordSecond": "吐き気 (はきけ, hakike)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Durchfall", + "wordSecond": "下痢 (げり, geri)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Verstopfung", + "wordSecond": "便秘 (べんぴ, benpi)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Allergie", + "wordSecond": "アレルギー (arerugii)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wunde", + "wordSecond": "傷 (きず, kizu)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Blutung", + "wordSecond": "出血 (しゅっけつ, shukketsu)", + "createdAt": "2026-02-19T14:08:01.491Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_de_ko_A2.json b/output/2026_02_19_body_parts_health_de_ko_A2.json new file mode 100644 index 0000000..7b2ffa4 --- /dev/null +++ b/output/2026_02_19_body_parts_health_de_ko_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:08:39.078Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kopf", + "wordSecond": "머리 (meori)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Auge", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ohr", + "wordSecond": "귀 (gwi)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Nase", + "wordSecond": "코 (ko)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Mund", + "wordSecond": "입 (ip)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zahn", + "wordSecond": "이 (i)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zunge", + "wordSecond": "혀 (hyeo)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Hals", + "wordSecond": "목 (mok)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schulter", + "wordSecond": "어깨 (eokkae)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Arm", + "wordSecond": "팔 (pal)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ellbogen", + "wordSecond": "팔꿈치 (palkkumchi)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Hand", + "wordSecond": "손 (son)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Finger", + "wordSecond": "손가락 (songarak)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Daumen", + "wordSecond": "엄지손가락 (eomjisongarak)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Brust", + "wordSecond": "가슴 (gaseum)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Rücken", + "wordSecond": "등 (deung)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bauch", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bein", + "wordSecond": "다리 (dari)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Knie", + "wordSecond": "무릎 (mureup)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fuß", + "wordSecond": "발 (bal)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zehe", + "wordSecond": "발가락 (balgarak)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Gesicht", + "wordSecond": "얼굴 (eolgul)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Stirn", + "wordSecond": "이마 (ima)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wange", + "wordSecond": "뺨 (ppyam)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kinn", + "wordSecond": "턱 (teok)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Haar", + "wordSecond": "머리카락 (meorikarak)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Lippe", + "wordSecond": "입술 (ipsul)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Hals (Kehle)", + "wordSecond": "목구멍 (mokgumeong)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Nacken", + "wordSecond": "목덜미 (mokdeolmi)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Handgelenk", + "wordSecond": "손목 (sonmok)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Knöchel", + "wordSecond": "발목 (balmok)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Herz", + "wordSecond": "심장 (simjang)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Lunge", + "wordSecond": "폐 (pye)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Leber", + "wordSecond": "간 (gan)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Magen", + "wordSecond": "위 (wi)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Niere", + "wordSecond": "콩팥 (kongpat)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Gehirn", + "wordSecond": "뇌 (noe)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Knochen", + "wordSecond": "뼈 (ppyeo)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Muskel", + "wordSecond": "근육 (geunyuk)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Blut", + "wordSecond": "피 (pi)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Haut", + "wordSecond": "피부 (pibu)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schmerz", + "wordSecond": "아픔 (apeum)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kopfschmerzen", + "wordSecond": "두통 (dutong)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bauchschmerzen", + "wordSecond": "복통 (boktong)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zahnschmerzen", + "wordSecond": "치통 (chitong)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fieber", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Erkältung", + "wordSecond": "감기 (gamgi)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Husten", + "wordSecond": "기침 (gichim)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schnupfen", + "wordSecond": "콧물 (konmul)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Halsschmerzen", + "wordSecond": "목아픔 (mogapeum)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Müde", + "wordSecond": "피곤한 (pigonhan)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Gesund", + "wordSecond": "건강한 (geonganghan)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Krank", + "wordSecond": "아픈 (apeun)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Arzt", + "wordSecond": "의사 (uisa)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Krankenschwester", + "wordSecond": "간호사 (ganhosa)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Medizin", + "wordSecond": "약 (yak)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Tablette", + "wordSecond": "알약 (alyak)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Krankenhaus", + "wordSecond": "병원 (byeongwon)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Apotheke", + "wordSecond": "약국 (yakguk)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Verband", + "wordSecond": "붕대 (bungdae)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Pflaster", + "wordSecond": "반창고 (banchanggo)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Spritze", + "wordSecond": "주사 (jusa)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Operation", + "wordSecond": "수술 (susul)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Untersuchung", + "wordSecond": "검사 (geomsa)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Temperatur", + "wordSecond": "체온 (cheon)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Blutdruck", + "wordSecond": "혈압 (hyeorap)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Puls", + "wordSecond": "맥박 (maekbak)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Atmung", + "wordSecond": "호흡 (hoheup)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schlaf", + "wordSecond": "잠 (jam)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ernährung", + "wordSecond": "영양 (yeongyang)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bewegung", + "wordSecond": "운동 (undong)", + "createdAt": "2026-02-19T14:08:39.078Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_de_pl_A2.json b/output/2026_02_19_body_parts_health_de_pl_A2.json new file mode 100644 index 0000000..c0913c1 --- /dev/null +++ b/output/2026_02_19_body_parts_health_de_pl_A2.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:08:53.870Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kopf", + "wordSecond": "głowa", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Auge", + "wordSecond": "oko", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ohr", + "wordSecond": "ucho", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Nase", + "wordSecond": "nos", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Mund", + "wordSecond": "usta", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Zähne", + "wordSecond": "zęby", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Zunge", + "wordSecond": "język", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hals", + "wordSecond": "gardło", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schulter", + "wordSecond": "ramię", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Arm", + "wordSecond": "ramię", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ellbogen", + "wordSecond": "łokieć", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hand", + "wordSecond": "dłoń", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Finger", + "wordSecond": "palec", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Daumen", + "wordSecond": "kciuk", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Brust", + "wordSecond": "klatka piersiowa", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Rücken", + "wordSecond": "plecy", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bauch", + "wordSecond": "brzuch", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hüfte", + "wordSecond": "biodro", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bein", + "wordSecond": "noga", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Knie", + "wordSecond": "kolano", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fuß", + "wordSecond": "stopa", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Zehe", + "wordSecond": "palec u nogi", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Knöchel", + "wordSecond": "kostka", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Gesicht", + "wordSecond": "twarz", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Stirn", + "wordSecond": "czoło", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wange", + "wordSecond": "policzek", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kinn", + "wordSecond": "broda", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Haar", + "wordSecond": "włos", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Lippe", + "wordSecond": "warga", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Handgelenk", + "wordSecond": "nadgarstek", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Herz", + "wordSecond": "serce", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Lunge", + "wordSecond": "płuco", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Magen", + "wordSecond": "żołądek", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Leber", + "wordSecond": "wątroba", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Niere", + "wordSecond": "nerka", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Gehirn", + "wordSecond": "mózg", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Blut", + "wordSecond": "krew", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Knochen", + "wordSecond": "kość", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Muskel", + "wordSecond": "mięsień", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Haut", + "wordSecond": "skóra", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schmerz", + "wordSecond": "ból", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fieber", + "wordSecond": "gorączka", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Erkältung", + "wordSecond": "przeziębienie", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Husten", + "wordSecond": "kaszel", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schnupfen", + "wordSecond": "katar", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Halsschmerzen", + "wordSecond": "ból gardła", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kopfschmerzen", + "wordSecond": "ból głowy", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bauchschmerzen", + "wordSecond": "ból brzucha", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Zahnschmerzen", + "wordSecond": "ból zęba", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Müde", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Gesund", + "wordSecond": "zdrowy", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Krank", + "wordSecond": "chory", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Arzt", + "wordSecond": "lekarz", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ärztin", + "wordSecond": "lekarka", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Krankenhaus", + "wordSecond": "szpital", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Medizin", + "wordSecond": "lekarstwo", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Tablette", + "wordSecond": "tabletka", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Pille", + "wordSecond": "pigułka", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Tropfen", + "wordSecond": "krople", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Salbe", + "wordSecond": "maść", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Verband", + "wordSecond": "bandaż", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Pflaster", + "wordSecond": "plaster", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Spritze", + "wordSecond": "zastrzyk", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Operation", + "wordSecond": "operacja", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Untersuchung", + "wordSecond": "badanie", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Blutdruck", + "wordSecond": "ciśnienie krwi", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Temperatur", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Apotheke", + "wordSecond": "apteka", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Termin", + "wordSecond": "wizyta", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Notfall", + "wordSecond": "nagły wypadek", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ruhe", + "wordSecond": "odpoczynek", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schlaf", + "wordSecond": "sen", + "createdAt": "2026-02-19T14:08:53.870Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_de_zh_A2.json b/output/2026_02_19_body_parts_health_de_zh_A2.json new file mode 100644 index 0000000..3d3b426 --- /dev/null +++ b/output/2026_02_19_body_parts_health_de_zh_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:08:19.237Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kopf", + "wordSecond": "头 (tou)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Auge", + "wordSecond": "眼睛 (yanjing)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ohr", + "wordSecond": "耳朵 (erduo)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Nase", + "wordSecond": "鼻子 (bizi)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Mund", + "wordSecond": "嘴 (zui)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Zähne", + "wordSecond": "牙齿 (yachi)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Zunge", + "wordSecond": "舌头 (shetou)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hals", + "wordSecond": "脖子 (bozi)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schulter", + "wordSecond": "肩膀 (jianbang)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Arm", + "wordSecond": "胳膊 (gebo)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ellbogen", + "wordSecond": "肘 (zhou)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hand", + "wordSecond": "手 (shou)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Finger", + "wordSecond": "手指 (shouzhi)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Daumen", + "wordSecond": "拇指 (muzhi)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Brust", + "wordSecond": "胸 (xiong)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Rücken", + "wordSecond": "背 (bei)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bauch", + "wordSecond": "肚子 (duzi)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hüfte", + "wordSecond": "臀部 (tunbu)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bein", + "wordSecond": "腿 (tui)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Knie", + "wordSecond": "膝盖 (xigai)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Fuß", + "wordSecond": "脚 (jiao)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Zehen", + "wordSecond": "脚趾 (jiaozhi)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Knöchel", + "wordSecond": "脚踝 (jiaohuai)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Haar", + "wordSecond": "头发 (toufa)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gesicht", + "wordSecond": "脸 (lian)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Stirn", + "wordSecond": "额头 (etu)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wange", + "wordSecond": "脸颊 (lianjia)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kinn", + "wordSecond": "下巴 (xiaba)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Lippe", + "wordSecond": "嘴唇 (zuichun)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Haut", + "wordSecond": "皮肤 (pifu)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Nagel", + "wordSecond": "指甲 (zhijia)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Herz", + "wordSecond": "心脏 (xinzang)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Lunge", + "wordSecond": "肺 (fei)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Leber", + "wordSecond": "肝 (gan)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Magen", + "wordSecond": "胃 (wei)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Niere", + "wordSecond": "肾 (shen)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gehirn", + "wordSecond": "大脑 (danao)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Blut", + "wordSecond": "血 (xue)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Knochen", + "wordSecond": "骨头 (gutou)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Muskel", + "wordSecond": "肌肉 (jirou)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schmerz", + "wordSecond": "疼痛 (tengtong)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kopfschmerz", + "wordSecond": "头痛 (toutong)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bauchschmerz", + "wordSecond": "肚子痛 (duzitong)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Fieber", + "wordSecond": "发烧 (fashao)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Husten", + "wordSecond": "咳嗽 (kesou)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schnupfen", + "wordSecond": "感冒 (ganmao)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Erkältung", + "wordSecond": "感冒 (ganmao)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Müde", + "wordSecond": "累 (lei)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gesund", + "wordSecond": "健康 (jiankang)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Krank", + "wordSecond": "生病 (shengbing)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Arzt", + "wordSecond": "医生 (yisheng)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ärztin", + "wordSecond": "医生 (yisheng)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Krankenhaus", + "wordSecond": "医院 (yiyuan)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Medizin", + "wordSecond": "药 (yao)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tablette", + "wordSecond": "药片 (yaopian)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Apotheke", + "wordSecond": "药店 (yaodian)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Verband", + "wordSecond": "绷带 (bengdai)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Pflaster", + "wordSecond": "创可贴 (chuangketie)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Temperatur", + "wordSecond": "体温 (tiwen)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Blutdruck", + "wordSecond": "血压 (xueya)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Puls", + "wordSecond": "脉搏 (maibo)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Atmung", + "wordSecond": "呼吸 (huxi)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schlaf", + "wordSecond": "睡眠 (shuimian)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Appetit", + "wordSecond": "胃口 (weikou)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Durst", + "wordSecond": "口渴 (kouke)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Übelkeit", + "wordSecond": "恶心 (exin)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Durchfall", + "wordSecond": "腹泻 (fuxie)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Verstopfung", + "wordSecond": "便秘 (bianmi)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Allergie", + "wordSecond": "过敏 (guomin)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wunde", + "wordSecond": "伤口 (shangkou)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Narbe", + "wordSecond": "疤痕 (bahen)", + "createdAt": "2026-02-19T14:08:19.237Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_en_de_A2.json b/output/2026_02_19_body_parts_health_en_de_A2.json new file mode 100644 index 0000000..9781908 --- /dev/null +++ b/output/2026_02_19_body_parts_health_en_de_A2.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:01:21.335Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "head", + "wordSecond": "Kopf", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hair", + "wordSecond": "Haar", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "face", + "wordSecond": "Gesicht", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "forehead", + "wordSecond": "Stirn", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "eye", + "wordSecond": "Auge", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ear", + "wordSecond": "Ohr", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "nose", + "wordSecond": "Nase", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "mouth", + "wordSecond": "Mund", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lip", + "wordSecond": "Lippe", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tooth", + "wordSecond": "Zahn", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tongue", + "wordSecond": "Zunge", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "chin", + "wordSecond": "Kinn", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "neck", + "wordSecond": "Hals", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shoulder", + "wordSecond": "Schulter", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "arm", + "wordSecond": "Arm", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "elbow", + "wordSecond": "Ellbogen", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wrist", + "wordSecond": "Handgelenk", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hand", + "wordSecond": "Hand", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "finger", + "wordSecond": "Finger", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "thumb", + "wordSecond": "Daumen", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "chest", + "wordSecond": "Brust", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "back", + "wordSecond": "Rücken", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stomach", + "wordSecond": "Bauch", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "waist", + "wordSecond": "Taille", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hip", + "wordSecond": "Hüfte", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "leg", + "wordSecond": "Bein", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "knee", + "wordSecond": "Knie", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ankle", + "wordSecond": "Knöchel", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "foot", + "wordSecond": "Fuß", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "toe", + "wordSecond": "Zehe", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "skin", + "wordSecond": "Haut", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bone", + "wordSecond": "Knochen", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "muscle", + "wordSecond": "Muskel", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "blood", + "wordSecond": "Blut", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "heart", + "wordSecond": "Herz", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lung", + "wordSecond": "Lunge", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "liver", + "wordSecond": "Leber", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stomach", + "wordSecond": "Magen", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "brain", + "wordSecond": "Gehirn", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "kidney", + "wordSecond": "Niere", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pain", + "wordSecond": "Schmerz", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ache", + "wordSecond": "Weh", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "headache", + "wordSecond": "Kopfschmerz", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stomachache", + "wordSecond": "Bauchschmerz", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "toothache", + "wordSecond": "Zahnschmerz", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fever", + "wordSecond": "Fieber", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cold", + "wordSecond": "Erkältung", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cough", + "wordSecond": "Husten", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sneeze", + "wordSecond": "Niesen", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tired", + "wordSecond": "müde", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "healthy", + "wordSecond": "gesund", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sick", + "wordSecond": "krank", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ill", + "wordSecond": "krank", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "well", + "wordSecond": "wohl", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "doctor", + "wordSecond": "Arzt", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "nurse", + "wordSecond": "Krankenschwester", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hospital", + "wordSecond": "Krankenhaus", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "medicine", + "wordSecond": "Medizin", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pill", + "wordSecond": "Tablette", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bandage", + "wordSecond": "Verband", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "injury", + "wordSecond": "Verletzung", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cut", + "wordSecond": "Schnitt", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bruise", + "wordSecond": "Prellung", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wound", + "wordSecond": "Wunde", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "health", + "wordSecond": "Gesundheit", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "exercise", + "wordSecond": "Bewegung", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "rest", + "wordSecond": "Ruhe", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sleep", + "wordSecond": "Schlaf", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "food", + "wordSecond": "Essen", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "water", + "wordSecond": "Wasser", + "createdAt": "2026-02-19T14:01:21.335Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_en_es_A2.json b/output/2026_02_19_body_parts_health_en_es_A2.json new file mode 100644 index 0000000..8e527a2 --- /dev/null +++ b/output/2026_02_19_body_parts_health_en_es_A2.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:00:55.284Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "head", + "wordSecond": "cabeza", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "arm", + "wordSecond": "brazo", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "leg", + "wordSecond": "pierna", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hand", + "wordSecond": "mano", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "foot", + "wordSecond": "pie", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "eye", + "wordSecond": "ojo", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ear", + "wordSecond": "oreja", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nose", + "wordSecond": "nariz", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mouth", + "wordSecond": "boca", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hair", + "wordSecond": "pelo", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "face", + "wordSecond": "cara", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "neck", + "wordSecond": "cuello", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shoulder", + "wordSecond": "hombro", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "elbow", + "wordSecond": "codo", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wrist", + "wordSecond": "muñeca", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "finger", + "wordSecond": "dedo", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "knee", + "wordSecond": "rodilla", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ankle", + "wordSecond": "tobillo", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "toe", + "wordSecond": "dedo del pie", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "back", + "wordSecond": "espalda", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "chest", + "wordSecond": "pecho", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "stomach", + "wordSecond": "estómago", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "skin", + "wordSecond": "piel", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bone", + "wordSecond": "hueso", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "muscle", + "wordSecond": "músculo", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "heart", + "wordSecond": "corazón", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lung", + "wordSecond": "pulmón", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "liver", + "wordSecond": "hígado", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "brain", + "wordSecond": "cerebro", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "blood", + "wordSecond": "sangre", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pain", + "wordSecond": "dolor", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fever", + "wordSecond": "fiebre", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cold", + "wordSecond": "resfriado", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cough", + "wordSecond": "tos", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "headache", + "wordSecond": "dolor de cabeza", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "stomachache", + "wordSecond": "dolor de estómago", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tired", + "wordSecond": "cansado", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "healthy", + "wordSecond": "sano", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sick", + "wordSecond": "enfermo", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "doctor", + "wordSecond": "médico", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nurse", + "wordSecond": "enfermero", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hospital", + "wordSecond": "hospital", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "medicine", + "wordSecond": "medicina", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pill", + "wordSecond": "pastilla", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bandage", + "wordSecond": "venda", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tooth", + "wordSecond": "diente", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tongue", + "wordSecond": "lengua", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lip", + "wordSecond": "labio", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "chin", + "wordSecond": "barbilla", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "forehead", + "wordSecond": "frente", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "eyebrow", + "wordSecond": "ceja", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "eyelash", + "wordSecond": "pestaña", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cheek", + "wordSecond": "mejilla", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "throat", + "wordSecond": "garganta", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "waist", + "wordSecond": "cintura", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hip", + "wordSecond": "cadera", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "thumb", + "wordSecond": "pulgar", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nail", + "wordSecond": "uña", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "heel", + "wordSecond": "talón", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "body", + "wordSecond": "cuerpo", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "health", + "wordSecond": "salud", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "illness", + "wordSecond": "enfermedad", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "injury", + "wordSecond": "lesión", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cut", + "wordSecond": "corte", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bruise", + "wordSecond": "moretón", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "swelling", + "wordSecond": "hinchazón", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "temperature", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "appointment", + "wordSecond": "cita", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pharmacy", + "wordSecond": "farmacia", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "prescription", + "wordSecond": "receta", + "createdAt": "2026-02-19T14:00:55.284Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_en_fr_A2.json b/output/2026_02_19_body_parts_health_en_fr_A2.json new file mode 100644 index 0000000..bb615f3 --- /dev/null +++ b/output/2026_02_19_body_parts_health_en_fr_A2.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:01:33.674Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "head", + "wordSecond": "tête", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hair", + "wordSecond": "cheveux", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "face", + "wordSecond": "visage", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "forehead", + "wordSecond": "front", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "eye", + "wordSecond": "œil", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "eyes", + "wordSecond": "yeux", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ear", + "wordSecond": "oreille", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "nose", + "wordSecond": "nez", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "mouth", + "wordSecond": "bouche", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lip", + "wordSecond": "lèvre", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tooth", + "wordSecond": "dent", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "teeth", + "wordSecond": "dents", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tongue", + "wordSecond": "langue", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "chin", + "wordSecond": "menton", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "neck", + "wordSecond": "cou", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shoulder", + "wordSecond": "épaule", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "arm", + "wordSecond": "bras", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "elbow", + "wordSecond": "coude", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wrist", + "wordSecond": "poignet", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hand", + "wordSecond": "main", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "finger", + "wordSecond": "doigt", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "thumb", + "wordSecond": "pouce", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "chest", + "wordSecond": "poitrine", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "back", + "wordSecond": "dos", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "stomach", + "wordSecond": "ventre", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "waist", + "wordSecond": "taille", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hip", + "wordSecond": "hanche", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "leg", + "wordSecond": "jambe", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "knee", + "wordSecond": "genou", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ankle", + "wordSecond": "cheville", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "foot", + "wordSecond": "pied", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "feet", + "wordSecond": "pieds", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "toe", + "wordSecond": "orteil", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "skin", + "wordSecond": "peau", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bone", + "wordSecond": "os", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "muscle", + "wordSecond": "muscle", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "blood", + "wordSecond": "sang", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "heart", + "wordSecond": "cœur", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lung", + "wordSecond": "poumon", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "liver", + "wordSecond": "foie", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "stomach (organ)", + "wordSecond": "estomac", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "brain", + "wordSecond": "cerveau", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "health", + "wordSecond": "santé", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "healthy", + "wordSecond": "en bonne santé", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sick", + "wordSecond": "malade", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ill", + "wordSecond": "malade", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pain", + "wordSecond": "douleur", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ache", + "wordSecond": "douleur", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "headache", + "wordSecond": "mal de tête", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "stomachache", + "wordSecond": "mal au ventre", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "toothache", + "wordSecond": "mal aux dents", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fever", + "wordSecond": "fièvre", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cold", + "wordSecond": "rhume", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cough", + "wordSecond": "toux", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sneeze", + "wordSecond": "éternuement", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tired", + "wordSecond": "fatigué", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "weak", + "wordSecond": "faible", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "strong", + "wordSecond": "fort", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "doctor", + "wordSecond": "médecin", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "nurse", + "wordSecond": "infirmière", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hospital", + "wordSecond": "hôpital", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "clinic", + "wordSecond": "clinique", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "medicine", + "wordSecond": "médicament", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pill", + "wordSecond": "pilule", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bandage", + "wordSecond": "pansement", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wound", + "wordSecond": "blessure", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cut", + "wordSecond": "coupure", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bruise", + "wordSecond": "ecchymose", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "accident", + "wordSecond": "accident", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "exercise", + "wordSecond": "exercice", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "rest", + "wordSecond": "repos", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sleep", + "wordSecond": "sommeil", + "createdAt": "2026-02-19T14:01:33.674Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_en_it_A2.json b/output/2026_02_19_body_parts_health_en_it_A2.json new file mode 100644 index 0000000..7f6e568 --- /dev/null +++ b/output/2026_02_19_body_parts_health_en_it_A2.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:01:45.931Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "head", + "wordSecond": "testa", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hair", + "wordSecond": "capelli", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "face", + "wordSecond": "viso", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "forehead", + "wordSecond": "fronte", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "eye", + "wordSecond": "occhio", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ear", + "wordSecond": "orecchio", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "nose", + "wordSecond": "naso", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "mouth", + "wordSecond": "bocca", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lip", + "wordSecond": "labbro", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tooth", + "wordSecond": "dente", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tongue", + "wordSecond": "lingua", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "chin", + "wordSecond": "mento", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "neck", + "wordSecond": "collo", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shoulder", + "wordSecond": "spalla", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "arm", + "wordSecond": "braccio", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "elbow", + "wordSecond": "gomito", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wrist", + "wordSecond": "polso", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hand", + "wordSecond": "mano", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "finger", + "wordSecond": "dito", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "thumb", + "wordSecond": "pollice", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "chest", + "wordSecond": "petto", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "back", + "wordSecond": "schiena", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "stomach", + "wordSecond": "stomaco", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "waist", + "wordSecond": "vita", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hip", + "wordSecond": "fianco", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "leg", + "wordSecond": "gamba", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "thigh", + "wordSecond": "coscia", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "knee", + "wordSecond": "ginocchio", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ankle", + "wordSecond": "caviglia", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "foot", + "wordSecond": "piede", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "toe", + "wordSecond": "dito del piede", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "heel", + "wordSecond": "tallone", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "skin", + "wordSecond": "pelle", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bone", + "wordSecond": "osso", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "muscle", + "wordSecond": "muscolo", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "blood", + "wordSecond": "sangue", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "heart", + "wordSecond": "cuore", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lung", + "wordSecond": "polmone", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "liver", + "wordSecond": "fegato", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "stomach", + "wordSecond": "stomaco", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "brain", + "wordSecond": "cervello", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pain", + "wordSecond": "dolore", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ache", + "wordSecond": "male", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "headache", + "wordSecond": "mal di testa", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "stomachache", + "wordSecond": "mal di stomaco", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "toothache", + "wordSecond": "mal di denti", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fever", + "wordSecond": "febbre", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cold", + "wordSecond": "raffreddore", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cough", + "wordSecond": "tosse", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sneeze", + "wordSecond": "starnuto", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tired", + "wordSecond": "stanco", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sleepy", + "wordSecond": "assonnato", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "healthy", + "wordSecond": "sano", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sick", + "wordSecond": "malato", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ill", + "wordSecond": "malato", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "well", + "wordSecond": "bene", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "doctor", + "wordSecond": "dottore", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "nurse", + "wordSecond": "infermiere", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hospital", + "wordSecond": "ospedale", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "medicine", + "wordSecond": "medicina", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pill", + "wordSecond": "pillola", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bandage", + "wordSecond": "benda", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cut", + "wordSecond": "taglio", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bruise", + "wordSecond": "livido", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "burn", + "wordSecond": "bruciatura", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wound", + "wordSecond": "ferita", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "accident", + "wordSecond": "incidente", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "exercise", + "wordSecond": "esercizio", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "rest", + "wordSecond": "riposo", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sleep", + "wordSecond": "sonno", + "createdAt": "2026-02-19T14:01:45.931Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_en_ja_A2.json b/output/2026_02_19_body_parts_health_en_ja_A2.json new file mode 100644 index 0000000..75ea266 --- /dev/null +++ b/output/2026_02_19_body_parts_health_en_ja_A2.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:02:07.930Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "head", + "wordSecond": "頭 (あたま, atama)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hair", + "wordSecond": "髪 (かみ, kami)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "face", + "wordSecond": "顔 (かお, kao)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "forehead", + "wordSecond": "額 (ひたい, hitai)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "eye", + "wordSecond": "目 (め, me)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "eyebrow", + "wordSecond": "眉 (まゆ, mayu)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "eyelash", + "wordSecond": "まつげ (matsuge)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "ear", + "wordSecond": "耳 (みみ, mimi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "nose", + "wordSecond": "鼻 (はな, hana)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cheek", + "wordSecond": "頬 (ほお, hoo)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "mouth", + "wordSecond": "口 (くち, kuchi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "lip", + "wordSecond": "唇 (くちびる, kuchibiru)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "tooth", + "wordSecond": "歯 (は, ha)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "tongue", + "wordSecond": "舌 (した, shita)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "chin", + "wordSecond": "あご (ago)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "neck", + "wordSecond": "首 (くび, kubi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "shoulder", + "wordSecond": "肩 (かた, kata)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "arm", + "wordSecond": "腕 (うで, ude)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "elbow", + "wordSecond": "ひじ (hiji)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "wrist", + "wordSecond": "手首 (てくび, tekubi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hand", + "wordSecond": "手 (て, te)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "finger", + "wordSecond": "指 (ゆび, yubi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "thumb", + "wordSecond": "親指 (おやゆび, oyayubi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "nail", + "wordSecond": "爪 (つめ, tsume)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "chest", + "wordSecond": "胸 (むね, mune)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "back", + "wordSecond": "背中 (せなか, senaka)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "stomach", + "wordSecond": "お腹 (おなか, onaka)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "waist", + "wordSecond": "腰 (こし, koshi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hip", + "wordSecond": "腰 (こし, koshi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "leg", + "wordSecond": "足 (あし, ashi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "thigh", + "wordSecond": "太もも (ふともも, futomomo)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "knee", + "wordSecond": "ひざ (hiza)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "calf", + "wordSecond": "ふくらはぎ (fukurahagi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "ankle", + "wordSecond": "足首 (あしくび, ashikubi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "foot", + "wordSecond": "足 (あし, ashi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "heel", + "wordSecond": "かかと (kakato)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "toe", + "wordSecond": "足の指 (あしのゆび, ashi no yubi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "skin", + "wordSecond": "肌 (はだ, hada)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bone", + "wordSecond": "骨 (ほね, hone)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "muscle", + "wordSecond": "筋肉 (きんにく, kinniku)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "blood", + "wordSecond": "血 (ち, chi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "heart", + "wordSecond": "心臓 (しんぞう, shinzou)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "lung", + "wordSecond": "肺 (はい, hai)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "liver", + "wordSecond": "肝臓 (かんぞう, kanzou)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "stomach (organ)", + "wordSecond": "胃 (い, i)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "intestine", + "wordSecond": "腸 (ちょう, chou)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "brain", + "wordSecond": "脳 (のう, nou)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pain", + "wordSecond": "痛み (いたみ, itami)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "headache", + "wordSecond": "頭痛 (ずつう, zutsuu)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "stomachache", + "wordSecond": "腹痛 (ふくつう, fukutsuu)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "toothache", + "wordSecond": "歯痛 (しつう, shitsuu)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "fever", + "wordSecond": "熱 (ねつ, netsu)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cough", + "wordSecond": "咳 (せき, seki)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cold (illness)", + "wordSecond": "風邪 (かぜ, kaze)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sneeze", + "wordSecond": "くしゃみ (kushami)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "tired", + "wordSecond": "疲れた (つかれた, tsukareta)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "healthy", + "wordSecond": "健康な (けんこうな, kenkou na)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sick", + "wordSecond": "病気の (びょうきの, byouki no)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "doctor", + "wordSecond": "医者 (いしゃ, isha)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "nurse", + "wordSecond": "看護師 (かんごし, kangoshi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hospital", + "wordSecond": "病院 (びょういん, byouin)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "clinic", + "wordSecond": "診療所 (しんりょうじょ, shinryoujo)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "medicine", + "wordSecond": "薬 (くすり, kusuri)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pill", + "wordSecond": "錠剤 (じょうざい, jouzai)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bandage", + "wordSecond": "包帯 (ほうたい, houtai)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "injury", + "wordSecond": "怪我 (けが, kega)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cut", + "wordSecond": "切り傷 (きりきず, kirikizu)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bruise", + "wordSecond": "打撲傷 (だぼくしょう, dabokushou)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "burn", + "wordSecond": "火傷 (やけど, yakedo)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "rest", + "wordSecond": "休み (やすみ, yasumi)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sleep", + "wordSecond": "睡眠 (すいみん, suimin)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "exercise", + "wordSecond": "運動 (うんどう, undou)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "diet", + "wordSecond": "食事 (しょくじ, shokuji)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "water", + "wordSecond": "水 (みず, mizu)", + "createdAt": "2026-02-19T14:02:07.930Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_en_ko_A2.json b/output/2026_02_19_body_parts_health_en_ko_A2.json new file mode 100644 index 0000000..97b9e58 --- /dev/null +++ b/output/2026_02_19_body_parts_health_en_ko_A2.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:02:42.829Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "head", + "wordSecond": "머리 (meori)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "hair", + "wordSecond": "머리카락 (meorikarak)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "face", + "wordSecond": "얼굴 (eolgul)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "forehead", + "wordSecond": "이마 (ima)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "eye", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "eyebrow", + "wordSecond": "눈썹 (nunsseop)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "eyelash", + "wordSecond": "속눈썹 (songnunsseop)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "ear", + "wordSecond": "귀 (gwi)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "nose", + "wordSecond": "코 (ko)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "mouth", + "wordSecond": "입 (ip)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "lip", + "wordSecond": "입술 (ipsul)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "tooth", + "wordSecond": "이 (i)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "tongue", + "wordSecond": "혀 (hyeo)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "chin", + "wordSecond": "턱 (teok)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cheek", + "wordSecond": "뺨 (ppyam)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "neck", + "wordSecond": "목 (mok)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "shoulder", + "wordSecond": "어깨 (eokkae)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "arm", + "wordSecond": "팔 (pal)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "elbow", + "wordSecond": "팔꿈치 (palkkumchi)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "wrist", + "wordSecond": "손목 (sonmok)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "hand", + "wordSecond": "손 (son)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "finger", + "wordSecond": "손가락 (songarak)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "thumb", + "wordSecond": "엄지손가락 (eomjisongarak)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "nail", + "wordSecond": "손톱 (sontop)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "chest", + "wordSecond": "가슴 (gaseum)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "back", + "wordSecond": "등 (deung)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "stomach", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "waist", + "wordSecond": "허리 (heori)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "hip", + "wordSecond": "엉덩이 (eongdeongi)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "leg", + "wordSecond": "다리 (dari)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "knee", + "wordSecond": "무릎 (mureup)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "ankle", + "wordSecond": "발목 (balmok)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "foot", + "wordSecond": "발 (bal)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "toe", + "wordSecond": "발가락 (balgarak)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "skin", + "wordSecond": "피부 (pibu)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bone", + "wordSecond": "뼈 (ppyeo)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "muscle", + "wordSecond": "근육 (geunyuk)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "blood", + "wordSecond": "피 (pi)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "heart", + "wordSecond": "심장 (simjang)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "lung", + "wordSecond": "폐 (pye)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "liver", + "wordSecond": "간 (gan)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "stomach (organ)", + "wordSecond": "위 (wi)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "intestine", + "wordSecond": "창자 (changja)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "brain", + "wordSecond": "뇌 (noe)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pain", + "wordSecond": "통증 (tongjeung)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "headache", + "wordSecond": "두통 (dutong)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "stomachache", + "wordSecond": "복통 (boktong)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "fever", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cold", + "wordSecond": "감기 (gamgi)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cough", + "wordSecond": "기침 (gichim)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sneeze", + "wordSecond": "재채기 (jaechaegi)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "tired", + "wordSecond": "피곤한 (pigonhan)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "healthy", + "wordSecond": "건강한 (geonganghan)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sick", + "wordSecond": "아픈 (apeun)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "illness", + "wordSecond": "병 (byeong)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "injury", + "wordSecond": "부상 (busang)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "doctor", + "wordSecond": "의사 (uisa)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "nurse", + "wordSecond": "간호사 (ganhosa)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "hospital", + "wordSecond": "병원 (byeongwon)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "clinic", + "wordSecond": "의원 (uiwon)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "medicine", + "wordSecond": "약 (yak)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pill", + "wordSecond": "알약 (alyak)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bandage", + "wordSecond": "붕대 (bungdae)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "injection", + "wordSecond": "주사 (jusa)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "checkup", + "wordSecond": "검진 (geomjin)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "operation", + "wordSecond": "수술 (susul)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "rest", + "wordSecond": "휴식 (hyusik)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sleep", + "wordSecond": "잠 (jam)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "food", + "wordSecond": "음식 (eumsik)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "water", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "exercise", + "wordSecond": "운동 (undong)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "breath", + "wordSecond": "숨 (sum)", + "createdAt": "2026-02-19T14:02:42.829Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_en_pl_A2.json b/output/2026_02_19_body_parts_health_en_pl_A2.json new file mode 100644 index 0000000..2d04e36 --- /dev/null +++ b/output/2026_02_19_body_parts_health_en_pl_A2.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:02:56.218Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "head", + "wordSecond": "głowa", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "hair", + "wordSecond": "włosy", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "face", + "wordSecond": "twarz", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "forehead", + "wordSecond": "czoło", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "eye", + "wordSecond": "oko", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "ear", + "wordSecond": "ucho", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "nose", + "wordSecond": "nos", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "mouth", + "wordSecond": "usta", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "lip", + "wordSecond": "warga", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "tooth", + "wordSecond": "ząb", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "tongue", + "wordSecond": "język", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "chin", + "wordSecond": "broda", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "neck", + "wordSecond": "szyja", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "shoulder", + "wordSecond": "ramię", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "arm", + "wordSecond": "ręka", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "elbow", + "wordSecond": "łokieć", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "wrist", + "wordSecond": "nadgarstek", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "hand", + "wordSecond": "dłoń", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "finger", + "wordSecond": "palec", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "thumb", + "wordSecond": "kciuk", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "chest", + "wordSecond": "klatka piersiowa", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "back", + "wordSecond": "plecy", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "stomach", + "wordSecond": "brzuch", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "waist", + "wordSecond": "talia", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "hip", + "wordSecond": "biodro", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "leg", + "wordSecond": "noga", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "thigh", + "wordSecond": "udo", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "knee", + "wordSecond": "kolano", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "calf", + "wordSecond": "łydka", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "ankle", + "wordSecond": "kostka", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "foot", + "wordSecond": "stopa", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "heel", + "wordSecond": "pięta", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "toe", + "wordSecond": "palec u nogi", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "skin", + "wordSecond": "skóra", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bone", + "wordSecond": "kość", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "muscle", + "wordSecond": "mięsień", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "blood", + "wordSecond": "krew", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "heart", + "wordSecond": "serce", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "lung", + "wordSecond": "płuco", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "liver", + "wordSecond": "wątroba", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "stomach", + "wordSecond": "żołądek", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "kidney", + "wordSecond": "nerka", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "brain", + "wordSecond": "mózg", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pain", + "wordSecond": "ból", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "ache", + "wordSecond": "ból", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "headache", + "wordSecond": "ból głowy", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "stomachache", + "wordSecond": "ból brzucha", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "toothache", + "wordSecond": "ból zęba", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fever", + "wordSecond": "gorączka", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cold", + "wordSecond": "przeziębienie", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cough", + "wordSecond": "kaszel", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sneeze", + "wordSecond": "kichnięcie", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "runny nose", + "wordSecond": "katar", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sore throat", + "wordSecond": "ból gardła", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "tired", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sleepy", + "wordSecond": "senny", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "healthy", + "wordSecond": "zdrowy", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sick", + "wordSecond": "chory", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "ill", + "wordSecond": "chory", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "weak", + "wordSecond": "słaby", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "strong", + "wordSecond": "silny", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "doctor", + "wordSecond": "lekarz", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "nurse", + "wordSecond": "pielęgniarka", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "hospital", + "wordSecond": "szpital", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "clinic", + "wordSecond": "przychodnia", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "medicine", + "wordSecond": "lekarstwo", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pill", + "wordSecond": "tabletka", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bandage", + "wordSecond": "bandaż", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "injection", + "wordSecond": "zastrzyk", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "appointment", + "wordSecond": "wizyta", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "rest", + "wordSecond": "odpoczynek", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sleep", + "wordSecond": "sen", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "water", + "wordSecond": "woda", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "food", + "wordSecond": "jedzenie", + "createdAt": "2026-02-19T14:02:56.218Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_en_pt_A2.json b/output/2026_02_19_body_parts_health_en_pt_A2.json new file mode 100644 index 0000000..0e6e0db --- /dev/null +++ b/output/2026_02_19_body_parts_health_en_pt_A2.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:01:08.791Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "head", + "wordSecond": "cabeça", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "arm", + "wordSecond": "braço", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "leg", + "wordSecond": "perna", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hand", + "wordSecond": "mão", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "foot", + "wordSecond": "pé", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "eye", + "wordSecond": "olho", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ear", + "wordSecond": "orelha", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "nose", + "wordSecond": "nariz", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mouth", + "wordSecond": "boca", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hair", + "wordSecond": "cabelo", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "face", + "wordSecond": "rosto", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "neck", + "wordSecond": "pescoço", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shoulder", + "wordSecond": "ombro", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "elbow", + "wordSecond": "cotovelo", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wrist", + "wordSecond": "pulso", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "finger", + "wordSecond": "dedo", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "thumb", + "wordSecond": "polegar", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chest", + "wordSecond": "peito", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "back", + "wordSecond": "costas", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stomach", + "wordSecond": "barriga", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "waist", + "wordSecond": "cintura", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hip", + "wordSecond": "quadril", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "knee", + "wordSecond": "joelho", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ankle", + "wordSecond": "tornozelo", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "toe", + "wordSecond": "dedo do pé", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "skin", + "wordSecond": "pele", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bone", + "wordSecond": "osso", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "muscle", + "wordSecond": "músculo", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "blood", + "wordSecond": "sangue", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "heart", + "wordSecond": "coração", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lung", + "wordSecond": "pulmão", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "liver", + "wordSecond": "fígado", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stomach (organ)", + "wordSecond": "estômago", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "brain", + "wordSecond": "cérebro", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tooth", + "wordSecond": "dente", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tongue", + "wordSecond": "língua", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lip", + "wordSecond": "lábio", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cheek", + "wordSecond": "bochecha", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chin", + "wordSecond": "queixo", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "forehead", + "wordSecond": "testa", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "eyebrow", + "wordSecond": "sobrancelha", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "eyelash", + "wordSecond": "cílio", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "beard", + "wordSecond": "barba", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "nail", + "wordSecond": "unha", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "heel", + "wordSecond": "calcanhar", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "throat", + "wordSecond": "garganta", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pain", + "wordSecond": "dor", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fever", + "wordSecond": "febre", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cold", + "wordSecond": "resfriado", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cough", + "wordSecond": "tosse", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "headache", + "wordSecond": "dor de cabeça", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stomachache", + "wordSecond": "dor de barriga", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tired", + "wordSecond": "cansado", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "healthy", + "wordSecond": "saudável", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sick", + "wordSecond": "doente", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "doctor", + "wordSecond": "médico", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "nurse", + "wordSecond": "enfermeiro", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "medicine", + "wordSecond": "remédio", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hospital", + "wordSecond": "hospital", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "clinic", + "wordSecond": "clínica", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pharmacy", + "wordSecond": "farmácia", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "appointment", + "wordSecond": "consulta", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bandage", + "wordSecond": "bandagem", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pill", + "wordSecond": "pílula", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "syrup", + "wordSecond": "xarope", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "injection", + "wordSecond": "injeção", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wound", + "wordSecond": "ferida", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cut", + "wordSecond": "corte", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bruise", + "wordSecond": "hematoma", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "swelling", + "wordSecond": "inchaço", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "itch", + "wordSecond": "coceira", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sneeze", + "wordSecond": "espirro", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "breath", + "wordSecond": "respiração", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sleep", + "wordSecond": "sono", + "createdAt": "2026-02-19T14:01:08.791Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_en_zh_A2.json b/output/2026_02_19_body_parts_health_en_zh_A2.json new file mode 100644 index 0000000..bbde38a --- /dev/null +++ b/output/2026_02_19_body_parts_health_en_zh_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:02:24.661Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "head", + "wordSecond": "头 (tou)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hair", + "wordSecond": "头发 (toufa)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "face", + "wordSecond": "脸 (lian)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "forehead", + "wordSecond": "额头 (etu)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "eye", + "wordSecond": "眼睛 (yanjing)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "ear", + "wordSecond": "耳朵 (erduo)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "nose", + "wordSecond": "鼻子 (bizi)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "mouth", + "wordSecond": "嘴 (zui)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "lip", + "wordSecond": "嘴唇 (zuichun)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "tooth", + "wordSecond": "牙齿 (yachi)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "tongue", + "wordSecond": "舌头 (shetou)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "chin", + "wordSecond": "下巴 (xiaba)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "neck", + "wordSecond": "脖子 (bozi)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "shoulder", + "wordSecond": "肩膀 (jianbang)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "arm", + "wordSecond": "胳膊 (gebo)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "elbow", + "wordSecond": "胳膊肘 (gebozhou)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hand", + "wordSecond": "手 (shou)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "wrist", + "wordSecond": "手腕 (shouwan)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "finger", + "wordSecond": "手指 (shouzhi)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "thumb", + "wordSecond": "大拇指 (damuzhi)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "chest", + "wordSecond": "胸 (xiong)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "back", + "wordSecond": "背 (bei)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "stomach", + "wordSecond": "肚子 (duzi)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "waist", + "wordSecond": "腰 (yao)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hip", + "wordSecond": "臀部 (tunbu)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "leg", + "wordSecond": "腿 (tui)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "knee", + "wordSecond": "膝盖 (xigai)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "foot", + "wordSecond": "脚 (jiao)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "ankle", + "wordSecond": "脚踝 (jiaohuai)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "toe", + "wordSecond": "脚趾 (jiaozhi)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "skin", + "wordSecond": "皮肤 (pifu)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bone", + "wordSecond": "骨头 (gutou)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "muscle", + "wordSecond": "肌肉 (jirou)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "blood", + "wordSecond": "血 (xue)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "heart", + "wordSecond": "心脏 (xinzang)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "lung", + "wordSecond": "肺 (fei)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "liver", + "wordSecond": "肝 (gan)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "stomach (organ)", + "wordSecond": "胃 (wei)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "kidney", + "wordSecond": "肾 (shen)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "brain", + "wordSecond": "大脑 (danao)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pain", + "wordSecond": "疼 (teng)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "ache", + "wordSecond": "痛 (tong)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "headache", + "wordSecond": "头痛 (toutong)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "stomachache", + "wordSecond": "肚子疼 (duziteng)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "fever", + "wordSecond": "发烧 (fashao)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cold (illness)", + "wordSecond": "感冒 (ganmao)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cough", + "wordSecond": "咳嗽 (kesou)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sneeze", + "wordSecond": "打喷嚏 (dapenti)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "tired", + "wordSecond": "累 (lei)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sleepy", + "wordSecond": "困 (kun)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "healthy", + "wordSecond": "健康 (jiankang)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sick", + "wordSecond": "生病 (shengbing)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "ill", + "wordSecond": "不舒服 (bushufu)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "doctor", + "wordSecond": "医生 (yisheng)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "nurse", + "wordSecond": "护士 (hushi)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hospital", + "wordSecond": "医院 (yiyuan)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "clinic", + "wordSecond": "诊所 (zhensuo)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "medicine", + "wordSecond": "药 (yao)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pill", + "wordSecond": "药片 (yaopian)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bandage", + "wordSecond": "绷带 (bengdai)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "injection", + "wordSecond": "打针 (dazhen)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "check-up", + "wordSecond": "检查 (jiancha)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "temperature", + "wordSecond": "体温 (tiwen)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "blood pressure", + "wordSecond": "血压 (xueya)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "wound", + "wordSecond": "伤口 (shangkou)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cut", + "wordSecond": "割伤 (geshang)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bruise", + "wordSecond": "淤青 (yuqing)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "fracture", + "wordSecond": "骨折 (guzhe)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "allergy", + "wordSecond": "过敏 (guomin)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "dizzy", + "wordSecond": "头晕 (touyun)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "nausea", + "wordSecond": "恶心 (exin)", + "createdAt": "2026-02-19T14:02:24.661Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_es_de_A2.json b/output/2026_02_19_body_parts_health_es_de_A2.json new file mode 100644 index 0000000..4b21ab1 --- /dev/null +++ b/output/2026_02_19_body_parts_health_es_de_A2.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:03:26.028Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cabeza", + "wordSecond": "Kopf", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "brazo", + "wordSecond": "Arm", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pierna", + "wordSecond": "Bein", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mano", + "wordSecond": "Hand", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pie", + "wordSecond": "Fuß", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dedo", + "wordSecond": "Finger", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dedo del pie", + "wordSecond": "Zehe", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ojo", + "wordSecond": "Auge", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "oreja", + "wordSecond": "Ohr", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "nariz", + "wordSecond": "Nase", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "boca", + "wordSecond": "Mund", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "labio", + "wordSecond": "Lippe", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "diente", + "wordSecond": "Zahn", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lengua", + "wordSecond": "Zunge", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "barbilla", + "wordSecond": "Kinn", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cuello", + "wordSecond": "Hals", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hombro", + "wordSecond": "Schulter", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pecho", + "wordSecond": "Brust", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "espalda", + "wordSecond": "Rücken", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "estómago", + "wordSecond": "Bauch", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "codo", + "wordSecond": "Ellbogen", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "muñeca", + "wordSecond": "Handgelenk", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "rodilla", + "wordSecond": "Knie", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tobillo", + "wordSecond": "Knöchel", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pelo", + "wordSecond": "Haar", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "uña", + "wordSecond": "Nagel", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "piel", + "wordSecond": "Haut", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "corazón", + "wordSecond": "Herz", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pulmón", + "wordSecond": "Lunge", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hígado", + "wordSecond": "Leber", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "riñón", + "wordSecond": "Niere", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "estómago", + "wordSecond": "Magen", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cerebro", + "wordSecond": "Gehirn", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sangre", + "wordSecond": "Blut", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hueso", + "wordSecond": "Knochen", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "músculo", + "wordSecond": "Muskel", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dolor", + "wordSecond": "Schmerz", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "fiebre", + "wordSecond": "Fieber", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "resfriado", + "wordSecond": "Erkältung", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tos", + "wordSecond": "Husten", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cansado", + "wordSecond": "müde", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "enfermo", + "wordSecond": "krank", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sano", + "wordSecond": "gesund", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "médico", + "wordSecond": "Arzt", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "enfermera", + "wordSecond": "Krankenschwester", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hospital", + "wordSecond": "Krankenhaus", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "medicina", + "wordSecond": "Medizin", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pastilla", + "wordSecond": "Tablette", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "inyección", + "wordSecond": "Spritze", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "herida", + "wordSecond": "Wunde", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "fractura", + "wordSecond": "Bruch", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "operación", + "wordSecond": "Operation", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cita", + "wordSecond": "Termin", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "receta", + "wordSecond": "Rezept", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "farmacia", + "wordSecond": "Apotheke", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ambulancia", + "wordSecond": "Krankenwagen", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dolor de cabeza", + "wordSecond": "Kopfschmerzen", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dolor de estómago", + "wordSecond": "Bauchschmerzen", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dolor de garganta", + "wordSecond": "Halsschmerzen", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dolor de espalda", + "wordSecond": "Rückenschmerzen", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "gripe", + "wordSecond": "Grippe", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "alergia", + "wordSecond": "Allergie", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "virus", + "wordSecond": "Virus", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "infección", + "wordSecond": "Infektion", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "vómito", + "wordSecond": "Erbrechen", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "diarrea", + "wordSecond": "Durchfall", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mareo", + "wordSecond": "Schwindel", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "fatiga", + "wordSecond": "Erschöpfung", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "estornudo", + "wordSecond": "Niesen", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "respiración", + "wordSecond": "Atmung", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "latido", + "wordSecond": "Herzschlag", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "temperatura", + "wordSecond": "Temperatur", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "presión", + "wordSecond": "Druck", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "salud", + "wordSecond": "Gesundheit", + "createdAt": "2026-02-19T14:03:26.028Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_es_fr_A2.json b/output/2026_02_19_body_parts_health_es_fr_A2.json new file mode 100644 index 0000000..5cdf325 --- /dev/null +++ b/output/2026_02_19_body_parts_health_es_fr_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:03:39.948Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cabeza", + "wordSecond": "tête", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "brazo", + "wordSecond": "bras", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pierna", + "wordSecond": "jambe", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mano", + "wordSecond": "main", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pie", + "wordSecond": "pied", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ojo", + "wordSecond": "œil", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nariz", + "wordSecond": "nez", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "boca", + "wordSecond": "bouche", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "oreja", + "wordSecond": "oreille", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cuello", + "wordSecond": "cou", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hombro", + "wordSecond": "épaule", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "codo", + "wordSecond": "coude", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "muñeca", + "wordSecond": "poignet", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dedo", + "wordSecond": "doigt", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "uña", + "wordSecond": "ongle", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pecho", + "wordSecond": "poitrine", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "espalda", + "wordSecond": "dos", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "estómago", + "wordSecond": "estomac", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cadera", + "wordSecond": "hanche", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "rodilla", + "wordSecond": "genou", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tobillo", + "wordSecond": "cheville", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pelo", + "wordSecond": "cheveux", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cara", + "wordSecond": "visage", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "labio", + "wordSecond": "lèvre", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "diente", + "wordSecond": "dent", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lengua", + "wordSecond": "langue", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "barbilla", + "wordSecond": "menton", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "frente", + "wordSecond": "front", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ceja", + "wordSecond": "sourcil", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pestaña", + "wordSecond": "cil", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "corazón", + "wordSecond": "cœur", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pulmón", + "wordSecond": "poumon", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hígado", + "wordSecond": "foie", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "riñón", + "wordSecond": "rein", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "estómago", + "wordSecond": "estomac", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cerebro", + "wordSecond": "cerveau", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sangre", + "wordSecond": "sang", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hueso", + "wordSecond": "os", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "músculo", + "wordSecond": "muscle", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "piel", + "wordSecond": "peau", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dolor", + "wordSecond": "douleur", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fiebre", + "wordSecond": "fièvre", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "resfriado", + "wordSecond": "rhume", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tos", + "wordSecond": "toux", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cansado", + "wordSecond": "fatigué", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sano", + "wordSecond": "sain", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "enfermo", + "wordSecond": "malade", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "médico", + "wordSecond": "médecin", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "enfermera", + "wordSecond": "infirmière", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hospital", + "wordSecond": "hôpital", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "medicina", + "wordSecond": "médicament", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pastilla", + "wordSecond": "comprimé", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "inyección", + "wordSecond": "piqûre", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "herida", + "wordSecond": "blessure", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "corte", + "wordSecond": "coupure", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "moretón", + "wordSecond": "ecchymose", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hinchazón", + "wordSecond": "gonflement", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "salud", + "wordSecond": "santé", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "enfermedad", + "wordSecond": "maladie", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gripe", + "wordSecond": "grippe", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dolor de cabeza", + "wordSecond": "mal de tête", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dolor de estómago", + "wordSecond": "mal de ventre", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dolor de garganta", + "wordSecond": "mal de gorge", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dolor de muelas", + "wordSecond": "mal de dents", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "farmacia", + "wordSecond": "pharmacie", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "clínica", + "wordSecond": "clinique", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "consulta", + "wordSecond": "consultation", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "receta", + "wordSecond": "ordonnance", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "operación", + "wordSecond": "opération", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cura", + "wordSecond": "soin", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "venda", + "wordSecond": "bandage", + "createdAt": "2026-02-19T14:03:39.948Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_es_it_A2.json b/output/2026_02_19_body_parts_health_es_it_A2.json new file mode 100644 index 0000000..83185cf --- /dev/null +++ b/output/2026_02_19_body_parts_health_es_it_A2.json @@ -0,0 +1,1059 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:03:55.323Z", + "metadata": { + "itemCount": 80, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cabeza", + "wordSecond": "testa", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "brazo", + "wordSecond": "braccio", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pierna", + "wordSecond": "gamba", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mano", + "wordSecond": "mano", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pie", + "wordSecond": "piede", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dedo", + "wordSecond": "dito", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ojo", + "wordSecond": "occhio", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "oreja", + "wordSecond": "orecchio", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nariz", + "wordSecond": "naso", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "boca", + "wordSecond": "bocca", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "labio", + "wordSecond": "labbro", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "diente", + "wordSecond": "dente", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lengua", + "wordSecond": "lingua", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cuello", + "wordSecond": "collo", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hombro", + "wordSecond": "spalla", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "espalda", + "wordSecond": "schiena", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pecho", + "wordSecond": "petto", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estómago", + "wordSecond": "stomaco", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cintura", + "wordSecond": "vita", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cadera", + "wordSecond": "anca", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "rodilla", + "wordSecond": "ginocchio", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tobillo", + "wordSecond": "caviglia", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "talón", + "wordSecond": "tallone", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "uña", + "wordSecond": "unghia", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pelo", + "wordSecond": "capello", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ceja", + "wordSecond": "sopracciglio", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pestaña", + "wordSecond": "ciglia", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "barbilla", + "wordSecond": "mento", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mejilla", + "wordSecond": "guancia", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "frente", + "wordSecond": "fronte", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "corazón", + "wordSecond": "cuore", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pulmón", + "wordSecond": "polmone", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hígado", + "wordSecond": "fegato", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "riñón", + "wordSecond": "rene", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estómago", + "wordSecond": "stomaco", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cerebro", + "wordSecond": "cervello", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sangre", + "wordSecond": "sangue", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hueso", + "wordSecond": "osso", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "músculo", + "wordSecond": "muscolo", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "piel", + "wordSecond": "pelle", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dolor", + "wordSecond": "dolore", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "fiebre", + "wordSecond": "febbre", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "resfriado", + "wordSecond": "raffreddore", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tos", + "wordSecond": "tosse", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gripe", + "wordSecond": "influenza", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cansado", + "wordSecond": "stanco", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "enfermo", + "wordSecond": "malato", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sano", + "wordSecond": "sano", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "salud", + "wordSecond": "salute", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "enfermedad", + "wordSecond": "malattia", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "herida", + "wordSecond": "ferita", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "corte", + "wordSecond": "taglio", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "moretón", + "wordSecond": "livido", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hinchazón", + "wordSecond": "gonfiore", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "picor", + "wordSecond": "prurito", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "náusea", + "wordSecond": "nausea", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vómito", + "wordSecond": "vomito", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "diarrea", + "wordSecond": "diarrea", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estreñimiento", + "wordSecond": "stitichezza", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "alergia", + "wordSecond": "allergia", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "asma", + "wordSecond": "asma", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "presión", + "wordSecond": "pressione", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "latido", + "wordSecond": "battito", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "respiración", + "wordSecond": "respirazione", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sudor", + "wordSecond": "sudore", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lágrima", + "wordSecond": "lacrima", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "moco", + "wordSecond": "muco", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "saliva", + "wordSecond": "saliva", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "orina", + "wordSecond": "urina", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "heces", + "wordSecond": "feci", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "médico", + "wordSecond": "medico", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "enfermera", + "wordSecond": "infermiera", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hospital", + "wordSecond": "ospedale", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "farmacia", + "wordSecond": "farmacia", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "medicina", + "wordSecond": "medicina", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pastilla", + "wordSecond": "pillola", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "inyección", + "wordSecond": "iniezione", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "operación", + "wordSecond": "operazione", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "receta", + "wordSecond": "ricetta", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cita", + "wordSecond": "appuntamento", + "createdAt": "2026-02-19T14:03:55.323Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_es_ja_A2.json b/output/2026_02_19_body_parts_health_es_ja_A2.json new file mode 100644 index 0000000..f9b4230 --- /dev/null +++ b/output/2026_02_19_body_parts_health_es_ja_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:04:17.938Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cabeza", + "wordSecond": "頭 (あたま, atama)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "brazo", + "wordSecond": "腕 (うで, ude)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pierna", + "wordSecond": "脚 (あし, ashi)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mano", + "wordSecond": "手 (て, te)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pie", + "wordSecond": "足 (あし, ashi)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ojo", + "wordSecond": "目 (め, me)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "oreja", + "wordSecond": "耳 (みみ, mimi)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "nariz", + "wordSecond": "鼻 (はな, hana)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "boca", + "wordSecond": "口 (くち, kuchi)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "diente", + "wordSecond": "歯 (は, ha)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lengua", + "wordSecond": "舌 (した, shita)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cuello", + "wordSecond": "首 (くび, kubi)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hombro", + "wordSecond": "肩 (かた, kata)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pecho", + "wordSecond": "胸 (むね, mune)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "espalda", + "wordSecond": "背中 (せなか, senaka)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "estómago", + "wordSecond": "お腹 (おなか, onaka)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "codo", + "wordSecond": "肘 (ひじ, hiji)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "muñeca", + "wordSecond": "手首 (てくび, tekubi)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dedo", + "wordSecond": "指 (ゆび, yubi)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "uña", + "wordSecond": "爪 (つめ, tsume)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "rodilla", + "wordSecond": "膝 (ひざ, hiza)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tobillo", + "wordSecond": "足首 (あしくび, ashikubi)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pelo", + "wordSecond": "髪 (かみ, kami)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cara", + "wordSecond": "顔 (かお, kao)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "frente", + "wordSecond": "額 (ひたい, hitai)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ceja", + "wordSecond": "眉 (まゆ, mayu)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pestaña", + "wordSecond": "まつげ (matsuge)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "labio", + "wordSecond": "唇 (くちびる, kuchibiru)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "barbilla", + "wordSecond": "あご (ago)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mejilla", + "wordSecond": "頬 (ほお, hoo)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "corazón", + "wordSecond": "心臓 (しんぞう, shinzou)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pulmón", + "wordSecond": "肺 (はい, hai)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hígado", + "wordSecond": "肝臓 (かんぞう, kanzou)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "riñón", + "wordSecond": "腎臓 (じんぞう, jinzou)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "estómago (órgano)", + "wordSecond": "胃 (い, i)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "intestino", + "wordSecond": "腸 (ちょう, chou)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sangre", + "wordSecond": "血 (ち, chi)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hueso", + "wordSecond": "骨 (ほね, hone)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "músculo", + "wordSecond": "筋肉 (きんにく, kinniku)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "piel", + "wordSecond": "皮膚 (ひふ, hifu)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dolor", + "wordSecond": "痛み (いたみ, itami)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "fiebre", + "wordSecond": "熱 (ねつ, netsu)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "resfriado", + "wordSecond": "風邪 (かぜ, kaze)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tos", + "wordSecond": "咳 (せき, seki)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cansado", + "wordSecond": "疲れた (つかれた, tsukareta)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "saludable", + "wordSecond": "健康な (けんこうな, kenkou na)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "enfermo", + "wordSecond": "病気 (びょうき, byouki)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "médico", + "wordSecond": "医者 (いしゃ, isha)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "enfermera", + "wordSecond": "看護師 (かんごし, kangoshi)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hospital", + "wordSecond": "病院 (びょういん, byouin)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "medicina", + "wordSecond": "薬 (くすり, kusuri)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pastilla", + "wordSecond": "錠剤 (じょうざい, jouzai)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "inyección", + "wordSecond": "注射 (ちゅうしゃ, chuusha)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "herida", + "wordSecond": "怪我 (けが, kega)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sangrado", + "wordSecond": "出血 (しゅっけつ, shukketsu)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "moretón", + "wordSecond": "あざ (aza)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hinchazón", + "wordSecond": "腫れ (はれ, hare)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "picazón", + "wordSecond": "かゆみ (kayumi)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "náusea", + "wordSecond": "吐き気 (はきけ, hakike)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mareo", + "wordSecond": "めまい (memai)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dolor de cabeza", + "wordSecond": "頭痛 (ずつう, zutsuu)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dolor de garganta", + "wordSecond": "喉の痛み (のどのいたみ, nodo no itami)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dolor de estómago", + "wordSecond": "腹痛 (ふくつう, fukutsuu)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dolor de espalda", + "wordSecond": "背中の痛み (せなかのいたみ, senaka no itami)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dolor de muelas", + "wordSecond": "歯痛 (しつう, shitsuu)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "gripe", + "wordSecond": "インフルエンザ (infuruenza)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "alergia", + "wordSecond": "アレルギー (arerugii)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "asma", + "wordSecond": "喘息 (ぜんそく, zensoku)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "presión arterial", + "wordSecond": "血圧 (けつあつ, ketsuatsu)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "temperatura", + "wordSecond": "体温 (たいおん, taion)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pulso", + "wordSecond": "脈 (みゃく, myaku)", + "createdAt": "2026-02-19T14:04:17.938Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_es_ko_A2.json b/output/2026_02_19_body_parts_health_es_ko_A2.json new file mode 100644 index 0000000..3706ff4 --- /dev/null +++ b/output/2026_02_19_body_parts_health_es_ko_A2.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:04:56.241Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cabeza", + "wordSecond": "머리 (meori)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ojo", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "nariz", + "wordSecond": "코 (ko)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "boca", + "wordSecond": "입 (ip)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "oreja", + "wordSecond": "귀 (gwi)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cuello", + "wordSecond": "목 (mok)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hombro", + "wordSecond": "어깨 (eokkae)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "brazo", + "wordSecond": "팔 (pal)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "codo", + "wordSecond": "팔꿈치 (palkkumchi)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "muñeca", + "wordSecond": "손목 (sonmok)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mano", + "wordSecond": "손 (son)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dedo", + "wordSecond": "손가락 (songarak)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pecho", + "wordSecond": "가슴 (gaseum)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "espalda", + "wordSecond": "등 (deung)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "estómago", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cintura", + "wordSecond": "허리 (heori)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cadera", + "wordSecond": "엉덩이 (eongdeongi)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pierna", + "wordSecond": "다리 (dari)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "rodilla", + "wordSecond": "무릎 (mureup)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tobillo", + "wordSecond": "발목 (balmok)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pie", + "wordSecond": "발 (bal)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dedo del pie", + "wordSecond": "발가락 (balgarak)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pelo", + "wordSecond": "머리카락 (meorikarak)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "frente", + "wordSecond": "이마 (ima)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ceja", + "wordSecond": "눈썹 (nunsseop)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pestaña", + "wordSecond": "속눈썹 (songnunsseop)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "labio", + "wordSecond": "입술 (ipsul)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "diente", + "wordSecond": "이 (i)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lengua", + "wordSecond": "혀 (hyeo)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "barbilla", + "wordSecond": "턱 (teok)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "corazón", + "wordSecond": "심장 (simjang)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pulmón", + "wordSecond": "폐 (pye)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hígado", + "wordSecond": "간 (gan)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "riñón", + "wordSecond": "콩팥 (kongpat)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "estómago (órgano)", + "wordSecond": "위 (wi)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "intestino", + "wordSecond": "창자 (changja)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cerebro", + "wordSecond": "뇌 (noe)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sangre", + "wordSecond": "피 (pi)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hueso", + "wordSecond": "뼈 (ppyeo)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "músculo", + "wordSecond": "근육 (geunyuk)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "piel", + "wordSecond": "피부 (pibu)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "uña", + "wordSecond": "손톱 (sontop)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dolor", + "wordSecond": "아픔 (apeum)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "fiebre", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "resfriado", + "wordSecond": "감기 (gamgi)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tos", + "wordSecond": "기침 (gichim)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cansado", + "wordSecond": "피곤한 (pigonhan)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "saludable", + "wordSecond": "건강한 (geonganghan)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "enfermo", + "wordSecond": "아픈 (apeun)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "médico", + "wordSecond": "의사 (uisa)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "enfermera", + "wordSecond": "간호사 (ganhosa)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hospital", + "wordSecond": "병원 (byeongwon)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "medicina", + "wordSecond": "약 (yak)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pastilla", + "wordSecond": "알약 (alyak)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "inyección", + "wordSecond": "주사 (jusa)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "herida", + "wordSecond": "상처 (sangcheo)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cicatriz", + "wordSecond": "흉터 (hyungteo)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "vómito", + "wordSecond": "구토 (guto)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "diarrea", + "wordSecond": "설사 (seolsa)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "alergia", + "wordSecond": "알레르기 (allereugi)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "gripe", + "wordSecond": "독감 (dokgam)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dolor de cabeza", + "wordSecond": "두통 (dutong)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dolor de estómago", + "wordSecond": "복통 (boktong)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dolor de garganta", + "wordSecond": "목아픔 (mogapeum)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dolor de muelas", + "wordSecond": "치통 (chitong)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sano", + "wordSecond": "건강한 (geonganghan)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "débil", + "wordSecond": "약한 (yakan)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "fuerte", + "wordSecond": "강한 (ganghan)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cura", + "wordSecond": "치료 (chiryo)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "operación", + "wordSecond": "수술 (susul)", + "createdAt": "2026-02-19T14:04:56.241Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_es_pl_A2.json b/output/2026_02_19_body_parts_health_es_pl_A2.json new file mode 100644 index 0000000..ae1bd32 --- /dev/null +++ b/output/2026_02_19_body_parts_health_es_pl_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:05:11.172Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cabeza", + "wordSecond": "głowa", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "brazo", + "wordSecond": "ramię", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pierna", + "wordSecond": "noga", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mano", + "wordSecond": "ręka", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pie", + "wordSecond": "stopa", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dedo", + "wordSecond": "palec", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ojo", + "wordSecond": "oko", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "nariz", + "wordSecond": "nos", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "boca", + "wordSecond": "usta", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "oreja", + "wordSecond": "ucho", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cara", + "wordSecond": "twarz", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "frente", + "wordSecond": "czoło", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "barbilla", + "wordSecond": "broda", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cuello", + "wordSecond": "szyja", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hombro", + "wordSecond": "bark", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "espalda", + "wordSecond": "plecy", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pecho", + "wordSecond": "klatka piersiowa", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "estómago", + "wordSecond": "brzuch", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "codo", + "wordSecond": "łokieć", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "muñeca", + "wordSecond": "nadgarstek", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "rodilla", + "wordSecond": "kolano", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tobillo", + "wordSecond": "kostka", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dedo del pie", + "wordSecond": "palec u nogi", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pelo", + "wordSecond": "włos", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ceja", + "wordSecond": "brew", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pestaña", + "wordSecond": "rzęsa", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "labio", + "wordSecond": "warga", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "diente", + "wordSecond": "ząb", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "lengua", + "wordSecond": "język", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mejilla", + "wordSecond": "policzek", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "corazón", + "wordSecond": "serce", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pulmón", + "wordSecond": "płuco", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hígado", + "wordSecond": "wątroba", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "riñón", + "wordSecond": "nerka", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "estómago", + "wordSecond": "żołądek", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cerebro", + "wordSecond": "mózg", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sangre", + "wordSecond": "krew", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hueso", + "wordSecond": "kość", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "músculo", + "wordSecond": "mięsień", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "piel", + "wordSecond": "skóra", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "uña", + "wordSecond": "paznokieć", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dolor", + "wordSecond": "ból", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "fiebre", + "wordSecond": "gorączka", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "resfriado", + "wordSecond": "przeziębienie", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tos", + "wordSecond": "kaszel", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cansado", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sano", + "wordSecond": "zdrowy", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "enfermo", + "wordSecond": "chory", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "médico", + "wordSecond": "lekarz", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "medicina", + "wordSecond": "lekarstwo", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hospital", + "wordSecond": "szpital", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "enfermera", + "wordSecond": "pielęgniarka", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "farmacia", + "wordSecond": "apteka", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "herida", + "wordSecond": "rana", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "moretón", + "wordSecond": "siniak", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hinchazón", + "wordSecond": "obrzęk", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "gripe", + "wordSecond": "grypa", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "alergia", + "wordSecond": "alergia", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "vómito", + "wordSecond": "wymioty", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "diarrea", + "wordSecond": "biegunka", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "estornudo", + "wordSecond": "kichnięcie", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dolor de cabeza", + "wordSecond": "ból głowy", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dolor de garganta", + "wordSecond": "ból gardła", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dolor de estómago", + "wordSecond": "ból brzucha", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dolor de espalda", + "wordSecond": "ból pleców", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dolor de muelas", + "wordSecond": "ból zęba", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "salud", + "wordSecond": "zdrowie", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "enfermedad", + "wordSecond": "choroba", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "receta", + "wordSecond": "recepta", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "inyección", + "wordSecond": "zastrzyk", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "operación", + "wordSecond": "operacja", + "createdAt": "2026-02-19T14:05:11.172Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_es_pt_A2.json b/output/2026_02_19_body_parts_health_es_pt_A2.json new file mode 100644 index 0000000..d1bfb35 --- /dev/null +++ b/output/2026_02_19_body_parts_health_es_pt_A2.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:03:11.431Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cabeza", + "wordSecond": "cabeça", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "brazo", + "wordSecond": "braço", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pierna", + "wordSecond": "perna", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mano", + "wordSecond": "mão", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pie", + "wordSecond": "pé", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ojo", + "wordSecond": "olho", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nariz", + "wordSecond": "nariz", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "boca", + "wordSecond": "boca", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "oreja", + "wordSecond": "orelha", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuello", + "wordSecond": "pescoço", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hombro", + "wordSecond": "ombro", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pecho", + "wordSecond": "peito", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "espalda", + "wordSecond": "costas", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estómago", + "wordSecond": "estômago", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "codo", + "wordSecond": "cotovelo", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "muñeca", + "wordSecond": "pulso", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dedo", + "wordSecond": "dedo", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rodilla", + "wordSecond": "joelho", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tobillo", + "wordSecond": "tornozelo", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dedo del pie", + "wordSecond": "dedo do pé", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cabello", + "wordSecond": "cabelo", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "frente", + "wordSecond": "testa", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ceja", + "wordSecond": "sobrancelha", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pestaña", + "wordSecond": "cílio", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "labio", + "wordSecond": "lábio", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "diente", + "wordSecond": "dente", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lengua", + "wordSecond": "língua", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "barbilla", + "wordSecond": "queixo", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mejilla", + "wordSecond": "bochecha", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "corazón", + "wordSecond": "coração", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pulmón", + "wordSecond": "pulmão", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hígado", + "wordSecond": "fígado", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "riñón", + "wordSecond": "rim", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estómago", + "wordSecond": "estômago", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cerebro", + "wordSecond": "cérebro", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sangre", + "wordSecond": "sangue", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hueso", + "wordSecond": "osso", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "músculo", + "wordSecond": "músculo", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "piel", + "wordSecond": "pele", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "uña", + "wordSecond": "unha", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dolor", + "wordSecond": "dor", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fiebre", + "wordSecond": "febre", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "resfriado", + "wordSecond": "resfriado", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cansado", + "wordSecond": "cansado", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sano", + "wordSecond": "saudável", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "enfermo", + "wordSecond": "doente", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "médico", + "wordSecond": "médico", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "medicina", + "wordSecond": "remédio", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hospital", + "wordSecond": "hospital", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "enfermera", + "wordSecond": "enfermeira", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "farmacia", + "wordSecond": "farmácia", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "herida", + "wordSecond": "ferida", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tos", + "wordSecond": "tosse", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gripe", + "wordSecond": "gripe", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dolor de cabeza", + "wordSecond": "dor de cabeça", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dolor de estómago", + "wordSecond": "dor de estômago", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dolor de garganta", + "wordSecond": "dor de garganta", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dolor de muelas", + "wordSecond": "dor de dente", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vómito", + "wordSecond": "vômito", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "diarrea", + "wordSecond": "diarreia", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alergia", + "wordSecond": "alergia", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "asma", + "wordSecond": "asma", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "presión arterial", + "wordSecond": "pressão arterial", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "temperatura", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vacuna", + "wordSecond": "vacina", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pastilla", + "wordSecond": "comprimido", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "inyección", + "wordSecond": "injeção", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cirugía", + "wordSecond": "cirurgia", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "receta", + "wordSecond": "receita", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "consulta", + "wordSecond": "consulta", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "emergencia", + "wordSecond": "emergência", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ambulancia", + "wordSecond": "ambulância", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "clínica", + "wordSecond": "clínica", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "salud", + "wordSecond": "saúde", + "createdAt": "2026-02-19T14:03:11.431Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_es_zh_A2.json b/output/2026_02_19_body_parts_health_es_zh_A2.json new file mode 100644 index 0000000..706bed4 --- /dev/null +++ b/output/2026_02_19_body_parts_health_es_zh_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:04:36.968Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cabeza", + "wordSecond": "头 (tóu)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "brazo", + "wordSecond": "手臂 (shǒubì)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pierna", + "wordSecond": "腿 (tuǐ)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mano", + "wordSecond": "手 (shǒu)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pie", + "wordSecond": "脚 (jiǎo)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ojo", + "wordSecond": "眼睛 (yǎnjīng)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nariz", + "wordSecond": "鼻子 (bízi)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "boca", + "wordSecond": "嘴巴 (zuǐba)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "oreja", + "wordSecond": "耳朵 (ěrduo)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cara", + "wordSecond": "脸 (liǎn)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cuello", + "wordSecond": "脖子 (bózi)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hombro", + "wordSecond": "肩膀 (jiānbǎng)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "espalda", + "wordSecond": "背 (bèi)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pecho", + "wordSecond": "胸 (xiōng)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "estómago", + "wordSecond": "胃 (wèi)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "corazón", + "wordSecond": "心脏 (xīnzàng)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pulmón", + "wordSecond": "肺 (fèi)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hígado", + "wordSecond": "肝 (gān)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "riñón", + "wordSecond": "肾 (shèn)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sangre", + "wordSecond": "血 (xuè)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hueso", + "wordSecond": "骨头 (gǔtou)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "piel", + "wordSecond": "皮肤 (pífū)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cabello", + "wordSecond": "头发 (tóufa)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "dedo", + "wordSecond": "手指 (shǒuzhǐ)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "uña", + "wordSecond": "指甲 (zhǐjia)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "rodilla", + "wordSecond": "膝盖 (xīgài)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tobillo", + "wordSecond": "脚踝 (jiǎohuái)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "codo", + "wordSecond": "胳膊肘 (gēbozhǒu)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "muñeca", + "wordSecond": "手腕 (shǒuwàn)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cadera", + "wordSecond": "髋部 (kuānbù)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ceja", + "wordSecond": "眉毛 (méimáo)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pestaña", + "wordSecond": "睫毛 (jiémáo)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "labio", + "wordSecond": "嘴唇 (zuǐchún)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "diente", + "wordSecond": "牙齿 (yáchǐ)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "lengua", + "wordSecond": "舌头 (shétou)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "barbilla", + "wordSecond": "下巴 (xiàba)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "frente", + "wordSecond": "额头 (étóu)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mejilla", + "wordSecond": "脸颊 (liǎnjiá)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ombligo", + "wordSecond": "肚脐 (dùqí)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "muslo", + "wordSecond": "大腿 (dàtuǐ)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pantorrilla", + "wordSecond": "小腿 (xiǎotuǐ)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "talón", + "wordSecond": "脚跟 (jiǎogēn)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "dedo del pie", + "wordSecond": "脚趾 (jiǎozhǐ)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cerebro", + "wordSecond": "大脑 (dànǎo)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "intestino", + "wordSecond": "肠 (cháng)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "vejiga", + "wordSecond": "膀胱 (pángguāng)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "dolor", + "wordSecond": "疼痛 (téngtòng)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "fiebre", + "wordSecond": "发烧 (fāshāo)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "resfriado", + "wordSecond": "感冒 (gǎnmào)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cansado", + "wordSecond": "累 (lèi)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "saludable", + "wordSecond": "健康 (jiànkāng)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "enfermo", + "wordSecond": "生病 (shēngbìng)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "médico", + "wordSecond": "医生 (yīshēng)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "medicina", + "wordSecond": "药 (yào)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hospital", + "wordSecond": "医院 (yīyuàn)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "enfermera", + "wordSecond": "护士 (hùshi)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "clínica", + "wordSecond": "诊所 (zhěnsuǒ)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "farmacia", + "wordSecond": "药店 (yàodiàn)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "inyección", + "wordSecond": "打针 (dǎzhēn)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pastilla", + "wordSecond": "药片 (yàopiàn)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tos", + "wordSecond": "咳嗽 (késòu)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "gripe", + "wordSecond": "流感 (liúgǎn)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "herida", + "wordSecond": "伤口 (shāngkǒu)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sano", + "wordSecond": "健康的 (jiànkāng de)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "débil", + "wordSecond": "虚弱 (xūruò)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "fuerte", + "wordSecond": "强壮 (qiángzhuàng)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cura", + "wordSecond": "治疗 (zhìliáo)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "operación", + "wordSecond": "手术 (shǒushù)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "receta", + "wordSecond": "处方 (chǔfāng)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "síntoma", + "wordSecond": "症状 (zhèngzhuàng)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "enfermedad", + "wordSecond": "疾病 (jíbìng)", + "createdAt": "2026-02-19T14:04:36.968Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_fr_it_A2.json b/output/2026_02_19_body_parts_health_fr_it_A2.json new file mode 100644 index 0000000..f83538e --- /dev/null +++ b/output/2026_02_19_body_parts_health_fr_it_A2.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:09:08.494Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tête", + "wordSecond": "testa", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bras", + "wordSecond": "braccio", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "jambe", + "wordSecond": "gamba", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "main", + "wordSecond": "mano", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pied", + "wordSecond": "piede", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "doigt", + "wordSecond": "dito", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "orteil", + "wordSecond": "dito del piede", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "œil", + "wordSecond": "occhio", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "oreille", + "wordSecond": "orecchio", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "nez", + "wordSecond": "naso", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bouche", + "wordSecond": "bocca", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dent", + "wordSecond": "dente", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "langue", + "wordSecond": "lingua", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cou", + "wordSecond": "collo", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "épaule", + "wordSecond": "spalla", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "poitrine", + "wordSecond": "petto", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dos", + "wordSecond": "schiena", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ventre", + "wordSecond": "pancia", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "genou", + "wordSecond": "ginocchio", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cheville", + "wordSecond": "caviglia", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cheveux", + "wordSecond": "capelli", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "visage", + "wordSecond": "viso", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "front", + "wordSecond": "fronte", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sourcil", + "wordSecond": "sopracciglio", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cil", + "wordSecond": "ciglio", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "lèvre", + "wordSecond": "labbro", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "menton", + "wordSecond": "mento", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "joue", + "wordSecond": "guancia", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "poignet", + "wordSecond": "polso", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "coude", + "wordSecond": "gomito", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "hanche", + "wordSecond": "anca", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cuisse", + "wordSecond": "coscia", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mollet", + "wordSecond": "polpaccio", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "talon", + "wordSecond": "tallone", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ongle", + "wordSecond": "unghia", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "peau", + "wordSecond": "pelle", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cœur", + "wordSecond": "cuore", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "poumon", + "wordSecond": "polmone", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "foie", + "wordSecond": "fegato", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "estomac", + "wordSecond": "stomaco", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rein", + "wordSecond": "rene", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cerveau", + "wordSecond": "cervello", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "os", + "wordSecond": "osso", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sang", + "wordSecond": "sangue", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "muscle", + "wordSecond": "muscolo", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "nerf", + "wordSecond": "nervo", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "veine", + "wordSecond": "vena", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "artère", + "wordSecond": "arteria", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "douleur", + "wordSecond": "dolore", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fièvre", + "wordSecond": "febbre", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rhume", + "wordSecond": "raffreddore", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "toux", + "wordSecond": "tosse", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fatigué", + "wordSecond": "stanco", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "en bonne santé", + "wordSecond": "sano", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "malade", + "wordSecond": "malato", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "médecin", + "wordSecond": "medico", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "infirmier", + "wordSecond": "infermiere", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "hôpital", + "wordSecond": "ospedale", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "médicament", + "wordSecond": "medicina", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pilule", + "wordSecond": "pillola", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sirop", + "wordSecond": "sciroppo", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pansement", + "wordSecond": "cerotto", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "blessure", + "wordSecond": "ferita", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cicatrice", + "wordSecond": "cicatrice", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "opération", + "wordSecond": "operazione", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vaccin", + "wordSecond": "vaccino", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "allergie", + "wordSecond": "allergia", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "virus", + "wordSecond": "virus", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "infection", + "wordSecond": "infezione", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "guérison", + "wordSecond": "guarigione", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "santé", + "wordSecond": "salute", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "régime", + "wordSecond": "dieta", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "exercice", + "wordSecond": "esercizio", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "repos", + "wordSecond": "riposo", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sommeil", + "wordSecond": "sonno", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "respiration", + "wordSecond": "respirazione", + "createdAt": "2026-02-19T14:09:08.494Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_fr_ja_A2.json b/output/2026_02_19_body_parts_health_fr_ja_A2.json new file mode 100644 index 0000000..5dd5099 --- /dev/null +++ b/output/2026_02_19_body_parts_health_fr_ja_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:09:30.629Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tête", + "wordSecond": "頭 (あたま, atama)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "œil", + "wordSecond": "目 (め, me)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "oreille", + "wordSecond": "耳 (みみ, mimi)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "nez", + "wordSecond": "鼻 (はな, hana)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bouche", + "wordSecond": "口 (くち, kuchi)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "dent", + "wordSecond": "歯 (は, ha)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "langue", + "wordSecond": "舌 (した, shita)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cou", + "wordSecond": "首 (くび, kubi)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "épaule", + "wordSecond": "肩 (かた, kata)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bras", + "wordSecond": "腕 (うで, ude)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "coude", + "wordSecond": "肘 (ひじ, hiji)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "poignet", + "wordSecond": "手首 (てくび, tekubi)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "main", + "wordSecond": "手 (て, te)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "doigt", + "wordSecond": "指 (ゆび, yubi)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ongle", + "wordSecond": "爪 (つめ, tsume)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "poitrine", + "wordSecond": "胸 (むね, mune)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "dos", + "wordSecond": "背中 (せなか, senaka)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ventre", + "wordSecond": "お腹 (おなか, onaka)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "hanche", + "wordSecond": "腰 (こし, koshi)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "jambe", + "wordSecond": "足 (あし, ashi)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "genou", + "wordSecond": "膝 (ひざ, hiza)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cheville", + "wordSecond": "足首 (あしくび, ashikubi)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pied", + "wordSecond": "足 (あし, ashi)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "orteil", + "wordSecond": "足の指 (あしのゆび, ashi no yubi)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cheveux", + "wordSecond": "髪 (かみ, kami)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "visage", + "wordSecond": "顔 (かお, kao)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "front", + "wordSecond": "額 (ひたい, hitai)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sourcil", + "wordSecond": "眉 (まゆ, mayu)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cil", + "wordSecond": "まつげ (matsuge)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "joues", + "wordSecond": "頬 (ほお, hoo)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "menton", + "wordSecond": "あご (ago)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "lèvres", + "wordSecond": "唇 (くちびる, kuchibiru)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "gorge", + "wordSecond": "喉 (のど, nodo)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "peau", + "wordSecond": "肌 (はだ, hada)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "os", + "wordSecond": "骨 (ほね, hone)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "muscle", + "wordSecond": "筋肉 (きんにく, kinniku)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sang", + "wordSecond": "血 (ち, chi)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cœur", + "wordSecond": "心臓 (しんぞう, shinzou)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "poumon", + "wordSecond": "肺 (はい, hai)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "foie", + "wordSecond": "肝臓 (かんぞう, kanzou)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "estomac", + "wordSecond": "胃 (い, i)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "intestin", + "wordSecond": "腸 (ちょう, chou)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rein", + "wordSecond": "腎臓 (じんぞう, jinzou)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cerveau", + "wordSecond": "脳 (のう, nou)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "douleur", + "wordSecond": "痛み (いたみ, itami)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "fièvre", + "wordSecond": "熱 (ねつ, netsu)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rhume", + "wordSecond": "風邪 (かぜ, kaze)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "toux", + "wordSecond": "咳 (せき, seki)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "fatigué", + "wordSecond": "疲れた (つかれた, tsukareta)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "en bonne santé", + "wordSecond": "健康 (けんこう, kenkou)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "malade", + "wordSecond": "病気 (びょうき, byouki)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "médecin", + "wordSecond": "医者 (いしゃ, isha)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "infirmière", + "wordSecond": "看護師 (かんごし, kangoshi)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "hôpital", + "wordSecond": "病院 (びょういん, byouin)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "médicament", + "wordSecond": "薬 (くすり, kusuri)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pilule", + "wordSecond": "錠剤 (じょうざい, jouzai)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "seringue", + "wordSecond": "注射器 (ちゅうしゃき, chuushaki)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pansement", + "wordSecond": "絆創膏 (ばんそうこう, bansoukou)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "blessure", + "wordSecond": "怪我 (けが, kega)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cicatrice", + "wordSecond": "傷跡 (きずあと, kizuato)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "santé", + "wordSecond": "健康 (けんこう, kenkou)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mal", + "wordSecond": "病気 (びょうき, byouki)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "guéri", + "wordSecond": "治った (なおった, naotta)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "traitement", + "wordSecond": "治療 (ちりょう, chiryou)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "opération", + "wordSecond": "手術 (しゅじゅつ, shujutsu)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "vaccin", + "wordSecond": "ワクチン (wakuchin)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "allergie", + "wordSecond": "アレルギー (arerugii)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "infection", + "wordSecond": "感染 (かんせん, kansen)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "inflammation", + "wordSecond": "炎症 (えんしょう, enshou)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "symptôme", + "wordSecond": "症状 (しょうじょう, shoujou)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "diagnostic", + "wordSecond": "診断 (しんだん, shindan)", + "createdAt": "2026-02-19T14:09:30.629Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_fr_ko_A2.json b/output/2026_02_19_body_parts_health_fr_ko_A2.json new file mode 100644 index 0000000..d193de2 --- /dev/null +++ b/output/2026_02_19_body_parts_health_fr_ko_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:10:12.169Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tête", + "wordSecond": "머리 (meori)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "visage", + "wordSecond": "얼굴 (eolgul)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "œil", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "oreille", + "wordSecond": "귀 (gwi)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "nez", + "wordSecond": "코 (ko)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "bouche", + "wordSecond": "입 (ip)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dent", + "wordSecond": "이 (i)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "langue", + "wordSecond": "혀 (hyeo)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cou", + "wordSecond": "목 (mok)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "épaule", + "wordSecond": "어깨 (eokkae)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "bras", + "wordSecond": "팔 (pal)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "coude", + "wordSecond": "팔꿈치 (palkkumchi)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "poignet", + "wordSecond": "손목 (sonmok)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "main", + "wordSecond": "손 (son)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "doigt", + "wordSecond": "손가락 (songarak)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "poitrine", + "wordSecond": "가슴 (gaseum)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dos", + "wordSecond": "등 (deung)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "ventre", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "hanche", + "wordSecond": "엉덩이 (eongdeongi)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "jambe", + "wordSecond": "다리 (dari)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "genou", + "wordSecond": "무릎 (mureup)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cheville", + "wordSecond": "발목 (balmok)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pied", + "wordSecond": "발 (bal)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "orteil", + "wordSecond": "발가락 (balgarak)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cheveux", + "wordSecond": "머리카락 (meorikarak)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sourcil", + "wordSecond": "눈썹 (nunsseop)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cil", + "wordSecond": "속눈썹 (songnunsseop)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "lèvre", + "wordSecond": "입술 (ipsul)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "menton", + "wordSecond": "턱 (teok)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "front", + "wordSecond": "이마 (ima)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "joue", + "wordSecond": "뺨 (ppyam)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "barbe", + "wordSecond": "수염 (suyeom)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "moustache", + "wordSecond": "콧수염 (kotsuyeom)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "ongle", + "wordSecond": "손톱 (sontop)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "ongle de pied", + "wordSecond": "발톱 (baltop)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "peau", + "wordSecond": "피부 (pibu)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "os", + "wordSecond": "뼈 (ppyeo)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "muscle", + "wordSecond": "근육 (geunyuk)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sang", + "wordSecond": "피 (pi)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cœur", + "wordSecond": "심장 (simjang)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "poumon", + "wordSecond": "폐 (pye)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "foie", + "wordSecond": "간 (gan)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "estomac", + "wordSecond": "위 (wi)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "rein", + "wordSecond": "콩팥 (kongpat)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cerveau", + "wordSecond": "뇌 (noe)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "douleur", + "wordSecond": "통증 (tongjeung)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "fièvre", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "rhume", + "wordSecond": "감기 (gamgi)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "toux", + "wordSecond": "기침 (gichim)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "fatigué", + "wordSecond": "피곤한 (pigonhan)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "en bonne santé", + "wordSecond": "건강한 (geonganghan)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "malade", + "wordSecond": "아픈 (apeun)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "médecin", + "wordSecond": "의사 (uisa)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "médicament", + "wordSecond": "약 (yak)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "hôpital", + "wordSecond": "병원 (byeongwon)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "infirmière", + "wordSecond": "간호사 (ganhosa)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "patient", + "wordSecond": "환자 (hwanja)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "blessure", + "wordSecond": "상처 (sangcheo)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cicatrice", + "wordSecond": "흉터 (hungteo)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "opération", + "wordSecond": "수술 (susul)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "santé", + "wordSecond": "건강 (geongang)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "mal de tête", + "wordSecond": "두통 (dutong)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "mal de ventre", + "wordSecond": "복통 (boktong)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "mal de gorge", + "wordSecond": "목아픔 (mogapeum)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "nausée", + "wordSecond": "메스꺼움 (meseukkeoum)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "vertige", + "wordSecond": "현기증 (hyeon-gijeung)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "allergie", + "wordSecond": "알레르기 (allereugi)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "blessé", + "wordSecond": "다친 (dachin)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "guéri", + "wordSecond": "나은 (naeun)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "examen", + "wordSecond": "검사 (geomsa)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tension artérielle", + "wordSecond": "혈압 (hyeorap)", + "createdAt": "2026-02-19T14:10:12.169Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_fr_pl_A2.json b/output/2026_02_19_body_parts_health_fr_pl_A2.json new file mode 100644 index 0000000..baac7f9 --- /dev/null +++ b/output/2026_02_19_body_parts_health_fr_pl_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:10:26.435Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "tête", + "wordSecond": "głowa", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "bras", + "wordSecond": "ramię", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "jambe", + "wordSecond": "noga", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "main", + "wordSecond": "ręka", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pied", + "wordSecond": "stopa", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "doigt", + "wordSecond": "palec", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "orteil", + "wordSecond": "palec u nogi", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "œil", + "wordSecond": "oko", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "oreille", + "wordSecond": "ucho", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "nez", + "wordSecond": "nos", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "bouche", + "wordSecond": "usta", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dent", + "wordSecond": "ząb", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "langue", + "wordSecond": "język", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cou", + "wordSecond": "szyja", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "épaule", + "wordSecond": "bark", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dos", + "wordSecond": "plecy", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "poitrine", + "wordSecond": "klatka piersiowa", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "ventre", + "wordSecond": "brzuch", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "genou", + "wordSecond": "kolano", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cheville", + "wordSecond": "kostka", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cheveux", + "wordSecond": "włosy", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "visage", + "wordSecond": "twarz", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "front", + "wordSecond": "czoło", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sourcil", + "wordSecond": "brew", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cil", + "wordSecond": "rzęsa", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "joues", + "wordSecond": "policzki", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "menton", + "wordSecond": "broda", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "lèvres", + "wordSecond": "wargi", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "gorge", + "wordSecond": "gardło", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "poignet", + "wordSecond": "nadgarstek", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "coude", + "wordSecond": "łokieć", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "hanche", + "wordSecond": "biodro", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cuisse", + "wordSecond": "udo", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "mollet", + "wordSecond": "łydka", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "talon", + "wordSecond": "pięta", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "ongle", + "wordSecond": "paznokieć", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "peau", + "wordSecond": "skóra", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "os", + "wordSecond": "kość", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "muscle", + "wordSecond": "mięsień", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sang", + "wordSecond": "krew", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cœur", + "wordSecond": "serce", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "poumon", + "wordSecond": "płuco", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "foie", + "wordSecond": "wątroba", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "estomac", + "wordSecond": "żołądek", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rein", + "wordSecond": "nerka", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cerveau", + "wordSecond": "mózg", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "douleur", + "wordSecond": "ból", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "fièvre", + "wordSecond": "gorączka", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rhume", + "wordSecond": "przeziębienie", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "toux", + "wordSecond": "kaszel", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "fatigué", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "en bonne santé", + "wordSecond": "zdrowy", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "malade", + "wordSecond": "chory", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "médecin", + "wordSecond": "lekarz", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "docteur", + "wordSecond": "doktor", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "infirmière", + "wordSecond": "pielęgniarka", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "hôpital", + "wordSecond": "szpital", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "médicament", + "wordSecond": "lek", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pilule", + "wordSecond": "tabletka", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sirop", + "wordSecond": "syrop", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pansement", + "wordSecond": "bandaż", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "blessure", + "wordSecond": "rana", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cicatrice", + "wordSecond": "blizna", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "allergie", + "wordSecond": "alergia", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "virus", + "wordSecond": "wirus", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "infection", + "wordSecond": "infekcja", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "opération", + "wordSecond": "operacja", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "santé", + "wordSecond": "zdrowie", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "récupération", + "wordSecond": "rekonwalescencja", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "vaccin", + "wordSecond": "szczepionka", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "contrôle", + "wordSecond": "badanie", + "createdAt": "2026-02-19T14:10:26.435Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_fr_zh_A2.json b/output/2026_02_19_body_parts_health_fr_zh_A2.json new file mode 100644 index 0000000..760a6c4 --- /dev/null +++ b/output/2026_02_19_body_parts_health_fr_zh_A2.json @@ -0,0 +1,1033 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:09:51.869Z", + "metadata": { + "itemCount": 78, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tête", + "wordSecond": "头 (tóu)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "bras", + "wordSecond": "手臂 (shǒubì)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "jambe", + "wordSecond": "腿 (tuǐ)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "main", + "wordSecond": "手 (shǒu)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pied", + "wordSecond": "脚 (jiǎo)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "œil", + "wordSecond": "眼睛 (yǎnjīng)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "oreille", + "wordSecond": "耳朵 (ěrduo)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "nez", + "wordSecond": "鼻子 (bízi)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "bouche", + "wordSecond": "嘴 (zuǐ)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "dent", + "wordSecond": "牙齿 (yáchǐ)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "langue", + "wordSecond": "舌头 (shétou)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cheveux", + "wordSecond": "头发 (tóufa)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "visage", + "wordSecond": "脸 (liǎn)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cou", + "wordSecond": "脖子 (bózi)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "épaule", + "wordSecond": "肩膀 (jiānbǎng)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "poitrine", + "wordSecond": "胸 (xiōng)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "dos", + "wordSecond": "背 (bèi)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ventre", + "wordSecond": "肚子 (dùzi)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "doigt", + "wordSecond": "手指 (shǒuzhǐ)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ongle", + "wordSecond": "指甲 (zhǐjia)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "genou", + "wordSecond": "膝盖 (xīgài)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cheville", + "wordSecond": "脚踝 (jiǎohuái)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cœur", + "wordSecond": "心脏 (xīnzàng)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "poumon", + "wordSecond": "肺 (fèi)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "foie", + "wordSecond": "肝 (gān)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "estomac", + "wordSecond": "胃 (wèi)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "rein", + "wordSecond": "肾 (shèn)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cerveau", + "wordSecond": "大脑 (dànǎo)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "os", + "wordSecond": "骨头 (gǔtou)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sang", + "wordSecond": "血 (xuè)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "peau", + "wordSecond": "皮肤 (pífū)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "muscle", + "wordSecond": "肌肉 (jīròu)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pouce", + "wordSecond": "拇指 (mǔzhǐ)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "poignet", + "wordSecond": "手腕 (shǒuwàn)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "coude", + "wordSecond": "肘 (zhǒu)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "hanche", + "wordSecond": "髋部 (kuānbù)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cuisse", + "wordSecond": "大腿 (dàtuǐ)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mollet", + "wordSecond": "小腿 (xiǎotuǐ)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "talon", + "wordSecond": "脚跟 (jiǎogēn)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "orteil", + "wordSecond": "脚趾 (jiǎozhǐ)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sourcil", + "wordSecond": "眉毛 (méimao)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cil", + "wordSecond": "睫毛 (jiémáo)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lèvre", + "wordSecond": "嘴唇 (zuǐchún)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "menton", + "wordSecond": "下巴 (xiàba)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "front", + "wordSecond": "额头 (étóu)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "joue", + "wordSecond": "脸颊 (liǎnjiá)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "gorge", + "wordSecond": "喉咙 (hóulóng)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "aisselle", + "wordSecond": "腋下 (yèxià)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "nombril", + "wordSecond": "肚脐 (dùqí)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "douleur", + "wordSecond": "疼痛 (téngtòng)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fièvre", + "wordSecond": "发烧 (fāshāo)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "rhume", + "wordSecond": "感冒 (gǎnmào)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fatigué", + "wordSecond": "累 (lèi)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sain", + "wordSecond": "健康 (jiànkāng)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "malade", + "wordSecond": "生病 (shēngbìng)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "médecin", + "wordSecond": "医生 (yīshēng)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "médecine", + "wordSecond": "药 (yào)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "hôpital", + "wordSecond": "医院 (yīyuàn)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "infirmière", + "wordSecond": "护士 (hùshi)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "blessure", + "wordSecond": "伤口 (shāngkǒu)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "toux", + "wordSecond": "咳嗽 (késou)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "éternuement", + "wordSecond": "打喷嚏 (dǎ pēntì)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "maux de tête", + "wordSecond": "头痛 (tóutòng)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "maux de ventre", + "wordSecond": "肚子痛 (dùzi tòng)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "maux de gorge", + "wordSecond": "喉咙痛 (hóulóng tòng)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "nausée", + "wordSecond": "恶心 (ěxin)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vertige", + "wordSecond": "头晕 (tóuyūn)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "blessé", + "wordSecond": "受伤 (shòushāng)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "guéri", + "wordSecond": "康复 (kāngfù)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "traitement", + "wordSecond": "治疗 (zhìliáo)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "santé", + "wordSecond": "健康 (jiànkāng)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "récupération", + "wordSecond": "恢复 (huīfù)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vaccin", + "wordSecond": "疫苗 (yìmiáo)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pilule", + "wordSecond": "药片 (yàopiàn)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pansement", + "wordSecond": "绷带 (bēngdài)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "thermomètre", + "wordSecond": "体温计 (tǐwēnjì)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "symptôme", + "wordSecond": "症状 (zhèngzhuàng)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "diagnostic", + "wordSecond": "诊断 (zhěnduàn)", + "createdAt": "2026-02-19T14:09:51.869Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_it_ja_A2.json b/output/2026_02_19_body_parts_health_it_ja_A2.json new file mode 100644 index 0000000..79a8642 --- /dev/null +++ b/output/2026_02_19_body_parts_health_it_ja_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:10:50.396Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "testa", + "wordSecond": "頭 (あたま, atama)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "occhio", + "wordSecond": "目 (め, me)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "orecchio", + "wordSecond": "耳 (みみ, mimi)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "naso", + "wordSecond": "鼻 (はな, hana)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "bocca", + "wordSecond": "口 (くち, kuchi)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dente", + "wordSecond": "歯 (は, ha)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lingua", + "wordSecond": "舌 (した, shita)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "gola", + "wordSecond": "喉 (のど, nodo)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "collo", + "wordSecond": "首 (くび, kubi)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "spalla", + "wordSecond": "肩 (かた, kata)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "braccio", + "wordSecond": "腕 (うで, ude)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "gomito", + "wordSecond": "肘 (ひじ, hiji)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "polso", + "wordSecond": "手首 (てくび, tekubi)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mano", + "wordSecond": "手 (て, te)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dito", + "wordSecond": "指 (ゆび, yubi)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "petto", + "wordSecond": "胸 (むね, mune)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "schiena", + "wordSecond": "背中 (せなか, senaka)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "stomaco", + "wordSecond": "お腹 (おなか, onaka)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cuore", + "wordSecond": "心臓 (しんぞう, shinzou)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "polmone", + "wordSecond": "肺 (はい, hai)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fegato", + "wordSecond": "肝臓 (かんぞう, kanzou)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "rene", + "wordSecond": "腎臓 (じんぞう, jinzou)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "gamba", + "wordSecond": "足 (あし, ashi)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ginocchio", + "wordSecond": "膝 (ひざ, hiza)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "caviglia", + "wordSecond": "足首 (あしくび, ashikubi)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "piede", + "wordSecond": "足 (あし, ashi)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pelle", + "wordSecond": "皮膚 (ひふ, hifu)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "capelli", + "wordSecond": "髪 (かみ, kami)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sopracciglio", + "wordSecond": "眉 (まゆ, mayu)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ciglia", + "wordSecond": "まつ毛 (まつげ, matsuge)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "labbro", + "wordSecond": "唇 (くちびる, kuchibiru)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mento", + "wordSecond": "あご (あご, ago)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "guancia", + "wordSecond": "頬 (ほお, hoo)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fronte", + "wordSecond": "額 (ひたい, hitai)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "unghia", + "wordSecond": "爪 (つめ, tsume)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dito del piede", + "wordSecond": "足の指 (あしのゆび, ashi no yubi)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tallone", + "wordSecond": "かかと (かかと, kakato)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "anca", + "wordSecond": "腰 (こし, koshi)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "costola", + "wordSecond": "肋骨 (あばらぼね, abarabone)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "muscolo", + "wordSecond": "筋肉 (きんにく, kinniku)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "osso", + "wordSecond": "骨 (ほね, hone)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sangue", + "wordSecond": "血 (ち, chi)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cervello", + "wordSecond": "脳 (のう, nou)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "stomaco (organo)", + "wordSecond": "胃 (い, i)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "intestino", + "wordSecond": "腸 (ちょう, chou)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "vescica", + "wordSecond": "膀胱 (ぼうこう, boukou)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mal di testa", + "wordSecond": "頭痛 (ずつう, zutsuu)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mal di stomaco", + "wordSecond": "腹痛 (ふくつう, fukutsuu)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mal di gola", + "wordSecond": "喉の痛み (のどのいたみ, nodo no itami)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mal di denti", + "wordSecond": "歯痛 (しつう, shitsuu)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dolore", + "wordSecond": "痛み (いたみ, itami)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "febbre", + "wordSecond": "熱 (ねつ, netsu)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "raffreddore", + "wordSecond": "風邪 (かぜ, kaze)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tosse", + "wordSecond": "咳 (せき, seki)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "starnuto", + "wordSecond": "くしゃみ (くしゃみ, kushami)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "stanco", + "wordSecond": "疲れた (つかれた, tsukareta)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sano", + "wordSecond": "健康な (けんこうな, kenkou na)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "malato", + "wordSecond": "病気の (びょうきの, byouki no)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dottore", + "wordSecond": "医者 (いしゃ, isha)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "infermiere", + "wordSecond": "看護師 (かんごし, kangoshi)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ospedale", + "wordSecond": "病院 (びょういん, byouin)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "medicina", + "wordSecond": "薬 (くすり, kusuri)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pasticca", + "wordSecond": "錠剤 (じょうざい, jouzai)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sciroppo", + "wordSecond": "シロップ (しろっぷ, shiroppu)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "iniezione", + "wordSecond": "注射 (ちゅうしゃ, chuusha)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ferita", + "wordSecond": "怪我 (けが, kega)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "livido", + "wordSecond": "あざ (あざ, aza)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "taglio", + "wordSecond": "切り傷 (きりきず, kirikizu)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "bruciatura", + "wordSecond": "火傷 (やけど, yakedo)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "prurito", + "wordSecond": "かゆみ (かゆみ, kayumi)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "gonfiore", + "wordSecond": "腫れ (はれ, hare)", + "createdAt": "2026-02-19T14:10:50.396Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_it_ko_A2.json b/output/2026_02_19_body_parts_health_it_ko_A2.json new file mode 100644 index 0000000..caf8dd3 --- /dev/null +++ b/output/2026_02_19_body_parts_health_it_ko_A2.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:11:29.137Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "testa", + "wordSecond": "머리 (meori)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "occhio", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "orecchio", + "wordSecond": "귀 (gwi)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "naso", + "wordSecond": "코 (ko)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bocca", + "wordSecond": "입 (ip)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dente", + "wordSecond": "이 (i)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lingua", + "wordSecond": "혀 (hyeo)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "collo", + "wordSecond": "목 (mok)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "spalla", + "wordSecond": "어깨 (eokkae)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "braccio", + "wordSecond": "팔 (pal)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "gomito", + "wordSecond": "팔꿈치 (palkkumchi)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "polso", + "wordSecond": "손목 (sonmok)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mano", + "wordSecond": "손 (son)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dito", + "wordSecond": "손가락 (songarak)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "petto", + "wordSecond": "가슴 (gaseum)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "schiena", + "wordSecond": "등 (deung)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "stomaco", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "fianco", + "wordSecond": "옆구리 (yeopkkuri)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "anca", + "wordSecond": "엉덩이 (eongdeongi)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "gamba", + "wordSecond": "다리 (dari)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ginocchio", + "wordSecond": "무릎 (mureup)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "caviglia", + "wordSecond": "발목 (balmok)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "piede", + "wordSecond": "발 (bal)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dito del piede", + "wordSecond": "발가락 (balgarak)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pelle", + "wordSecond": "피부 (pibu)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "capello", + "wordSecond": "머리카락 (meorikarak)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "unghia", + "wordSecond": "손톱 (sontop)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "labbro", + "wordSecond": "입술 (ipsul)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sopracciglio", + "wordSecond": "눈썹 (nunsseop)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ciglia", + "wordSecond": "속눈썹 (songnunsseop)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cuore", + "wordSecond": "심장 (simjang)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "polmone", + "wordSecond": "폐 (pye)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "fegato", + "wordSecond": "간 (gan)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "stomaco (organo)", + "wordSecond": "위 (wi)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "intestino", + "wordSecond": "창자 (changja)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cervello", + "wordSecond": "뇌 (noe)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sangue", + "wordSecond": "피 (pi)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "osso", + "wordSecond": "뼈 (ppyeo)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "muscolo", + "wordSecond": "근육 (geunyuk)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dolore", + "wordSecond": "아픔 (apeum)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "febbre", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tosse", + "wordSecond": "기침 (gichim)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "raffreddore", + "wordSecond": "감기 (gamgi)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "influenza", + "wordSecond": "독감 (dokgam)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mal di testa", + "wordSecond": "두통 (dutong)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mal di stomaco", + "wordSecond": "복통 (boktong)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mal di gola", + "wordSecond": "목아픔 (mogapeum)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "stanco", + "wordSecond": "피곤한 (pigonhan)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sano", + "wordSecond": "건강한 (geonganghan)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "malato", + "wordSecond": "아픈 (apeun)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dottore", + "wordSecond": "의사 (uisa)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "infermiere", + "wordSecond": "간호사 (ganhosa)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "medicina", + "wordSecond": "약 (yak)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ospedale", + "wordSecond": "병원 (byeongwon)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "farmacia", + "wordSecond": "약국 (yakguk)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ambulanza", + "wordSecond": "구급차 (gugeupcha)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ferita", + "wordSecond": "상처 (sangcheo)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cicatrice", + "wordSecond": "흉터 (hyungteo)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bruciatura", + "wordSecond": "화상 (hwasang)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "taglio", + "wordSecond": "베인 상처 (bein sangcheo)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "prurito", + "wordSecond": "가려움 (garyeoum)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "gonfiore", + "wordSecond": "부기 (bugi)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nausea", + "wordSecond": "메스꺼움 (meseukkeoum)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "vomito", + "wordSecond": "구토 (guto)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "diarrea", + "wordSecond": "설사 (seolsa)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "costipazione", + "wordSecond": "변비 (byeonbi)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "insonnia", + "wordSecond": "불면증 (bulmyeonjeung)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "stress", + "wordSecond": "스트레스 (seuteureseu)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "allergia", + "wordSecond": "알레르기 (allereugi)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "vaccino", + "wordSecond": "백신 (baeksin)", + "createdAt": "2026-02-19T14:11:29.137Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_it_pl_A2.json b/output/2026_02_19_body_parts_health_it_pl_A2.json new file mode 100644 index 0000000..2eac2e8 --- /dev/null +++ b/output/2026_02_19_body_parts_health_it_pl_A2.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:11:44.854Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "testa", + "wordSecond": "głowa", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "occhio", + "wordSecond": "oko", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "orecchio", + "wordSecond": "ucho", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "naso", + "wordSecond": "nos", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "bocca", + "wordSecond": "usta", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "labbro", + "wordSecond": "warga", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dente", + "wordSecond": "ząb", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lingua", + "wordSecond": "język", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gola", + "wordSecond": "gardło", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "collo", + "wordSecond": "szyja", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "spalla", + "wordSecond": "ramię", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "braccio", + "wordSecond": "ręka", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gomito", + "wordSecond": "łokieć", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "polso", + "wordSecond": "nadgarstek", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mano", + "wordSecond": "dłoń", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dito", + "wordSecond": "palec", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "petto", + "wordSecond": "klatka piersiowa", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "schiena", + "wordSecond": "plecy", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "stomaco", + "wordSecond": "brzuch", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ombelico", + "wordSecond": "pępek", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "anca", + "wordSecond": "biodro", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gamba", + "wordSecond": "noga", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ginocchio", + "wordSecond": "kolano", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "caviglia", + "wordSecond": "kostka", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "piede", + "wordSecond": "stopa", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dito del piede", + "wordSecond": "palec u nogi", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pelle", + "wordSecond": "skóra", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "capelli", + "wordSecond": "włosy", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "unghia", + "wordSecond": "paznokieć", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sopracciglio", + "wordSecond": "brew", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ciglia", + "wordSecond": "rzęsa", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "fronte", + "wordSecond": "czoło", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "guancia", + "wordSecond": "policzek", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mento", + "wordSecond": "broda", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "barba", + "wordSecond": "broda", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "collo", + "wordSecond": "szyja", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gola", + "wordSecond": "gardło", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cuore", + "wordSecond": "serce", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "polmone", + "wordSecond": "płuco", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "fegato", + "wordSecond": "wątroba", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "stomaco", + "wordSecond": "żołądek", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "intestino", + "wordSecond": "jelito", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "rene", + "wordSecond": "nerka", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cervello", + "wordSecond": "mózg", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sangue", + "wordSecond": "krew", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "osso", + "wordSecond": "kość", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "muscolo", + "wordSecond": "mięsień", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "nervo", + "wordSecond": "nerw", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vena", + "wordSecond": "żyła", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "arteria", + "wordSecond": "tętnica", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dolore", + "wordSecond": "ból", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "febbre", + "wordSecond": "gorączka", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "raffreddore", + "wordSecond": "przeziębienie", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tosse", + "wordSecond": "kaszel", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "starnuto", + "wordSecond": "kichnięcie", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "stanco", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sano", + "wordSecond": "zdrowy", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "malato", + "wordSecond": "chory", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "medico", + "wordSecond": "lekarz", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "infermiere", + "wordSecond": "pielęgniarz", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ospedale", + "wordSecond": "szpital", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "farmacia", + "wordSecond": "apteka", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "medicina", + "wordSecond": "lek", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pillola", + "wordSecond": "tabletka", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sciroppo", + "wordSecond": "syrop", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ferita", + "wordSecond": "rana", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "taglio", + "wordSecond": "skaleczenie", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "livido", + "wordSecond": "siniak", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "frattura", + "wordSecond": "złamanie", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "influenza", + "wordSecond": "grypa", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mal di testa", + "wordSecond": "ból głowy", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mal di gola", + "wordSecond": "ból gardła", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mal di stomaco", + "wordSecond": "ból brzucha", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mal di denti", + "wordSecond": "ból zęba", + "createdAt": "2026-02-19T14:11:44.854Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_it_zh_A2.json b/output/2026_02_19_body_parts_health_it_zh_A2.json new file mode 100644 index 0000000..879014c --- /dev/null +++ b/output/2026_02_19_body_parts_health_it_zh_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:11:08.905Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "testa", + "wordSecond": "头 (tou)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "occhio", + "wordSecond": "眼睛 (yanjing)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "orecchio", + "wordSecond": "耳朵 (erduo)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "naso", + "wordSecond": "鼻子 (bizi)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "bocca", + "wordSecond": "嘴 (zui)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dente", + "wordSecond": "牙齿 (yachi)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lingua", + "wordSecond": "舌头 (shetou)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "collo", + "wordSecond": "脖子 (bozi)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "spalla", + "wordSecond": "肩膀 (jianbang)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "braccio", + "wordSecond": "胳膊 (gebo)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "gomito", + "wordSecond": "肘 (zhou)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "polso", + "wordSecond": "手腕 (shouwan)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mano", + "wordSecond": "手 (shou)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dito", + "wordSecond": "手指 (shouzhi)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "petto", + "wordSecond": "胸 (xiong)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "schiena", + "wordSecond": "背 (bei)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "stomaco", + "wordSecond": "胃 (wei)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "addome", + "wordSecond": "腹部 (fubu)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fianco", + "wordSecond": "腰 (yao)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "anca", + "wordSecond": "臀部 (tunbu)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "gamba", + "wordSecond": "腿 (tui)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ginocchio", + "wordSecond": "膝盖 (xigai)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "caviglia", + "wordSecond": "脚踝 (jiaohuai)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "piede", + "wordSecond": "脚 (jiao)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dito del piede", + "wordSecond": "脚趾 (jiaozhi)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pelle", + "wordSecond": "皮肤 (pifu)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "capelli", + "wordSecond": "头发 (toufa)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "unghia", + "wordSecond": "指甲 (zhijia)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cuore", + "wordSecond": "心脏 (xinzang)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "polmone", + "wordSecond": "肺 (fei)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fegato", + "wordSecond": "肝 (gan)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "rene", + "wordSecond": "肾 (shen)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "stomaco", + "wordSecond": "胃 (wei)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "intestino", + "wordSecond": "肠 (chang)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cervello", + "wordSecond": "大脑 (danao)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "osso", + "wordSecond": "骨头 (gutou)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sangue", + "wordSecond": "血 (xue)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "muscolo", + "wordSecond": "肌肉 (jirou)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dolore", + "wordSecond": "疼痛 (tengtong)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "febbre", + "wordSecond": "发烧 (fashao)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tosse", + "wordSecond": "咳嗽 (kesou)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "raffreddore", + "wordSecond": "感冒 (ganmao)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "influenza", + "wordSecond": "流感 (liugan)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mal di testa", + "wordSecond": "头痛 (toutong)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mal di stomaco", + "wordSecond": "胃痛 (weitong)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mal di gola", + "wordSecond": "喉咙痛 (houlongtong)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "stanco", + "wordSecond": "累 (lei)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "malato", + "wordSecond": "生病 (shengbing)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sano", + "wordSecond": "健康 (jiankang)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "debole", + "wordSecond": "虚弱 (xuruo)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "forte", + "wordSecond": "强壮 (qiangzhuang)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "medico", + "wordSecond": "医生 (yisheng)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "infermiere", + "wordSecond": "护士 (hushi)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ospedale", + "wordSecond": "医院 (yiyuan)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "farmacia", + "wordSecond": "药店 (yaodian)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "medicina", + "wordSecond": "药 (yao)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pillola", + "wordSecond": "药片 (yaopian)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sciroppo", + "wordSecond": "糖浆 (tangjiang)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "iniezione", + "wordSecond": "注射 (zhushe)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "operazione", + "wordSecond": "手术 (shoushu)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ferita", + "wordSecond": "伤口 (shangkou)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sanguinamento", + "wordSecond": "流血 (liuxue)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "bruciatura", + "wordSecond": "烧伤 (shaoshang)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "frattura", + "wordSecond": "骨折 (guzhe)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "taglio", + "wordSecond": "割伤 (geshang)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "prurito", + "wordSecond": "痒 (yang)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "gonfiore", + "wordSecond": "肿胀 (zhongzhang)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "infiammazione", + "wordSecond": "发炎 (fayan)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "allergia", + "wordSecond": "过敏 (guomin)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "controllo", + "wordSecond": "检查 (jiancha)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "temperatura", + "wordSecond": "体温 (tiwen)", + "createdAt": "2026-02-19T14:11:08.905Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_ja_ko_A2.json b/output/2026_02_19_body_parts_health_ja_ko_A2.json new file mode 100644 index 0000000..75ad2b7 --- /dev/null +++ b/output/2026_02_19_body_parts_health_ja_ko_A2.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:12:40.942Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "頭 (あたま, atama)", + "wordSecond": "머리 (meori)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "顔 (かお, kao)", + "wordSecond": "얼굴 (eolgul)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "目 (め, me)", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "耳 (みみ, mimi)", + "wordSecond": "귀 (gwi)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鼻 (はな, hana)", + "wordSecond": "코 (ko)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "口 (くち, kuchi)", + "wordSecond": "입 (ip)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "歯 (は, ha)", + "wordSecond": "이 (i)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "首 (くび, kubi)", + "wordSecond": "목 (mok)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "肩 (かた, kata)", + "wordSecond": "어깨 (eokkae)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "腕 (うで, ude)", + "wordSecond": "팔 (pal)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "肘 (ひじ, hiji)", + "wordSecond": "팔꿈치 (palkkumchi)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "手 (て, te)", + "wordSecond": "손 (son)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "指 (ゆび, yubi)", + "wordSecond": "손가락 (songarak)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "胸 (むね, mune)", + "wordSecond": "가슴 (gaseum)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "背中 (せなか, senaka)", + "wordSecond": "등 (deung)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お腹 (おなか, onaka)", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "腰 (こし, koshi)", + "wordSecond": "허리 (heori)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "足 (あし, ashi)", + "wordSecond": "다리 (dari)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "膝 (ひざ, hiza)", + "wordSecond": "무릎 (mureup)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "足首 (あしくび, ashikubi)", + "wordSecond": "발목 (balmok)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "足 (あし, ashi)", + "wordSecond": "발 (bal)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "爪 (つめ, tsume)", + "wordSecond": "손톱 (sontop)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "髪 (かみ, kami)", + "wordSecond": "머리카락 (meorikarak)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "肌 (はだ, hada)", + "wordSecond": "피부 (pibu)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "骨 (ほね, hone)", + "wordSecond": "뼈 (ppyeo)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "筋肉 (きんにく, kinniku)", + "wordSecond": "근육 (geunyuk)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "血 (ち, chi)", + "wordSecond": "피 (pi)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "心臓 (しんぞう, shinzou)", + "wordSecond": "심장 (simjang)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "肺 (はい, hai)", + "wordSecond": "폐 (pye)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "肝臓 (かんぞう, kanzou)", + "wordSecond": "간 (gan)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "胃 (い, i)", + "wordSecond": "위 (wi)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "腸 (ちょう, chou)", + "wordSecond": "장 (jang)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "腎臓 (じんぞう, jinzou)", + "wordSecond": "신장 (sinjang)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "脳 (のう, nou)", + "wordSecond": "뇌 (noe)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "痛み (いたみ, itami)", + "wordSecond": "아픔 (apeum)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "痛い (いたい, itai)", + "wordSecond": "아프다 (apeuda)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "熱 (ねつ, netsu)", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "風邪 (かぜ, kaze)", + "wordSecond": "감기 (gamgi)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "咳 (せき, seki)", + "wordSecond": "기침 (gichim)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鼻水 (はなみず, hanamizu)", + "wordSecond": "콧물 (konmul)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "頭痛 (ずつう, zutsuu)", + "wordSecond": "두통 (dutong)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "腹痛 (ふくつう, fukutsuu)", + "wordSecond": "복통 (boktong)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "疲れ (つかれ, tsukare)", + "wordSecond": "피로 (piro)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "疲れた (つかれた, tsukareta)", + "wordSecond": "피곤하다 (pigonhada)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "健康 (けんこう, kenkou)", + "wordSecond": "건강 (geongang)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "健康な (けんこうな, kenkouna)", + "wordSecond": "건강한 (geonganghan)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "病気 (びょうき, byouki)", + "wordSecond": "병 (byeong)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "病気の (びょうきの, byoukino)", + "wordSecond": "아픈 (apeun)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "医者 (いしゃ, isha)", + "wordSecond": "의사 (uisa)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "看護師 (かんごし, kangoshi)", + "wordSecond": "간호사 (ganhosa)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "病院 (びょういん, byouin)", + "wordSecond": "병원 (byeongwon)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "薬 (くすり, kusuri)", + "wordSecond": "약 (yak)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "注射 (ちゅうしゃ, chuusha)", + "wordSecond": "주사 (jusa)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "手術 (しゅじゅつ, shujutsu)", + "wordSecond": "수술 (susul)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "怪我 (けが, kega)", + "wordSecond": "부상 (busang)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "傷 (きず, kizu)", + "wordSecond": "상처 (sangcheo)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "血圧 (けつあつ, ketsuatsu)", + "wordSecond": "혈압 (hyeorap)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "体温 (たいおん, taion)", + "wordSecond": "체온 (cheon)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "脈 (みゃく, myaku)", + "wordSecond": "맥박 (maekbak)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "呼吸 (こきゅう, kokyuu)", + "wordSecond": "호흡 (hoheup)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "汗 (あせ, ase)", + "wordSecond": "땀 (ttam)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "涙 (なみだ, namida)", + "wordSecond": "눈물 (nunmul)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "笑顔 (えがお, egao)", + "wordSecond": "미소 (miso)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "声 (こえ, koe)", + "wordSecond": "목소리 (moksori)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "手首 (てくび, tekubi)", + "wordSecond": "손목 (sonmok)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "足の指 (あしのゆび, ashinoyubi)", + "wordSecond": "발가락 (balgarak)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "舌 (した, shita)", + "wordSecond": "혀 (hyeo)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "喉 (のど, nodo)", + "wordSecond": "목구멍 (mokgumeong)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "唇 (くちびる, kuchibiru)", + "wordSecond": "입술 (ipsul)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "頬 (ほお, hoo)", + "wordSecond": "뺨 (ppyam)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "眉毛 (まゆげ, mayuge)", + "wordSecond": "눈썹 (nunsseop)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "まつ毛 (まつげ, matsuge)", + "wordSecond": "속눈썹 (songnunsseop)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "爪先 (つまさき, tsumasaki)", + "wordSecond": "발끝 (balkkeut)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "かかと (かかと, kakato)", + "wordSecond": "발뒤꿈치 (baldwikkumchi)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "手のひら (てのひら, tenohira)", + "wordSecond": "손바닥 (sonbadak)", + "createdAt": "2026-02-19T14:12:40.942Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_ja_pl_A2.json b/output/2026_02_19_body_parts_health_ja_pl_A2.json new file mode 100644 index 0000000..163a40b --- /dev/null +++ b/output/2026_02_19_body_parts_health_ja_pl_A2.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:13:04.299Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "頭 (あたま, atama)", + "wordSecond": "głowa", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "髪 (かみ, kami)", + "wordSecond": "włosy", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "顔 (かお, kao)", + "wordSecond": "twarz", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "額 (ひたい, hitai)", + "wordSecond": "czoło", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "眉 (まゆ, mayu)", + "wordSecond": "brew", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "目 (め, me)", + "wordSecond": "oko", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "耳 (みみ, mimi)", + "wordSecond": "ucho", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "鼻 (はな, hana)", + "wordSecond": "nos", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "頬 (ほお, hoo)", + "wordSecond": "policzek", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "口 (くち, kuchi)", + "wordSecond": "usta", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "唇 (くちびる, kuchibiru)", + "wordSecond": "warga", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "歯 (は, ha)", + "wordSecond": "ząb", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "舌 (した, shita)", + "wordSecond": "język", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "顎 (あご, ago)", + "wordSecond": "szczęka", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "首 (くび, kubi)", + "wordSecond": "szyja", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "肩 (かた, kata)", + "wordSecond": "ramię", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "腕 (うで, ude)", + "wordSecond": "ręka (ramię do dłoni)", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "肘 (ひじ, hiji)", + "wordSecond": "łokieć", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "手首 (てくび, tekubi)", + "wordSecond": "nadgarstek", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "手 (て, te)", + "wordSecond": "dłoń", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "指 (ゆび, yubi)", + "wordSecond": "palec", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "親指 (おやゆび, oyayubi)", + "wordSecond": "kciuk", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "爪 (つめ, tsume)", + "wordSecond": "paznokieć", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "胸 (むね, mune)", + "wordSecond": "klatka piersiowa", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "背中 (せなか, senaka)", + "wordSecond": "plecy", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "腹 (はら, hara)", + "wordSecond": "brzuch", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "腰 (こし, koshi)", + "wordSecond": "biodro / talia", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "お尻 (おしり, oshiri)", + "wordSecond": "pośladki", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "脚 (あし, ashi)", + "wordSecond": "noga", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "太もも (ふともも, futomomo)", + "wordSecond": "udo", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "膝 (ひざ, hiza)", + "wordSecond": "kolano", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "足首 (あしくび, ashikubi)", + "wordSecond": "kostka", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "足 (あし, ashi)", + "wordSecond": "stopa", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "踵 (かかと, kakato)", + "wordSecond": "pięta", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "つま先 (つまさき, tsumasaki)", + "wordSecond": "palec u nogi", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "肌 (はだ, hada)", + "wordSecond": "skóra", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "骨 (ほね, hone)", + "wordSecond": "kość", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "筋肉 (きんにく, kinniku)", + "wordSecond": "mięsień", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "血 (ち, chi)", + "wordSecond": "krew", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "心臓 (しんぞう, shinzou)", + "wordSecond": "serce", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "肺 (はい, hai)", + "wordSecond": "płuco", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "肝臓 (かんぞう, kanzou)", + "wordSecond": "wątroba", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "胃 (い, i)", + "wordSecond": "żołądek", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "腸 (ちょう, chou)", + "wordSecond": "jelito", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "脳 (のう, nou)", + "wordSecond": "mózg", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "痛み (いたみ, itami)", + "wordSecond": "ból", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "熱 (ねつ, netsu)", + "wordSecond": "gorączka", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "風邪 (かぜ, kaze)", + "wordSecond": "przeziębienie", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "咳 (せき, seki)", + "wordSecond": "kaszel", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "頭痛 (ずつう, zutsuu)", + "wordSecond": "ból głowy", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "腹痛 (ふくつう, fukutsuu)", + "wordSecond": "ból brzucha", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "喉の痛み (のどのいたみ, nodo no itami)", + "wordSecond": "ból gardła", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "疲れ (つかれ, tsukare)", + "wordSecond": "zmęczenie", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "疲れた (つかれた, tsukareta)", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "元気 (げんき, genki)", + "wordSecond": "zdrowy / pełen energii", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "健康 (けんこう, kenkou)", + "wordSecond": "zdrowie", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "病気 (びょうき, byouki)", + "wordSecond": "choroba", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "具合が悪い (ぐあいがわるい, guai ga warui)", + "wordSecond": "chory / złe samopoczucie", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "医者 (いしゃ, isha)", + "wordSecond": "lekarz", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "病院 (びょういん, byouin)", + "wordSecond": "szpital", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "薬 (くすり, kusuri)", + "wordSecond": "lekarstwo", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "薬局 (やっきょく, yakkyoku)", + "wordSecond": "apteka", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "注射 (ちゅうしゃ, chuusha)", + "wordSecond": "zastrzyk", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "包帯 (ほうたい, houtai)", + "wordSecond": "bandaż", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "絆創膏 (ばんそうこう, bansoukou)", + "wordSecond": "plaster", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "体温計 (たいおんけい, taionkei)", + "wordSecond": "termometr", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "診察 (しんさつ, shinsatsu)", + "wordSecond": "badanie lekarskie", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "休む (やすむ, yasumu)", + "wordSecond": "odpoczywać", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "寝る (ねる, neru)", + "wordSecond": "spać", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "運動 (うんどう, undou)", + "wordSecond": "ćwiczenia", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "食べ物 (たべもの, tabemono)", + "wordSecond": "jedzenie", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "水 (みず, mizu)", + "wordSecond": "woda", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "空気 (くうき, kuuki)", + "wordSecond": "powietrze", + "createdAt": "2026-02-19T14:13:04.299Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_ja_zh_A2.json b/output/2026_02_19_body_parts_health_ja_zh_A2.json new file mode 100644 index 0000000..445b551 --- /dev/null +++ b/output/2026_02_19_body_parts_health_ja_zh_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:12:12.385Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "頭 (あたま, atama)", + "wordSecond": "头 (tóu)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "髪 (かみ, kami)", + "wordSecond": "头发 (tóufa)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "顔 (かお, kao)", + "wordSecond": "脸 (liǎn)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "目 (め, me)", + "wordSecond": "眼睛 (yǎnjīng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "耳 (みみ, mimi)", + "wordSecond": "耳朵 (ěrduo)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "鼻 (はな, hana)", + "wordSecond": "鼻子 (bízi)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "口 (くち, kuchi)", + "wordSecond": "嘴 (zuǐ)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "歯 (は, ha)", + "wordSecond": "牙齿 (yáchǐ)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "舌 (した, shita)", + "wordSecond": "舌头 (shétou)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "首 (くび, kubi)", + "wordSecond": "脖子 (bózi)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "肩 (かた, kata)", + "wordSecond": "肩膀 (jiānbǎng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "腕 (うで, ude)", + "wordSecond": "胳膊 (gēbo)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "肘 (ひじ, hiji)", + "wordSecond": "肘 (zhǒu)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "手 (て, te)", + "wordSecond": "手 (shǒu)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "指 (ゆび, yubi)", + "wordSecond": "手指 (shǒuzhǐ)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "胸 (むね, mune)", + "wordSecond": "胸 (xiōng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "背中 (せなか, senaka)", + "wordSecond": "背 (bèi)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お腹 (おなか, onaka)", + "wordSecond": "肚子 (dùzi)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "腰 (こし, koshi)", + "wordSecond": "腰 (yāo)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お尻 (おしり, oshiri)", + "wordSecond": "屁股 (pìgu)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "脚 (あし, ashi)", + "wordSecond": "腿 (tuǐ)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "膝 (ひざ, hiza)", + "wordSecond": "膝盖 (xīgài)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "足 (あし, ashi)", + "wordSecond": "脚 (jiǎo)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "かかと (かかと, kakato)", + "wordSecond": "脚后跟 (jiǎohòugēn)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "爪 (つめ, tsume)", + "wordSecond": "指甲 (zhǐjia)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "肌 (はだ, hada)", + "wordSecond": "皮肤 (pífū)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "骨 (ほね, hone)", + "wordSecond": "骨头 (gǔtou)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "筋肉 (きんにく, kinniku)", + "wordSecond": "肌肉 (jīròu)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "血 (ち, chi)", + "wordSecond": "血 (xuè)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "心臓 (しんぞう, shinzou)", + "wordSecond": "心脏 (xīnzàng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "肺 (はい, hai)", + "wordSecond": "肺 (fèi)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "肝臓 (かんぞう, kanzou)", + "wordSecond": "肝脏 (gānzàng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "胃 (い, i)", + "wordSecond": "胃 (wèi)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "腸 (ちょう, chou)", + "wordSecond": "肠 (cháng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "腎臓 (じんぞう, jinzou)", + "wordSecond": "肾脏 (shènzàng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "脳 (のう, nou)", + "wordSecond": "脑 (nǎo)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "痛み (いたみ, itami)", + "wordSecond": "痛 (tòng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "頭痛 (ずつう, zutsuu)", + "wordSecond": "头痛 (tóutòng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "腹痛 (ふくつう, fukutsuu)", + "wordSecond": "肚子痛 (dùzitòng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "歯痛 (しつう, shitsuu)", + "wordSecond": "牙痛 (yátòng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "熱 (ねつ, netsu)", + "wordSecond": "发烧 (fāshāo)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "風邪 (かぜ, kaze)", + "wordSecond": "感冒 (gǎnmào)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "咳 (せき, seki)", + "wordSecond": "咳嗽 (késòu)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "くしゃみ (くしゃみ, kushami)", + "wordSecond": "喷嚏 (pēntì)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "鼻水 (はなみず, hanamizu)", + "wordSecond": "流鼻涕 (liú bítì)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "疲れ (つかれ, tsukare)", + "wordSecond": "累 (lèi)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "眠い (ねむい, nemui)", + "wordSecond": "困 (kùn)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "健康 (けんこう, kenkou)", + "wordSecond": "健康 (jiànkāng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "病気 (びょうき, byouki)", + "wordSecond": "生病 (shēngbìng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "具合が悪い (ぐあいがわるい, guaiga warui)", + "wordSecond": "不舒服 (bù shūfu)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "吐き気 (はきけ, hakike)", + "wordSecond": "恶心 (ěxin)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "下痢 (げり, geri)", + "wordSecond": "腹泻 (fùxiè)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "怪我 (けが, kega)", + "wordSecond": "受伤 (shòushāng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "傷 (きず, kizu)", + "wordSecond": "伤口 (shāngkǒu)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "腫れ (はれ, hare)", + "wordSecond": "肿 (zhǒng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "痒み (かゆみ, kayumi)", + "wordSecond": "痒 (yǎng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "医者 (いしゃ, isha)", + "wordSecond": "医生 (yīshēng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "病院 (びょういん, byouin)", + "wordSecond": "医院 (yīyuàn)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "薬 (くすり, kusuri)", + "wordSecond": "药 (yào)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "注射 (ちゅうしゃ, chuusha)", + "wordSecond": "打针 (dǎzhēn)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "手術 (しゅじゅつ, shujutsu)", + "wordSecond": "手术 (shǒushù)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "検査 (けんさ, kensa)", + "wordSecond": "检查 (jiǎnchá)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "診察 (しんさつ, shinsatsu)", + "wordSecond": "看病 (kànbìng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "体温 (たいおん, taion)", + "wordSecond": "体温 (tǐwēn)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "血圧 (けつあつ, ketsuatsu)", + "wordSecond": "血压 (xuèyā)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "脈 (みゃく, myaku)", + "wordSecond": "脉搏 (màibó)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "呼吸 (こきゅう, kokyuu)", + "wordSecond": "呼吸 (hūxī)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "栄養 (えいよう, eiyou)", + "wordSecond": "营养 (yíngyǎng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "運動 (うんどう, undou)", + "wordSecond": "运动 (yùndòng)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "休息 (きゅうそく, kyuusoku)", + "wordSecond": "休息 (xiūxi)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "睡眠 (すいみん, suimin)", + "wordSecond": "睡眠 (shuìmián)", + "createdAt": "2026-02-19T14:12:12.385Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_ko_pl_A2.json b/output/2026_02_19_body_parts_health_ko_pl_A2.json new file mode 100644 index 0000000..a309216 --- /dev/null +++ b/output/2026_02_19_body_parts_health_ko_pl_A2.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:14:04.986Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "머리 (meori)", + "wordSecond": "głowa", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "얼굴 (eolgul)", + "wordSecond": "twarz", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "눈 (nun)", + "wordSecond": "oko", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "코 (ko)", + "wordSecond": "nos", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "입 (ip)", + "wordSecond": "usta", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "귀 (gwi)", + "wordSecond": "ucho", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "목 (mok)", + "wordSecond": "szyja", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "어깨 (eokkae)", + "wordSecond": "ramię", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "팔 (pal)", + "wordSecond": "ręka", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "손 (son)", + "wordSecond": "dłoń", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "손가락 (songarak)", + "wordSecond": "palec", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "가슴 (gaseum)", + "wordSecond": "klatka piersiowa", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "등 (deung)", + "wordSecond": "plecy", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "배 (bae)", + "wordSecond": "brzuch", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "허리 (heori)", + "wordSecond": "talia", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "엉덩이 (eongdeongi)", + "wordSecond": "pośladki", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "다리 (dari)", + "wordSecond": "noga", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "무릎 (mureup)", + "wordSecond": "kolano", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "발 (bal)", + "wordSecond": "stopa", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "발가락 (balgarak)", + "wordSecond": "palec u nogi", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "이마 (ima)", + "wordSecond": "czoło", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "턱 (teok)", + "wordSecond": "broda", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "볼 (bol)", + "wordSecond": "policzek", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "입술 (ipsul)", + "wordSecond": "warga", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "이 (i)", + "wordSecond": "ząb", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "혀 (hyeo)", + "wordSecond": "język", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "머리카락 (meorikarak)", + "wordSecond": "włosy", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "눈썹 (nunsseop)", + "wordSecond": "brew", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "속눈썹 (songnunsseop)", + "wordSecond": "rzęsa", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "손톱 (sontop)", + "wordSecond": "paznokieć", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "발톱 (baltop)", + "wordSecond": "paznokieć u nogi", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "심장 (simjang)", + "wordSecond": "serce", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "폐 (pye)", + "wordSecond": "płuco", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "간 (gan)", + "wordSecond": "wątroba", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "위 (wi)", + "wordSecond": "żołądek", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "뇌 (noe)", + "wordSecond": "mózg", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "피 (pi)", + "wordSecond": "krew", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "뼈 (ppyeo)", + "wordSecond": "kość", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "근육 (geunyuk)", + "wordSecond": "mięsień", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "피부 (pibu)", + "wordSecond": "skóra", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "통증 (tongjeung)", + "wordSecond": "ból", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "두통 (dutong)", + "wordSecond": "ból głowy", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "배탈 (baetal)", + "wordSecond": "ból brzucha", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "열 (yeol)", + "wordSecond": "gorączka", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "감기 (gamgi)", + "wordSecond": "przeziębienie", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "기침 (gichim)", + "wordSecond": "kaszel", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "재채기 (jaechaegi)", + "wordSecond": "kichanie", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "목아픔 (mogapeum)", + "wordSecond": "ból gardła", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "피로 (piro)", + "wordSecond": "zmęczenie", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "건강 (geongang)", + "wordSecond": "zdrowie", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "건강한 (geonganghan)", + "wordSecond": "zdrowy", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "아픈 (apeun)", + "wordSecond": "chory", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "의사 (uisa)", + "wordSecond": "lekarz", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "약 (yak)", + "wordSecond": "lek", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "병원 (byeongwon)", + "wordSecond": "szpital", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "치과 (chigwa)", + "wordSecond": "dentysta", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "간호사 (ganhosa)", + "wordSecond": "pielęgniarka", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "상처 (sangcheo)", + "wordSecond": "rana", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "붕대 (bungdae)", + "wordSecond": "bandaż", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "주사 (jusa)", + "wordSecond": "zastrzyk", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "수술 (susul)", + "wordSecond": "operacja", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "휴식 (hyusik)", + "wordSecond": "odpoczynek", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "수면 (sumyeon)", + "wordSecond": "sen", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "운동 (undong)", + "wordSecond": "ćwiczenie", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "식사 (siksa)", + "wordSecond": "posiłek", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "물 (mul)", + "wordSecond": "woda", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "공기 (gonggi)", + "wordSecond": "powietrze", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "햇빛 (haetbit)", + "wordSecond": "słońce", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "청결 (cheonggyeol)", + "wordSecond": "czystość", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "위생 (wisaeng)", + "wordSecond": "higiena", + "createdAt": "2026-02-19T14:14:04.986Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_pt_de_A2.json b/output/2026_02_19_body_parts_health_pt_de_A2.json new file mode 100644 index 0000000..8501cdd --- /dev/null +++ b/output/2026_02_19_body_parts_health_pt_de_A2.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:05:25.082Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cabeça", + "wordSecond": "Kopf", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "olho", + "wordSecond": "Auge", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "orelha", + "wordSecond": "Ohr", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nariz", + "wordSecond": "Nase", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "boca", + "wordSecond": "Mund", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lábio", + "wordSecond": "Lippe", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dente", + "wordSecond": "Zahn", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "língua", + "wordSecond": "Zunge", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "queixo", + "wordSecond": "Kinn", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pescoço", + "wordSecond": "Hals", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ombro", + "wordSecond": "Schulter", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "braço", + "wordSecond": "Arm", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cotovelo", + "wordSecond": "Ellbogen", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pulso", + "wordSecond": "Handgelenk", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mão", + "wordSecond": "Hand", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dedo", + "wordSecond": "Finger", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "unha", + "wordSecond": "Fingernagel", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "peito", + "wordSecond": "Brust", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "costas", + "wordSecond": "Rücken", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "barriga", + "wordSecond": "Bauch", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cintura", + "wordSecond": "Taille", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quadril", + "wordSecond": "Hüfte", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nádega", + "wordSecond": "Gesäß", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "perna", + "wordSecond": "Bein", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "joelho", + "wordSecond": "Knie", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "canela", + "wordSecond": "Schienbein", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tornozelo", + "wordSecond": "Knöchel", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pé", + "wordSecond": "Fuß", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dedo do pé", + "wordSecond": "Zehe", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "unha do pé", + "wordSecond": "Zehennagel", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pele", + "wordSecond": "Haut", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cabelo", + "wordSecond": "Haar", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sobrancelha", + "wordSecond": "Augenbraue", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cílio", + "wordSecond": "Wimper", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "bochecha", + "wordSecond": "Wange", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "testa", + "wordSecond": "Stirn", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "garganta", + "wordSecond": "Kehle", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "coração", + "wordSecond": "Herz", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pulmão", + "wordSecond": "Lunge", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fígado", + "wordSecond": "Leber", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "estômago", + "wordSecond": "Magen", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "rim", + "wordSecond": "Niere", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cérebro", + "wordSecond": "Gehirn", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "osso", + "wordSecond": "Knochen", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sangue", + "wordSecond": "Blut", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "músculo", + "wordSecond": "Muskel", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dor", + "wordSecond": "Schmerz", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "febre", + "wordSecond": "Fieber", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "resfriado", + "wordSecond": "Erkältung", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tosse", + "wordSecond": "Husten", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "espirro", + "wordSecond": "Niesen", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fadiga", + "wordSecond": "Müdigkeit", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "saudável", + "wordSecond": "gesund", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "doente", + "wordSecond": "krank", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "médico", + "wordSecond": "Arzt", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "médica", + "wordSecond": "Ärztin", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "enfermeiro", + "wordSecond": "Krankenpfleger", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "enfermeira", + "wordSecond": "Krankenschwester", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "hospital", + "wordSecond": "Krankenhaus", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "remédio", + "wordSecond": "Medizin", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "comprimido", + "wordSecond": "Tablette", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "xarope", + "wordSecond": "Saft", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "curativo", + "wordSecond": "Verband", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ferida", + "wordSecond": "Wunde", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fratura", + "wordSecond": "Bruch", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "inchaço", + "wordSecond": "Schwellung", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "coceira", + "wordSecond": "Juckreiz", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vômito", + "wordSecond": "Erbrechen", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "diarreia", + "wordSecond": "Durchfall", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "alergia", + "wordSecond": "Allergie", + "createdAt": "2026-02-19T14:05:25.082Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_pt_fr_A2.json b/output/2026_02_19_body_parts_health_pt_fr_A2.json new file mode 100644 index 0000000..8dac962 --- /dev/null +++ b/output/2026_02_19_body_parts_health_pt_fr_A2.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:05:39.278Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cabeça", + "wordSecond": "tête", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "braço", + "wordSecond": "bras", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "perna", + "wordSecond": "jambe", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mão", + "wordSecond": "main", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pé", + "wordSecond": "pied", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dedo", + "wordSecond": "doigt", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "olho", + "wordSecond": "œil", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "orelha", + "wordSecond": "oreille", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "nariz", + "wordSecond": "nez", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "boca", + "wordSecond": "bouche", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lábio", + "wordSecond": "lèvre", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dente", + "wordSecond": "dent", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "língua", + "wordSecond": "langue", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cabelo", + "wordSecond": "cheveux", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "rosto", + "wordSecond": "visage", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "testa", + "wordSecond": "front", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "queixo", + "wordSecond": "menton", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pescoço", + "wordSecond": "cou", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ombro", + "wordSecond": "épaule", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cotovelo", + "wordSecond": "coude", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pulso", + "wordSecond": "poignet", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "costas", + "wordSecond": "dos", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "peito", + "wordSecond": "poitrine", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "barriga", + "wordSecond": "ventre", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cintura", + "wordSecond": "taille", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quadril", + "wordSecond": "hanche", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "nádega", + "wordSecond": "fesse", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "coxa", + "wordSecond": "cuisse", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "joelho", + "wordSecond": "genou", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tornozelo", + "wordSecond": "cheville", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "calcanhar", + "wordSecond": "talon", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pele", + "wordSecond": "peau", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "unha", + "wordSecond": "ongle", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "coração", + "wordSecond": "cœur", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pulmão", + "wordSecond": "poumon", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fígado", + "wordSecond": "foie", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estômago", + "wordSecond": "estomac", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "intestino", + "wordSecond": "intestin", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "rim", + "wordSecond": "rein", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cérebro", + "wordSecond": "cerveau", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sangue", + "wordSecond": "sang", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "osso", + "wordSecond": "os", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "músculo", + "wordSecond": "muscle", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dor", + "wordSecond": "douleur", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "febre", + "wordSecond": "fièvre", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "resfriado", + "wordSecond": "rhume", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tosse", + "wordSecond": "toux", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "gripe", + "wordSecond": "grippe", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ferida", + "wordSecond": "blessure", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "corte", + "wordSecond": "coupure", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sangramento", + "wordSecond": "saignement", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fadiga", + "wordSecond": "fatigue", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cansado", + "wordSecond": "fatigué", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "saudável", + "wordSecond": "en bonne santé", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "doente", + "wordSecond": "malade", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "médico", + "wordSecond": "médecin", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "enfermeira", + "wordSecond": "infirmière", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "hospital", + "wordSecond": "hôpital", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "clínica", + "wordSecond": "clinique", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "farmácia", + "wordSecond": "pharmacie", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "remédio", + "wordSecond": "médicament", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "comprimido", + "wordSecond": "comprimé", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "xarope", + "wordSecond": "sirop", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "curativo", + "wordSecond": "pansement", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "injeção", + "wordSecond": "piqûre", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "consulta", + "wordSecond": "consultation", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "exame", + "wordSecond": "examen", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "operar", + "wordSecond": "opérer", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "recuperar", + "wordSecond": "récupérer", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "descansar", + "wordSecond": "se reposer", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dormir", + "wordSecond": "dormir", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "comer", + "wordSecond": "manger", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "beber", + "wordSecond": "boire", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "exercício", + "wordSecond": "exercice", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "saúde", + "wordSecond": "santé", + "createdAt": "2026-02-19T14:05:39.278Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_pt_it_A2.json b/output/2026_02_19_body_parts_health_pt_it_A2.json new file mode 100644 index 0000000..2451591 --- /dev/null +++ b/output/2026_02_19_body_parts_health_pt_it_A2.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:05:54.419Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cabeça", + "wordSecond": "testa", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "olho", + "wordSecond": "occhio", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "orelha", + "wordSecond": "orecchio", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nariz", + "wordSecond": "naso", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "boca", + "wordSecond": "bocca", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lábio", + "wordSecond": "labbro", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "língua", + "wordSecond": "lingua", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dente", + "wordSecond": "dente", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pescoço", + "wordSecond": "collo", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ombro", + "wordSecond": "spalla", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "braço", + "wordSecond": "braccio", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cotovelo", + "wordSecond": "gomito", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pulso", + "wordSecond": "polso", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mão", + "wordSecond": "mano", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dedo", + "wordSecond": "dito", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "peito", + "wordSecond": "petto", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "costas", + "wordSecond": "schiena", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "barriga", + "wordSecond": "pancia", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cintura", + "wordSecond": "vita", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quadril", + "wordSecond": "fianchi", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nádega", + "wordSecond": "gluteo", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "perna", + "wordSecond": "gamba", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "joelho", + "wordSecond": "ginocchio", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tornozelo", + "wordSecond": "caviglia", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pé", + "wordSecond": "piede", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dedo do pé", + "wordSecond": "dito del piede", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pele", + "wordSecond": "pelle", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cabelo", + "wordSecond": "capelli", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "rosto", + "wordSecond": "viso", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sobrancelha", + "wordSecond": "sopracciglio", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cílio", + "wordSecond": "ciglio", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "queixo", + "wordSecond": "mento", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bochecha", + "wordSecond": "guancia", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "testa", + "wordSecond": "fronte", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "garganta", + "wordSecond": "gola", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ombro", + "wordSecond": "spalla", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cotovelo", + "wordSecond": "gomito", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pulso", + "wordSecond": "polso", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dedo", + "wordSecond": "dito", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "unha", + "wordSecond": "unghia", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "coração", + "wordSecond": "cuore", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pulmão", + "wordSecond": "polmone", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fígado", + "wordSecond": "fegato", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estômago", + "wordSecond": "stomaco", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "intestino", + "wordSecond": "intestino", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "rim", + "wordSecond": "rene", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cérebro", + "wordSecond": "cervello", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sangue", + "wordSecond": "sangue", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "osso", + "wordSecond": "osso", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "músculo", + "wordSecond": "muscolo", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dor", + "wordSecond": "dolore", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "febre", + "wordSecond": "febbre", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "resfriado", + "wordSecond": "raffreddore", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tosse", + "wordSecond": "tosse", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "espirro", + "wordSecond": "starnuto", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cansaço", + "wordSecond": "stanchezza", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "saudável", + "wordSecond": "sano", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "doente", + "wordSecond": "malato", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "médico", + "wordSecond": "medico", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "enfermeira", + "wordSecond": "infermiera", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "hospital", + "wordSecond": "ospedale", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "remédio", + "wordSecond": "medicina", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "comprimido", + "wordSecond": "compressa", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "xarope", + "wordSecond": "sciroppo", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vacina", + "wordSecond": "vaccino", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "curativo", + "wordSecond": "cerotto", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "injeção", + "wordSecond": "iniezione", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "consulta", + "wordSecond": "visita", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "exame", + "wordSecond": "esame", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sintoma", + "wordSecond": "sintomo", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "alergia", + "wordSecond": "allergia", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ferida", + "wordSecond": "ferita", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cicatriz", + "wordSecond": "cicatrice", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fratura", + "wordSecond": "frattura", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gesso", + "wordSecond": "gesso", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "muleta", + "wordSecond": "stampella", + "createdAt": "2026-02-19T14:05:54.419Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_pt_ja_A2.json b/output/2026_02_19_body_parts_health_pt_ja_A2.json new file mode 100644 index 0000000..3a1d9c2 --- /dev/null +++ b/output/2026_02_19_body_parts_health_pt_ja_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:06:16.872Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cabeça", + "wordSecond": "頭 (あたま, atama)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "braço", + "wordSecond": "腕 (うで, ude)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "perna", + "wordSecond": "足 (あし, ashi)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "mão", + "wordSecond": "手 (て, te)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pé", + "wordSecond": "足 (あし, ashi)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dedo", + "wordSecond": "指 (ゆび, yubi)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "olho", + "wordSecond": "目 (め, me)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "orelha", + "wordSecond": "耳 (みみ, mimi)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "nariz", + "wordSecond": "鼻 (はな, hana)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "boca", + "wordSecond": "口 (くち, kuchi)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dente", + "wordSecond": "歯 (は, ha)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "língua", + "wordSecond": "舌 (した, shita)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cabelo", + "wordSecond": "髪 (かみ, kami)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "rosto", + "wordSecond": "顔 (かお, kao)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pescoço", + "wordSecond": "首 (くび, kubi)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ombro", + "wordSecond": "肩 (かた, kata)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "costas", + "wordSecond": "背中 (せなか, senaka)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "peito", + "wordSecond": "胸 (むね, mune)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "barriga", + "wordSecond": "お腹 (おなか, onaka)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "joelho", + "wordSecond": "膝 (ひざ, hiza)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tornozelo", + "wordSecond": "足首 (あしくび, ashikubi)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cotovelo", + "wordSecond": "肘 (ひじ, hiji)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pulso", + "wordSecond": "手首 (てくび, tekubi)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "unha", + "wordSecond": "爪 (つめ, tsume)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pele", + "wordSecond": "皮膚 (ひふ, hifu)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "coração", + "wordSecond": "心臓 (しんぞう, shinzou)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pulmão", + "wordSecond": "肺 (はい, hai)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "fígado", + "wordSecond": "肝臓 (かんぞう, kanzou)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "estômago", + "wordSecond": "胃 (い, i)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "intestino", + "wordSecond": "腸 (ちょう, chou)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "rim", + "wordSecond": "腎臓 (じんぞう, jinzou)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cérebro", + "wordSecond": "脳 (のう, nou)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sangue", + "wordSecond": "血 (ち, chi)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "osso", + "wordSecond": "骨 (ほね, hone)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "músculo", + "wordSecond": "筋肉 (きんにく, kinniku)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dor", + "wordSecond": "痛み (いたみ, itami)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "febre", + "wordSecond": "熱 (ねつ, netsu)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "resfriado", + "wordSecond": "風邪 (かぜ, kaze)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cansado", + "wordSecond": "疲れた (つかれた, tsukareta)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "saudável", + "wordSecond": "健康 (けんこう, kenkou)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "doente", + "wordSecond": "病気 (びょうき, byouki)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "médico", + "wordSecond": "医者 (いしゃ, isha)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "medicamento", + "wordSecond": "薬 (くすり, kusuri)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "hospital", + "wordSecond": "病院 (びょういん, byouin)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "enfermeira", + "wordSecond": "看護師 (かんごし, kangoshi)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ferida", + "wordSecond": "怪我 (けが, kega)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tosse", + "wordSecond": "咳 (せき, seki)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "espirro", + "wordSecond": "くしゃみ (kushami)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "garganta", + "wordSecond": "喉 (のど, nodo)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "vômito", + "wordSecond": "吐き気 (はきけ, hakike)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "diarreia", + "wordSecond": "下痢 (げり, geri)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "alergia", + "wordSecond": "アレルギー (arerugii)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "fratura", + "wordSecond": "骨折 (こっせつ, kossetsu)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cirurgia", + "wordSecond": "手術 (しゅじゅつ, shujutsu)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "injeção", + "wordSecond": "注射 (ちゅうしゃ, chuusha)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "curativo", + "wordSecond": "絆創膏 (ばんそうこう, bansoukou)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pressão arterial", + "wordSecond": "血圧 (けつあつ, ketsuatsu)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "temperatura", + "wordSecond": "体温 (たいおん, taion)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pulso", + "wordSecond": "脈 (みゃく, myaku)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "respiração", + "wordSecond": "呼吸 (こきゅう, kokyuu)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dieta", + "wordSecond": "食事 (しょくじ, shokuji)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "exercício", + "wordSecond": "運動 (うんどう, undou)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sono", + "wordSecond": "睡眠 (すいみん, suimin)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "estresse", + "wordSecond": "ストレス (sutoresu)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "vacina", + "wordSecond": "ワクチン (wakuchin)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "consulta", + "wordSecond": "診察 (しんさつ, shinsatsu)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "receita", + "wordSecond": "処方箋 (しょほうせん, shohousen)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ambulância", + "wordSecond": "救急車 (きゅうきゅうしゃ, kyuukyuusha)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "clínica", + "wordSecond": "診療所 (しんりょうじょ, shinryoujo)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "laboratório", + "wordSecond": "検査室 (けんさしつ, kensashitsu)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "raio-X", + "wordSecond": "レントゲン (rentogen)", + "createdAt": "2026-02-19T14:06:16.872Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_pt_ko_A2.json b/output/2026_02_19_body_parts_health_pt_ko_A2.json new file mode 100644 index 0000000..02a6142 --- /dev/null +++ b/output/2026_02_19_body_parts_health_pt_ko_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:06:55.942Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cabeça", + "wordSecond": "머리 (meori)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "olho", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "orelha", + "wordSecond": "귀 (gwi)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "nariz", + "wordSecond": "코 (ko)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "boca", + "wordSecond": "입 (ip)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "rosto", + "wordSecond": "얼굴 (eolgul)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pescoço", + "wordSecond": "목 (mok)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ombro", + "wordSecond": "어깨 (eokkae)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "braço", + "wordSecond": "팔 (pal)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cotovelo", + "wordSecond": "팔꿈치 (palkkumchi)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pulso", + "wordSecond": "손목 (sonmok)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "mão", + "wordSecond": "손 (son)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dedo", + "wordSecond": "손가락 (songarak)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "peito", + "wordSecond": "가슴 (gaseum)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "costas", + "wordSecond": "등 (deung)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "barriga", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cintura", + "wordSecond": "허리 (heori)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "quadril", + "wordSecond": "엉덩이 (eongdeongi)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "perna", + "wordSecond": "다리 (dari)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "joelho", + "wordSecond": "무릎 (mureup)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tornozelo", + "wordSecond": "발목 (balmok)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pé", + "wordSecond": "발 (bal)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dedo do pé", + "wordSecond": "발가락 (balgarak)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cabelo", + "wordSecond": "머리카락 (meorikarak)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sobrancelha", + "wordSecond": "눈썹 (nunsseop)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cílio", + "wordSecond": "속눈썹 (songnunsseop)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lábio", + "wordSecond": "입술 (ipsul)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dente", + "wordSecond": "이 (i)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "língua", + "wordSecond": "혀 (hyeo)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "garganta", + "wordSecond": "목구멍 (mokgumeong)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pele", + "wordSecond": "피부 (pibu)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "unha", + "wordSecond": "손톱 (sontop)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "coração", + "wordSecond": "심장 (simjang)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pulmão", + "wordSecond": "폐 (pye)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "fígado", + "wordSecond": "간 (gan)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "estômago", + "wordSecond": "위 (wi)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "intestino", + "wordSecond": "창자 (changja)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "rim", + "wordSecond": "콩팥 (kongpat)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cérebro", + "wordSecond": "뇌 (noe)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "osso", + "wordSecond": "뼈 (ppyeo)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sangue", + "wordSecond": "피 (pi)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dor", + "wordSecond": "아픔 (apeum)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "febre", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tosse", + "wordSecond": "기침 (gichim)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "resfriado", + "wordSecond": "감기 (gamgi)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "gripe", + "wordSecond": "독감 (dokgam)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ferida", + "wordSecond": "상처 (sangcheo)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sangramento", + "wordSecond": "출혈 (chulhyeol)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "inchaço", + "wordSecond": "부기 (bugi)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "fadiga", + "wordSecond": "피로 (piro)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cansado", + "wordSecond": "피곤한 (pigonhan)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "saudável", + "wordSecond": "건강한 (geonganghan)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "doente", + "wordSecond": "아픈 (apeun)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "enjoo", + "wordSecond": "메스꺼움 (meseukkeoum)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "náusea", + "wordSecond": "구역질 (guyeokjil)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "vômito", + "wordSecond": "구토 (guto)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "diarreia", + "wordSecond": "설사 (seolsa)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "constipação", + "wordSecond": "변비 (byeonbi)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "alergia", + "wordSecond": "알레르기 (allereugi)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "coceira", + "wordSecond": "가려움 (garyeoum)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "erupção", + "wordSecond": "발진 (baljin)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "médico", + "wordSecond": "의사 (uisa)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "enfermeira", + "wordSecond": "간호사 (ganhosa)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "hospital", + "wordSecond": "병원 (byeongwon)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "clínica", + "wordSecond": "의원 (uiwon)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "remédio", + "wordSecond": "약 (yak)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pílula", + "wordSecond": "알약 (alyak)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "xarope", + "wordSecond": "시럽 (sireop)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "injeção", + "wordSecond": "주사 (jusa)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "curativo", + "wordSecond": "붕대 (bungdae)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "atadura", + "wordSecond": "밴드 (baendeu)", + "createdAt": "2026-02-19T14:06:55.942Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_pt_pl_A2.json b/output/2026_02_19_body_parts_health_pt_pl_A2.json new file mode 100644 index 0000000..8112a63 --- /dev/null +++ b/output/2026_02_19_body_parts_health_pt_pl_A2.json @@ -0,0 +1,1020 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:07:11.534Z", + "metadata": { + "itemCount": 77, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cabeça", + "wordSecond": "głowa", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "braço", + "wordSecond": "ramię", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "perna", + "wordSecond": "noga", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "mão", + "wordSecond": "ręka", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pé", + "wordSecond": "stopa", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "olho", + "wordSecond": "oko", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "orelha", + "wordSecond": "ucho", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "nariz", + "wordSecond": "nos", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "boca", + "wordSecond": "usta", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cabelo", + "wordSecond": "włosy", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "rosto", + "wordSecond": "twarz", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pescoço", + "wordSecond": "szyja", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ombro", + "wordSecond": "bark", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cotovelo", + "wordSecond": "łokieć", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pulso", + "wordSecond": "nadgarstek", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dedo", + "wordSecond": "palec", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "joelho", + "wordSecond": "kolano", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tornozelo", + "wordSecond": "kostka", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "peito", + "wordSecond": "klatka piersiowa", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "barriga", + "wordSecond": "brzuch", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "costas", + "wordSecond": "plecy", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "coração", + "wordSecond": "serce", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pulmão", + "wordSecond": "płuco", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "fígado", + "wordSecond": "wątroba", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "estômago", + "wordSecond": "żołądek", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "rim", + "wordSecond": "nerka", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cérebro", + "wordSecond": "mózg", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sangue", + "wordSecond": "krew", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pele", + "wordSecond": "skóra", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "osso", + "wordSecond": "kość", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dente", + "wordSecond": "ząb", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "língua", + "wordSecond": "język", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "garganta", + "wordSecond": "gardło", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ombro", + "wordSecond": "ramię", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cotovelo", + "wordSecond": "łokieć", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pulso", + "wordSecond": "nadgarstek", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "quadril", + "wordSecond": "biodro", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "panturrilha", + "wordSecond": "łydka", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "calcanhar", + "wordSecond": "pięta", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "unha", + "wordSecond": "paznokieć", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sobrancelha", + "wordSecond": "brew", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cílio", + "wordSecond": "rzęsa", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "queixo", + "wordSecond": "broda", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "bochecha", + "wordSecond": "policzek", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "testa", + "wordSecond": "czoło", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "lábio", + "wordSecond": "warga", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dente do siso", + "wordSecond": "ząb mądrości", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "gengiva", + "wordSecond": "dziąsło", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dor", + "wordSecond": "ból", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "febre", + "wordSecond": "gorączka", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "resfriado", + "wordSecond": "przeziębienie", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tosse", + "wordSecond": "kaszel", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cansado", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "saudável", + "wordSecond": "zdrowy", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "doente", + "wordSecond": "chory", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "médico", + "wordSecond": "lekarz", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "enfermeira", + "wordSecond": "pielęgniarka", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "hospital", + "wordSecond": "szpital", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "remédio", + "wordSecond": "lek", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "receita", + "wordSecond": "recepta", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "farmacia", + "wordSecond": "apteka", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ferida", + "wordSecond": "rana", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sangramento", + "wordSecond": "krwawienie", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "inchaço", + "wordSecond": "obrzęk", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "coceira", + "wordSecond": "swędzenie", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "náusea", + "wordSecond": "nudności", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "vômito", + "wordSecond": "wymioty", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "diarreia", + "wordSecond": "biegunka", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "constipação", + "wordSecond": "zaparcie", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "alergia", + "wordSecond": "alergia", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "fratura", + "wordSecond": "złamanie", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "entorse", + "wordSecond": "skręcenie", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "gripe", + "wordSecond": "grypa", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dor de cabeça", + "wordSecond": "ból głowy", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dor de garganta", + "wordSecond": "ból gardła", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dor de estômago", + "wordSecond": "ból brzucha", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dor nas costas", + "wordSecond": "ból pleców", + "createdAt": "2026-02-19T14:07:11.534Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_pt_zh_A2.json b/output/2026_02_19_body_parts_health_pt_zh_A2.json new file mode 100644 index 0000000..58a2b95 --- /dev/null +++ b/output/2026_02_19_body_parts_health_pt_zh_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:06:36.084Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cabeça", + "wordSecond": "头 (tóu)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "braço", + "wordSecond": "手臂 (shǒubì)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "perna", + "wordSecond": "腿 (tuǐ)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "mão", + "wordSecond": "手 (shǒu)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pé", + "wordSecond": "脚 (jiǎo)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "olho", + "wordSecond": "眼睛 (yǎnjīng)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "orelha", + "wordSecond": "耳朵 (ěrduo)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "nariz", + "wordSecond": "鼻子 (bízi)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "boca", + "wordSecond": "嘴 (zuǐ)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cabelo", + "wordSecond": "头发 (tóufa)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "rosto", + "wordSecond": "脸 (liǎn)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pescoço", + "wordSecond": "脖子 (bózi)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ombro", + "wordSecond": "肩膀 (jiānbǎng)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cotovelo", + "wordSecond": "肘 (zhǒu)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pulso", + "wordSecond": "手腕 (shǒuwàn)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dedo", + "wordSecond": "手指 (shǒuzhǐ)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "joelho", + "wordSecond": "膝盖 (xīgài)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tornozelo", + "wordSecond": "脚踝 (jiǎohuái)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "peito", + "wordSecond": "胸 (xiōng)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "barriga", + "wordSecond": "肚子 (dùzi)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "costas", + "wordSecond": "背 (bèi)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "coração", + "wordSecond": "心脏 (xīnzàng)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pulmão", + "wordSecond": "肺 (fèi)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fígado", + "wordSecond": "肝 (gān)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "estômago", + "wordSecond": "胃 (wèi)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "rim", + "wordSecond": "肾 (shèn)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cérebro", + "wordSecond": "大脑 (dànǎo)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sangue", + "wordSecond": "血 (xuè)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "osso", + "wordSecond": "骨头 (gǔtou)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pele", + "wordSecond": "皮肤 (pífū)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dente", + "wordSecond": "牙齿 (yáchǐ)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "língua", + "wordSecond": "舌头 (shétou)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "garganta", + "wordSecond": "喉咙 (hóulóng)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "unha", + "wordSecond": "指甲 (zhǐjia)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sobrancelha", + "wordSecond": "眉毛 (méimáo)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cílio", + "wordSecond": "睫毛 (jiémáo)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "lábio", + "wordSecond": "嘴唇 (zuǐchún)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "queixo", + "wordSecond": "下巴 (xiàba)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "testa", + "wordSecond": "额头 (étóu)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "bochecha", + "wordSecond": "脸颊 (liǎnjiá)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dor", + "wordSecond": "疼 (téng)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "febre", + "wordSecond": "发烧 (fāshāo)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "resfriado", + "wordSecond": "感冒 (gǎnmào)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tosse", + "wordSecond": "咳嗽 (késou)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cansado", + "wordSecond": "累 (lèi)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "saudável", + "wordSecond": "健康 (jiànkāng)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "doente", + "wordSecond": "生病 (shēngbìng)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "médico", + "wordSecond": "医生 (yīshēng)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "enfermeira", + "wordSecond": "护士 (hùshi)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "hospital", + "wordSecond": "医院 (yīyuàn)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "remédio", + "wordSecond": "药 (yào)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "clínica", + "wordSecond": "诊所 (zhěnsuǒ)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ferida", + "wordSecond": "伤口 (shāngkǒu)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sangramento", + "wordSecond": "流血 (liúxuè)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fratura", + "wordSecond": "骨折 (gǔzhé)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "inchaço", + "wordSecond": "肿胀 (zhǒngzhàng)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "coceira", + "wordSecond": "痒 (yǎng)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "náusea", + "wordSecond": "恶心 (ěxin)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "vômito", + "wordSecond": "呕吐 (ǒutù)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "diarreia", + "wordSecond": "腹泻 (fùxiè)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "alergia", + "wordSecond": "过敏 (guòmǐn)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pressão alta", + "wordSecond": "高血压 (gāoxuèyā)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "gripe", + "wordSecond": "流感 (liúgǎn)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dor de cabeça", + "wordSecond": "头痛 (tóutòng)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dor de garganta", + "wordSecond": "喉咙痛 (hóulóngtòng)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dor de estômago", + "wordSecond": "胃痛 (wèitòng)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dor nas costas", + "wordSecond": "背痛 (bèitòng)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fadiga", + "wordSecond": "疲劳 (píláo)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tontura", + "wordSecond": "头晕 (tóuyūn)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "exame", + "wordSecond": "检查 (jiǎnchá)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tratamento", + "wordSecond": "治疗 (zhìliáo)", + "createdAt": "2026-02-19T14:06:36.084Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_zh_ko_A2.json b/output/2026_02_19_body_parts_health_zh_ko_A2.json new file mode 100644 index 0000000..30c0887 --- /dev/null +++ b/output/2026_02_19_body_parts_health_zh_ko_A2.json @@ -0,0 +1,1033 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:13:28.623Z", + "metadata": { + "itemCount": 78, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "头 (tou)", + "wordSecond": "머리 (meori)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "脸 (lian)", + "wordSecond": "얼굴 (eolgul)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "眼睛 (yanjing)", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "耳朵 (erduo)", + "wordSecond": "귀 (gwi)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "鼻子 (bizi)", + "wordSecond": "코 (ko)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "嘴 (zui)", + "wordSecond": "입 (ip)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "牙齿 (yachi)", + "wordSecond": "이 (i)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "头发 (toufa)", + "wordSecond": "머리카락 (meorikarak)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "脖子 (bozi)", + "wordSecond": "목 (mok)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "肩膀 (jianbang)", + "wordSecond": "어깨 (eokkae)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "手臂 (shoubi)", + "wordSecond": "팔 (pal)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "手 (shou)", + "wordSecond": "손 (son)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "手指 (shouzhi)", + "wordSecond": "손가락 (songarak)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "胸 (xiong)", + "wordSecond": "가슴 (gaseum)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "背 (bei)", + "wordSecond": "등 (deung)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "肚子 (duzi)", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "腰 (yao)", + "wordSecond": "허리 (heori)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "腿 (tui)", + "wordSecond": "다리 (dari)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "膝盖 (xigai)", + "wordSecond": "무릎 (mureup)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "脚 (jiao)", + "wordSecond": "발 (bal)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "脚趾 (jiaozhi)", + "wordSecond": "발가락 (balgarak)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "皮肤 (pifu)", + "wordSecond": "피부 (pibu)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "骨头 (gutou)", + "wordSecond": "뼈 (ppyeo)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "肌肉 (jirou)", + "wordSecond": "근육 (geunyuk)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "血 (xue)", + "wordSecond": "피 (pi)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "心脏 (xinzang)", + "wordSecond": "심장 (simjang)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "肺 (fei)", + "wordSecond": "폐 (pye)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "肝 (gan)", + "wordSecond": "간 (gan)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "胃 (wei)", + "wordSecond": "위 (wi)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "肾 (shen)", + "wordSecond": "콩팥 (kongpat)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "大脑 (danao)", + "wordSecond": "뇌 (noe)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "喉咙 (houlong)", + "wordSecond": "목구멍 (mokgumeong)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "舌头 (shetou)", + "wordSecond": "혀 (hyeo)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "牙齿 (yachi)", + "wordSecond": "이빨 (ippal)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "指甲 (zhijia)", + "wordSecond": "손톱 (sontop)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "脚趾甲 (jiaozhijia)", + "wordSecond": "발톱 (baltop)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "眉毛 (meimao)", + "wordSecond": "눈썹 (nunsseop)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "睫毛 (jiemao)", + "wordSecond": "속눈썹 (songnunsseop)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "嘴唇 (zuichun)", + "wordSecond": "입술 (ipsul)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "下巴 (xiaba)", + "wordSecond": "턱 (teok)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "脸颊 (lianjia)", + "wordSecond": "뺨 (ppyam)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "额头 (etou)", + "wordSecond": "이마 (ima)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "手腕 (shouwan)", + "wordSecond": "손목 (sonmok)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "脚踝 (jiaohuai)", + "wordSecond": "발목 (balmok)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "肘 (zhou)", + "wordSecond": "팔꿈치 (palkkumchi)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "臀部 (tunbu)", + "wordSecond": "엉덩이 (eongdeongi)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "健康 (jiankang)", + "wordSecond": "건강 (geongang)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "生病 (shengbing)", + "wordSecond": "아프다 (apeuda)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "疼痛 (tengtong)", + "wordSecond": "아픔 (apeum)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "发烧 (fashao)", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "感冒 (ganmao)", + "wordSecond": "감기 (gamgi)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "咳嗽 (kesou)", + "wordSecond": "기침 (gichim)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "头痛 (toutong)", + "wordSecond": "두통 (dutong)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "胃痛 (weitong)", + "wordSecond": "복통 (boktong)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "牙痛 (yatong)", + "wordSecond": "치통 (chitong)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "疲劳 (pilao)", + "wordSecond": "피로 (piro)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "累 (lei)", + "wordSecond": "피곤하다 (pigonhada)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "医生 (yisheng)", + "wordSecond": "의사 (uisa)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "护士 (hushi)", + "wordSecond": "간호사 (ganhosa)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "医院 (yiyuan)", + "wordSecond": "병원 (byeongwon)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "药 (yao)", + "wordSecond": "약 (yak)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "药片 (yaopian)", + "wordSecond": "알약 (alyak)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "体温 (tiwen)", + "wordSecond": "체온 (cheon)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "温度计 (wenduji)", + "wordSecond": "체온계 (cheon-gye)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "绷带 (bengdai)", + "wordSecond": "붕대 (bungdae)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "创可贴 (chuangketie)", + "wordSecond": "반창고 (banchanggo)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "注射 (zhushe)", + "wordSecond": "주사 (jusa)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "手术 (shoushu)", + "wordSecond": "수술 (susul)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "检查 (jiancha)", + "wordSecond": "검사 (geomsa)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "治疗 (zhiliao)", + "wordSecond": "치료 (chiryo)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "恢复 (huifu)", + "wordSecond": "회복 (hoebok)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "呼吸 (huxi)", + "wordSecond": "호흡 (hoheup)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "消化 (xiaohua)", + "wordSecond": "소화 (sohwa)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "睡眠 (shuimian)", + "wordSecond": "수면 (sumyeon)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "饮食 (yinshi)", + "wordSecond": "식사 (siksa)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "运动 (yundong)", + "wordSecond": "운동 (undong)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "卫生 (weisheng)", + "wordSecond": "위생 (wisaeng)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "清洁 (qingjie)", + "wordSecond": "청결 (cheonggyeol)", + "createdAt": "2026-02-19T14:13:28.623Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_body_parts_health_zh_pl_A2.json b/output/2026_02_19_body_parts_health_zh_pl_A2.json new file mode 100644 index 0000000..1f798f3 --- /dev/null +++ b/output/2026_02_19_body_parts_health_zh_pl_A2.json @@ -0,0 +1,933 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:13:46.128Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Body Parts & Health" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Body Parts & Health" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "头 (tou)", + "wordSecond": "głowa", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "头发 (toufa)", + "wordSecond": "włosy", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "脸 (lian)", + "wordSecond": "twarz", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "眼睛 (yanjing)", + "wordSecond": "oczy", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "耳朵 (erduo)", + "wordSecond": "uszy", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鼻子 (bizi)", + "wordSecond": "nos", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "嘴 (zui)", + "wordSecond": "usta", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "牙齿 (yachi)", + "wordSecond": "zęby", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "舌头 (shetou)", + "wordSecond": "język", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "脖子 (bozi)", + "wordSecond": "szyja", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "肩膀 (jianbang)", + "wordSecond": "ramię", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "手臂 (shoubi)", + "wordSecond": "ramię", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "胳膊 (gebo)", + "wordSecond": "ramię", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "手肘 (shouzhou)", + "wordSecond": "łokieć", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "手腕 (shouwan)", + "wordSecond": "nadgarstek", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "手 (shou)", + "wordSecond": "ręka", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "手指 (shouzhi)", + "wordSecond": "palec", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "拇指 (muzhi)", + "wordSecond": "kciuk", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "指甲 (zhijia)", + "wordSecond": "paznokieć", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "胸部 (xiongbu)", + "wordSecond": "klatka piersiowa", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "背部 (beibu)", + "wordSecond": "plecy", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "胃 (wei)", + "wordSecond": "żołądek", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "腹部 (fubu)", + "wordSecond": "brzuch", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "腰 (yao)", + "wordSecond": "talia", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "臀部 (tunbu)", + "wordSecond": "pośladki", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "腿 (tui)", + "wordSecond": "noga", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "膝盖 (xigai)", + "wordSecond": "kolano", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "小腿 (xiaotui)", + "wordSecond": "łydka", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "脚踝 (jiaohuai)", + "wordSecond": "kostka", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "脚 (jiao)", + "wordSecond": "stopa", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "脚趾 (jiaozhi)", + "wordSecond": "palec u nogi", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "皮肤 (pifu)", + "wordSecond": "skóra", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "骨头 (gutou)", + "wordSecond": "kość", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "肌肉 (jirou)", + "wordSecond": "mięsień", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "血液 (xueye)", + "wordSecond": "krew", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "心脏 (xinzang)", + "wordSecond": "serce", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "肺 (fei)", + "wordSecond": "płuco", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "肝脏 (ganzang)", + "wordSecond": "wątroba", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "肾 (shen)", + "wordSecond": "nerka", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "大脑 (danao)", + "wordSecond": "mózg", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "喉咙 (houlong)", + "wordSecond": "gardło", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "气管 (qiguan)", + "wordSecond": "tchawica", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "肠 (chang)", + "wordSecond": "jelito", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "膀胱 (pangguang)", + "wordSecond": "pęcherz", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "疼痛 (tengtong)", + "wordSecond": "ból", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "头痛 (toutong)", + "wordSecond": "ból głowy", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "胃痛 (weitong)", + "wordSecond": "ból brzucha", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "牙痛 (yatong)", + "wordSecond": "ból zęba", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "发烧 (fashao)", + "wordSecond": "gorączka", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "感冒 (ganmao)", + "wordSecond": "przeziębienie", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "咳嗽 (kesou)", + "wordSecond": "kaszel", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "打喷嚏 (dapenti)", + "wordSecond": "kichanie", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "流鼻涕 (liubiti)", + "wordSecond": "katar", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "喉咙痛 (houlongtong)", + "wordSecond": "ból gardła", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "疲劳 (pila)", + "wordSecond": "zmęczenie", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "累 (lei)", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "健康 (jiankang)", + "wordSecond": "zdrowy", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "生病 (shengbing)", + "wordSecond": "chory", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "病人 (bingren)", + "wordSecond": "chory", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "医生 (yisheng)", + "wordSecond": "lekarz", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "护士 (hushi)", + "wordSecond": "pielęgniarka", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "医院 (yiyuan)", + "wordSecond": "szpital", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "药 (yao)", + "wordSecond": "lek", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "药片 (yaopian)", + "wordSecond": "tabletka", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "药水 (yaoshui)", + "wordSecond": "syrop", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "绷带 (bengdai)", + "wordSecond": "bandaż", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "创可贴 (chuangketie)", + "wordSecond": "plaster", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "温度计 (wenduji)", + "wordSecond": "termometr", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "休息 (xiuxi)", + "wordSecond": "odpoczynek", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "睡眠 (shuimian)", + "wordSecond": "sen", + "createdAt": "2026-02-19T14:13:46.128Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_business_office_de_fr_B2.json b/output/2026_02_19_business_office_de_fr_B2.json new file mode 100644 index 0000000..61f8183 --- /dev/null +++ b/output/2026_02_19_business_office_de_fr_B2.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:26:07.286Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Business & Office" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Business & Office" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Frist", + "wordSecond": "le délai", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Tagesordnung", + "wordSecond": "l'ordre du jour", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Rechnung", + "wordSecond": "la facture", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "delegieren", + "wordSecond": "déléguer", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "verhandeln", + "wordSecond": "négocier", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "berichten", + "wordSecond": "rendre compte", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Vertrag", + "wordSecond": "le contrat", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Verhandlung", + "wordSecond": "la négociation", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Besprechung", + "wordSecond": "la réunion", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Präsentation", + "wordSecond": "la présentation", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Personalabteilung", + "wordSecond": "les ressources humaines", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Unternehmenskommunikation", + "wordSecond": "la communication d'entreprise", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Geschäftsbericht", + "wordSecond": "le rapport d'activité", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Budget", + "wordSecond": "le budget", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Ausgaben", + "wordSecond": "les dépenses", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Einnahmen", + "wordSecond": "les recettes", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Gewinn", + "wordSecond": "le bénéfice", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Verlust", + "wordSecond": "la perte", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Bilanz", + "wordSecond": "le bilan", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Strategie", + "wordSecond": "la stratégie", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Ziel", + "wordSecond": "l'objectif", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Markt", + "wordSecond": "le marché", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Wettbewerb", + "wordSecond": "la concurrence", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Fusion", + "wordSecond": "la fusion", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Übernahme", + "wordSecond": "l'acquisition", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Aktionär", + "wordSecond": "l'actionnaire", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Aktie", + "wordSecond": "l'action", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Dividende", + "wordSecond": "le dividende", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Börse", + "wordSecond": "la bourse", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Geschäftsführer", + "wordSecond": "le directeur général", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Vorstand", + "wordSecond": "le conseil d'administration", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Abteilung", + "wordSecond": "le département", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Niederlassung", + "wordSecond": "la succursale", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Hauptsitz", + "wordSecond": "le siège social", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Produktivität", + "wordSecond": "la productivité", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Effizienz", + "wordSecond": "l'efficacité", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Leistung", + "wordSecond": "la performance", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Bewertung", + "wordSecond": "l'évaluation", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Beförderung", + "wordSecond": "la promotion", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Kündigung", + "wordSecond": "le licenciement", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Gehaltserhöhung", + "wordSecond": "l'augmentation de salaire", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Bonus", + "wordSecond": "la prime", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Rente", + "wordSecond": "la retraite", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Versicherung", + "wordSecond": "l'assurance", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Schulung", + "wordSecond": "la formation", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Qualifikation", + "wordSecond": "la qualification", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Erfahrung", + "wordSecond": "l'expérience", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Lebenslauf", + "wordSecond": "le curriculum vitae", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Vorstellungsgespräch", + "wordSecond": "l'entretien d'embauche", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Stellenbeschreibung", + "wordSecond": "la description de poste", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Verantwortung", + "wordSecond": "la responsabilité", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Zuständigkeit", + "wordSecond": "la compétence", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Zusammenarbeit", + "wordSecond": "la collaboration", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Team", + "wordSecond": "l'équipe", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Vorgesetzte", + "wordSecond": "le supérieur", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Mitarbeiter", + "wordSecond": "le collaborateur", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Kollege", + "wordSecond": "le collègue", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Kunde", + "wordSecond": "le client", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Lieferant", + "wordSecond": "le fournisseur", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Partnerschaft", + "wordSecond": "le partenariat", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Vereinbarung", + "wordSecond": "l'accord", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Klausel", + "wordSecond": "la clause", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Unterschrift", + "wordSecond": "la signature", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Rechtsanwalt", + "wordSecond": "l'avocat", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Haftung", + "wordSecond": "la responsabilité", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Eigentum", + "wordSecond": "la propriété", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Patent", + "wordSecond": "le brevet", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Marke", + "wordSecond": "la marque", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Urheberrecht", + "wordSecond": "le droit d'auteur", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Innovation", + "wordSecond": "l'innovation", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Forschung", + "wordSecond": "la recherche", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Entwicklung", + "wordSecond": "le développement", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Produktion", + "wordSecond": "la production", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Logistik", + "wordSecond": "la logistique", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Lagerung", + "wordSecond": "le stockage", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Versand", + "wordSecond": "l'expédition", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Qualität", + "wordSecond": "la qualité", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Kontrolle", + "wordSecond": "le contrôle", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Risiko", + "wordSecond": "le risque", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Sicherheit", + "wordSecond": "la sécurité", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Umweltschutz", + "wordSecond": "la protection de l'environnement", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Nachhaltigkeit", + "wordSecond": "la durabilité", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Ethik", + "wordSecond": "l'éthique", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Ruf", + "wordSecond": "la réputation", + "createdAt": "2026-02-19T15:26:07.286Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_business_office_de_it_B2.json b/output/2026_02_19_business_office_de_it_B2.json new file mode 100644 index 0000000..2bdab7f --- /dev/null +++ b/output/2026_02_19_business_office_de_it_B2.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:26:25.047Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Business & Office" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Business & Office" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Geschäftsleitung", + "wordSecond": "direzione aziendale", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Vorstand", + "wordSecond": "consiglio di amministrazione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Aktionär", + "wordSecond": "azionista", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Aufsichtsrat", + "wordSecond": "consiglio di sorveglianza", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Geschäftsbericht", + "wordSecond": "rapporto annuale", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bilanz", + "wordSecond": "bilancio", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gewinn", + "wordSecond": "profitto", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Verlust", + "wordSecond": "perdita", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Umsatz", + "wordSecond": "fatturato", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Marktanteil", + "wordSecond": "quota di mercato", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wettbewerb", + "wordSecond": "concorrenza", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Strategie", + "wordSecond": "strategia", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fusion", + "wordSecond": "fusione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Übernahme", + "wordSecond": "acquisizione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Joint Venture", + "wordSecond": "joint venture", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tochtergesellschaft", + "wordSecond": "sussidiaria", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hauptsitz", + "wordSecond": "sede centrale", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Niederlassung", + "wordSecond": "filiale", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Abteilung", + "wordSecond": "dipartimento", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Personalabteilung", + "wordSecond": "risorse umane", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Finanzabteilung", + "wordSecond": "finanza", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Marketingabteilung", + "wordSecond": "marketing", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Vertrieb", + "wordSecond": "vendite", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kundendienst", + "wordSecond": "servizio clienti", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mitarbeiter", + "wordSecond": "dipendente", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Vorgesetzter", + "wordSecond": "superiore", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kollege", + "wordSecond": "collega", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bewerber", + "wordSecond": "candidato", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Einstellung", + "wordSecond": "assunzione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kündigung", + "wordSecond": "licenziamento", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gehalt", + "wordSecond": "stipendio", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Leistungsbonus", + "wordSecond": "bonus di produttività", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rente", + "wordSecond": "pensione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Versicherung", + "wordSecond": "assicurazione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schulung", + "wordSecond": "formazione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Karriere", + "wordSecond": "carriera", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Beförderung", + "wordSecond": "promozione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Beurteilung", + "wordSecond": "valutazione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zielvereinbarung", + "wordSecond": "accordo sugli obiettivi", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Besprechung", + "wordSecond": "riunione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tagesordnung", + "wordSecond": "ordine del giorno", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Protokoll", + "wordSecond": "verbale", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Entscheidung", + "wordSecond": "decisione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Einigung", + "wordSecond": "accordo", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Verhandlung", + "wordSecond": "negoziazione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Vertrag", + "wordSecond": "contratto", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Klausel", + "wordSecond": "clausola", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Unterschrift", + "wordSecond": "firma", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Verlängerung", + "wordSecond": "rinnovo", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kündigungsfrist", + "wordSecond": "preavviso", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rechnung", + "wordSecond": "fattura", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zahlungsziel", + "wordSecond": "termine di pagamento", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mahnung", + "wordSecond": "sollecito", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Budget", + "wordSecond": "budget", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kosten", + "wordSecond": "costi", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Investition", + "wordSecond": "investimento", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rendite", + "wordSecond": "rendimento", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Risiko", + "wordSecond": "rischio", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Haftung", + "wordSecond": "responsabilità", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Produktentwicklung", + "wordSecond": "sviluppo del prodotto", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Innovation", + "wordSecond": "innovazione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Qualitätssicherung", + "wordSecond": "assicurazione qualità", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Lieferkette", + "wordSecond": "catena di fornitura", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Logistik", + "wordSecond": "logistica", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Lager", + "wordSecond": "magazzino", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bestellung", + "wordSecond": "ordine", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Lieferung", + "wordSecond": "consegna", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Reklamation", + "wordSecond": "reclamo", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Garantie", + "wordSecond": "garanzia", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Präsentation", + "wordSecond": "presentazione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Vortrag", + "wordSecond": "discorso", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Folie", + "wordSecond": "diapositiva", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Handout", + "wordSecond": "dispensa", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Feedback", + "wordSecond": "feedback", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Netzwerk", + "wordSecond": "rete", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kooperation", + "wordSecond": "cooperazione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kommunikation", + "wordSecond": "comunicazione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "E-Mail", + "wordSecond": "email", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Memos", + "wordSecond": "promemoria", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bericht", + "wordSecond": "rapporto", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Analyse", + "wordSecond": "analisi", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Prognose", + "wordSecond": "previsione", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Trend", + "wordSecond": "tendenza", + "createdAt": "2026-02-19T15:26:25.047Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_business_office_en_de_B2.json b/output/2026_02_19_business_office_en_de_B2.json new file mode 100644 index 0000000..d02a671 --- /dev/null +++ b/output/2026_02_19_business_office_en_de_B2.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:23:17.679Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Business & Office" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Business & Office" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "deadline", + "wordSecond": "Frist", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "agenda", + "wordSecond": "Tagesordnung", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "invoice", + "wordSecond": "Rechnung", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "delegate", + "wordSecond": "delegieren", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "negotiate", + "wordSecond": "verhandeln", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "report", + "wordSecond": "berichten", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "contract", + "wordSecond": "Vertrag", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "meeting", + "wordSecond": "Besprechung", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "presentation", + "wordSecond": "Präsentation", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "budget", + "wordSecond": "Budget", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "strategy", + "wordSecond": "Strategie", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stakeholder", + "wordSecond": "Interessenvertreter", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "performance", + "wordSecond": "Leistung", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "objective", + "wordSecond": "Ziel", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "milestone", + "wordSecond": "Meilenstein", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "quarterly", + "wordSecond": "vierteljährlich", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "revenue", + "wordSecond": "Umsatz", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "profit", + "wordSecond": "Gewinn", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "loss", + "wordSecond": "Verlust", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "expense", + "wordSecond": "Ausgabe", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "investment", + "wordSecond": "Investition", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shareholder", + "wordSecond": "Aktionär", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "board of directors", + "wordSecond": "Vorstand", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "CEO", + "wordSecond": "Geschäftsführer", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "manager", + "wordSecond": "Manager", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "supervisor", + "wordSecond": "Vorgesetzter", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "colleague", + "wordSecond": "Kollege", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "subordinate", + "wordSecond": "Untergebener", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "recruitment", + "wordSecond": "Rekrutierung", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "candidate", + "wordSecond": "Kandidat", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "interview", + "wordSecond": "Vorstellungsgespräch", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "salary", + "wordSecond": "Gehalt", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "benefits", + "wordSecond": "Leistungen", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "promotion", + "wordSecond": "Beförderung", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "termination", + "wordSecond": "Kündigung", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "resignation", + "wordSecond": "Rücktritt", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "notice period", + "wordSecond": "Kündigungsfrist", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "confidentiality", + "wordSecond": "Vertraulichkeit", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "compliance", + "wordSecond": "Compliance", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "regulation", + "wordSecond": "Vorschrift", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "policy", + "wordSecond": "Richtlinie", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "procedure", + "wordSecond": "Verfahren", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "guideline", + "wordSecond": "Leitfaden", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "audit", + "wordSecond": "Prüfung", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "assessment", + "wordSecond": "Bewertung", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "feedback", + "wordSecond": "Rückmeldung", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "evaluation", + "wordSecond": "Evaluation", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "efficiency", + "wordSecond": "Effizienz", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "productivity", + "wordSecond": "Produktivität", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "innovation", + "wordSecond": "Innovation", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "competitor", + "wordSecond": "Wettbewerber", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "market share", + "wordSecond": "Marktanteil", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "brand", + "wordSecond": "Marke", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "marketing", + "wordSecond": "Marketing", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "advertising", + "wordSecond": "Werbung", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "campaign", + "wordSecond": "Kampagne", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "client", + "wordSecond": "Kunde", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "customer", + "wordSecond": "Kunde", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "supplier", + "wordSecond": "Lieferant", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "partnership", + "wordSecond": "Partnerschaft", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "merger", + "wordSecond": "Fusion", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "acquisition", + "wordSecond": "Übernahme", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "takeover", + "wordSecond": "Übernahme", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bankruptcy", + "wordSecond": "Insolvenz", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "liability", + "wordSecond": "Haftung", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "asset", + "wordSecond": "Vermögenswert", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "equity", + "wordSecond": "Eigenkapital", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "debt", + "wordSecond": "Schulden", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cash flow", + "wordSecond": "Cashflow", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "forecast", + "wordSecond": "Prognose", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "projection", + "wordSecond": "Projektion", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "analysis", + "wordSecond": "Analyse", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "data", + "wordSecond": "Daten", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "statistics", + "wordSecond": "Statistiken", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "spreadsheet", + "wordSecond": "Tabellenkalkulation", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "software", + "wordSecond": "Software", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hardware", + "wordSecond": "Hardware", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "network", + "wordSecond": "Netzwerk", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "database", + "wordSecond": "Datenbank", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cybersecurity", + "wordSecond": "Cybersicherheit", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "remote work", + "wordSecond": "Remote-Arbeit", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "teleconference", + "wordSecond": "Telefonkonferenz", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "webinar", + "wordSecond": "Webinar", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "correspondence", + "wordSecond": "Korrespondenz", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "memorandum", + "wordSecond": "Mitteilung", + "createdAt": "2026-02-19T15:23:17.679Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_business_office_en_es_B2.json b/output/2026_02_19_business_office_en_es_B2.json new file mode 100644 index 0000000..220e119 --- /dev/null +++ b/output/2026_02_19_business_office_en_es_B2.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:22:44.928Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Business & Office" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Business & Office" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "agenda", + "wordSecond": "agenda", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "deadline", + "wordSecond": "plazo", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "invoice", + "wordSecond": "factura", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "negotiate", + "wordSecond": "negociar", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "delegate", + "wordSecond": "delegar", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "report", + "wordSecond": "informar", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "contract", + "wordSecond": "contrato", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "meeting", + "wordSecond": "reunión", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "presentation", + "wordSecond": "presentación", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "budget", + "wordSecond": "presupuesto", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "strategy", + "wordSecond": "estrategia", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "objective", + "wordSecond": "objetivo", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "stakeholder", + "wordSecond": "parte interesada", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shareholder", + "wordSecond": "accionista", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "board of directors", + "wordSecond": "consejo de administración", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "CEO", + "wordSecond": "director general", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "manager", + "wordSecond": "gerente", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "supervisor", + "wordSecond": "supervisor", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "employee", + "wordSecond": "empleado", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "recruitment", + "wordSecond": "contratación", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "resume", + "wordSecond": "currículum", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "interview", + "wordSecond": "entrevista", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "salary", + "wordSecond": "salario", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "benefits", + "wordSecond": "beneficios", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "performance", + "wordSecond": "rendimiento", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "evaluation", + "wordSecond": "evaluación", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "promotion", + "wordSecond": "ascenso", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "termination", + "wordSecond": "despido", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "confidentiality", + "wordSecond": "confidencialidad", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "policy", + "wordSecond": "política", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "procedure", + "wordSecond": "procedimiento", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "compliance", + "wordSecond": "cumplimiento", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "regulation", + "wordSecond": "regulación", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "liability", + "wordSecond": "responsabilidad", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "partnership", + "wordSecond": "asociación", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "merger", + "wordSecond": "fusión", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "acquisition", + "wordSecond": "adquisición", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "subsidiary", + "wordSecond": "filial", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "headquarters", + "wordSecond": "sede central", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "branch", + "wordSecond": "sucursal", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "department", + "wordSecond": "departamento", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "finance", + "wordSecond": "finanzas", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "accounting", + "wordSecond": "contabilidad", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "audit", + "wordSecond": "auditoría", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "revenue", + "wordSecond": "ingresos", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "expenses", + "wordSecond": "gastos", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "profit", + "wordSecond": "beneficio", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "loss", + "wordSecond": "pérdida", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "investment", + "wordSecond": "inversión", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "capital", + "wordSecond": "capital", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "market", + "wordSecond": "mercado", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "competitor", + "wordSecond": "competidor", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "brand", + "wordSecond": "marca", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "marketing", + "wordSecond": "mercadotecnia", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "advertising", + "wordSecond": "publicidad", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "campaign", + "wordSecond": "campaña", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "client", + "wordSecond": "cliente", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "customer", + "wordSecond": "consumidor", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "supplier", + "wordSecond": "proveedor", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "procurement", + "wordSecond": "adquisiciones", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "inventory", + "wordSecond": "inventario", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "logistics", + "wordSecond": "logística", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "distribution", + "wordSecond": "distribución", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "production", + "wordSecond": "producción", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "quality", + "wordSecond": "calidad", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "efficiency", + "wordSecond": "eficiencia", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "productivity", + "wordSecond": "productividad", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "innovation", + "wordSecond": "innovación", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "research", + "wordSecond": "investigación", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "development", + "wordSecond": "desarrollo", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "project", + "wordSecond": "proyecto", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "milestone", + "wordSecond": "hito", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "timeline", + "wordSecond": "cronograma", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "scope", + "wordSecond": "alcance", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "deliverable", + "wordSecond": "entregable", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "risk", + "wordSecond": "riesgo", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mitigation", + "wordSecond": "mitigación", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "collaboration", + "wordSecond": "colaboración", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "communication", + "wordSecond": "comunicación", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "feedback", + "wordSecond": "retroalimentación", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "consensus", + "wordSecond": "consenso", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "agreement", + "wordSecond": "acuerdo", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "amendment", + "wordSecond": "enmienda", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "clause", + "wordSecond": "cláusula", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "liability", + "wordSecond": "responsabilidad", + "createdAt": "2026-02-19T15:22:44.928Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_business_office_en_fr_B2.json b/output/2026_02_19_business_office_en_fr_B2.json new file mode 100644 index 0000000..7ab5e49 --- /dev/null +++ b/output/2026_02_19_business_office_en_fr_B2.json @@ -0,0 +1,1137 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:23:34.011Z", + "metadata": { + "itemCount": 86, + "categoryCount": 1, + "exportScope": "Category: Business & Office" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Business & Office" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "deadline", + "wordSecond": "échéance", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "agenda", + "wordSecond": "ordre du jour", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "invoice", + "wordSecond": "facture", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "delegate", + "wordSecond": "déléguer", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "negotiate", + "wordSecond": "négocier", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "report", + "wordSecond": "rapporter", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "budget", + "wordSecond": "budget", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "revenue", + "wordSecond": "recettes", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "expenditure", + "wordSecond": "dépenses", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "profit", + "wordSecond": "bénéfice", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "loss", + "wordSecond": "perte", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shareholder", + "wordSecond": "actionnaire", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "stakeholder", + "wordSecond": "partie prenante", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "board of directors", + "wordSecond": "conseil d'administration", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "CEO", + "wordSecond": "PDG", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "manager", + "wordSecond": "gestionnaire", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "supervisor", + "wordSecond": "superviseur", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "subordinate", + "wordSecond": "subordonné", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "colleague", + "wordSecond": "collègue", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "client", + "wordSecond": "client", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "supplier", + "wordSecond": "fournisseur", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "contract", + "wordSecond": "contrat", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "agreement", + "wordSecond": "accord", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "clause", + "wordSecond": "clause", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "liability", + "wordSecond": "responsabilité", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "confidentiality", + "wordSecond": "confidentialité", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "negotiation", + "wordSecond": "négociation", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "proposal", + "wordSecond": "proposition", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "offer", + "wordSecond": "offre", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bid", + "wordSecond": "soumission", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tender", + "wordSecond": "appel d'offres", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "partnership", + "wordSecond": "partenariat", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "merger", + "wordSecond": "fusion", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "acquisition", + "wordSecond": "acquisition", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "takeover", + "wordSecond": "rachat", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "strategy", + "wordSecond": "stratégie", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "policy", + "wordSecond": "politique", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "procedure", + "wordSecond": "procédure", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "guideline", + "wordSecond": "ligne directrice", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "compliance", + "wordSecond": "conformité", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "regulation", + "wordSecond": "réglementation", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "audit", + "wordSecond": "audit", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "assessment", + "wordSecond": "évaluation", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "performance", + "wordSecond": "performance", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "target", + "wordSecond": "objectif", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "goal", + "wordSecond": "but", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "objective", + "wordSecond": "objectif", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "key performance indicator", + "wordSecond": "indicateur clé de performance", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "quarterly report", + "wordSecond": "rapport trimestriel", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "annual report", + "wordSecond": "rapport annuel", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "presentation", + "wordSecond": "présentation", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "briefing", + "wordSecond": "briefing", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "meeting", + "wordSecond": "réunion", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "conference call", + "wordSecond": "conférence téléphonique", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "minutes", + "wordSecond": "procès-verbal", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "action item", + "wordSecond": "point d'action", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "follow-up", + "wordSecond": "suivi", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "feedback", + "wordSecond": "retour d'information", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "appraisal", + "wordSecond": "évaluation", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "recruitment", + "wordSecond": "recrutement", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "candidate", + "wordSecond": "candidat", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "interview", + "wordSecond": "entretien", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "résumé", + "wordSecond": "CV", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "job description", + "wordSecond": "description de poste", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "salary", + "wordSecond": "salaire", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "benefits", + "wordSecond": "avantages sociaux", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pension", + "wordSecond": "retraite", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "training", + "wordSecond": "formation", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "workshop", + "wordSecond": "atelier", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "seminar", + "wordSecond": "séminaire", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "networking", + "wordSecond": "réseautage", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "brand", + "wordSecond": "marque", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "marketing", + "wordSecond": "marketing", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "advertising", + "wordSecond": "publicité", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "campaign", + "wordSecond": "campagne", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "market research", + "wordSecond": "étude de marché", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "competitor", + "wordSecond": "concurrent", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "innovation", + "wordSecond": "innovation", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "research and development", + "wordSecond": "recherche et développement", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "product launch", + "wordSecond": "lancement de produit", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "customer service", + "wordSecond": "service client", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "after-sales service", + "wordSecond": "service après-vente", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "warranty", + "wordSecond": "garantie", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "logistics", + "wordSecond": "logistique", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "inventory", + "wordSecond": "inventaire", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "supply chain", + "wordSecond": "chaîne d'approvisionnement", + "createdAt": "2026-02-19T15:23:34.011Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_business_office_en_it_B2.json b/output/2026_02_19_business_office_en_it_B2.json new file mode 100644 index 0000000..4f61357 --- /dev/null +++ b/output/2026_02_19_business_office_en_it_B2.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:23:50.013Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Business & Office" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Business & Office" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "agenda", + "wordSecond": "ordine del giorno", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "deadline", + "wordSecond": "scadenza", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "invoice", + "wordSecond": "fattura", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "negotiate", + "wordSecond": "negoziare", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "delegate", + "wordSecond": "delegare", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "report", + "wordSecond": "relazionare", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "contract", + "wordSecond": "contratto", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "meeting", + "wordSecond": "riunione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "presentation", + "wordSecond": "presentazione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "budget", + "wordSecond": "bilancio", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "profit", + "wordSecond": "profitto", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "loss", + "wordSecond": "perdita", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shareholder", + "wordSecond": "azionista", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "stakeholder", + "wordSecond": "portatore di interessi", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "merger", + "wordSecond": "fusione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "acquisition", + "wordSecond": "acquisizione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "subsidiary", + "wordSecond": "consociata", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "headquarters", + "wordSecond": "sede centrale", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "branch", + "wordSecond": "filiale", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "department", + "wordSecond": "dipartimento", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "supervisor", + "wordSecond": "supervisore", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "colleague", + "wordSecond": "collega", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "client", + "wordSecond": "cliente", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "supplier", + "wordSecond": "fornitore", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "partnership", + "wordSecond": "partnership", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "strategy", + "wordSecond": "strategia", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "objective", + "wordSecond": "obiettivo", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "target", + "wordSecond": "obiettivo", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "performance", + "wordSecond": "prestazione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "evaluation", + "wordSecond": "valutazione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "appraisal", + "wordSecond": "valutazione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "recruitment", + "wordSecond": "reclutamento", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "candidate", + "wordSecond": "candidato", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "interview", + "wordSecond": "colloquio", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "resignation", + "wordSecond": "dimissioni", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "termination", + "wordSecond": "licenziamento", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "severance", + "wordSecond": "indennità", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "benefits", + "wordSecond": "benefici", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pension", + "wordSecond": "pensione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "insurance", + "wordSecond": "assicurazione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "liability", + "wordSecond": "responsabilità", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "compliance", + "wordSecond": "conformità", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "regulation", + "wordSecond": "regolamentazione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "policy", + "wordSecond": "politica", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "procedure", + "wordSecond": "procedura", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "guideline", + "wordSecond": "linea guida", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "protocol", + "wordSecond": "protocollo", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "confidentiality", + "wordSecond": "riservatezza", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "disclosure", + "wordSecond": "divulgazione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "arbitration", + "wordSecond": "arbitrato", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "litigation", + "wordSecond": "contenzioso", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "liability", + "wordSecond": "passività", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "asset", + "wordSecond": "attivo", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "equity", + "wordSecond": "patrimonio netto", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "revenue", + "wordSecond": "ricavo", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "expenditure", + "wordSecond": "spesa", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "investment", + "wordSecond": "investimento", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dividend", + "wordSecond": "dividendo", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bankruptcy", + "wordSecond": "fallimento", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "audit", + "wordSecond": "revisione contabile", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "quarterly", + "wordSecond": "trimestrale", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "annual", + "wordSecond": "annuale", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "forecast", + "wordSecond": "previsione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "projection", + "wordSecond": "proiezione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "statistics", + "wordSecond": "statistiche", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "analysis", + "wordSecond": "analisi", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "research", + "wordSecond": "ricerca", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "development", + "wordSecond": "sviluppo", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "innovation", + "wordSecond": "innovazione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "patent", + "wordSecond": "brevetto", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "trademark", + "wordSecond": "marchio", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "copyright", + "wordSecond": "diritto d'autore", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "logistics", + "wordSecond": "logistica", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "inventory", + "wordSecond": "inventario", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "procurement", + "wordSecond": "approvvigionamento", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "distribution", + "wordSecond": "distribuzione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "warehouse", + "wordSecond": "magazzino", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shipment", + "wordSecond": "spedizione", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "freight", + "wordSecond": "nolo", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "customs", + "wordSecond": "dogana", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tariff", + "wordSecond": "tariffa", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "quotation", + "wordSecond": "preventivo", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tender", + "wordSecond": "gara d'appalto", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bid", + "wordSecond": "offerta", + "createdAt": "2026-02-19T15:23:50.013Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_business_office_en_pt_B2.json b/output/2026_02_19_business_office_en_pt_B2.json new file mode 100644 index 0000000..13cee50 --- /dev/null +++ b/output/2026_02_19_business_office_en_pt_B2.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:23:01.001Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Business & Office" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Business & Office" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "agenda", + "wordSecond": "pauta", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "deadline", + "wordSecond": "prazo", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "invoice", + "wordSecond": "fatura", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "negotiate", + "wordSecond": "negociar", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "delegate", + "wordSecond": "delegar", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "report", + "wordSecond": "relatar", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "contract", + "wordSecond": "contrato", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "meeting", + "wordSecond": "reunião", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "presentation", + "wordSecond": "apresentação", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "budget", + "wordSecond": "orçamento", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "profit", + "wordSecond": "lucro", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "loss", + "wordSecond": "prejuízo", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shareholder", + "wordSecond": "acionista", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stakeholder", + "wordSecond": "parte interessada", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "merger", + "wordSecond": "fusão", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "acquisition", + "wordSecond": "aquisição", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "strategy", + "wordSecond": "estratégia", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "objective", + "wordSecond": "objetivo", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "target", + "wordSecond": "meta", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "performance", + "wordSecond": "desempenho", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "evaluation", + "wordSecond": "avaliação", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "feedback", + "wordSecond": "feedback", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "recruitment", + "wordSecond": "recrutamento", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "candidate", + "wordSecond": "candidato", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "interview", + "wordSecond": "entrevista", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "salary", + "wordSecond": "salário", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "benefits", + "wordSecond": "benefícios", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "promotion", + "wordSecond": "promoção", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "resignation", + "wordSecond": "demissão", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "termination", + "wordSecond": "rescisão", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "confidential", + "wordSecond": "confidencial", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "disclosure", + "wordSecond": "divulgação", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "liability", + "wordSecond": "responsabilidade", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "compliance", + "wordSecond": "conformidade", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "regulation", + "wordSecond": "regulamentação", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "audit", + "wordSecond": "auditoria", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "quarter", + "wordSecond": "trimestre", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "revenue", + "wordSecond": "receita", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "expense", + "wordSecond": "despesa", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "investment", + "wordSecond": "investimento", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "capital", + "wordSecond": "capital", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "asset", + "wordSecond": "ativo", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "liability", + "wordSecond": "passivo", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "equity", + "wordSecond": "patrimônio líquido", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cash flow", + "wordSecond": "fluxo de caixa", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "forecast", + "wordSecond": "previsão", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "projection", + "wordSecond": "projeção", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "analysis", + "wordSecond": "análise", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "data", + "wordSecond": "dados", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "trend", + "wordSecond": "tendência", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "market", + "wordSecond": "mercado", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "competitor", + "wordSecond": "concorrente", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "brand", + "wordSecond": "marca", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "client", + "wordSecond": "cliente", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "customer", + "wordSecond": "consumidor", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "supplier", + "wordSecond": "fornecedor", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "partnership", + "wordSecond": "parceria", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "collaboration", + "wordSecond": "colaboração", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "initiative", + "wordSecond": "iniciativa", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "innovation", + "wordSecond": "inovação", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "efficiency", + "wordSecond": "eficácia", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "productivity", + "wordSecond": "produtividade", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "deadline", + "wordSecond": "prazo final", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "milestone", + "wordSecond": "marco", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "deliverable", + "wordSecond": "entregável", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "scope", + "wordSecond": "escopo", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "risk", + "wordSecond": "risco", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mitigation", + "wordSecond": "mitigação", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "agenda item", + "wordSecond": "item da pauta", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "minutes", + "wordSecond": "ata", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "action item", + "wordSecond": "item de ação", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chairperson", + "wordSecond": "presidente", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "attendee", + "wordSecond": "participante", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "absent", + "wordSecond": "ausente", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "proposal", + "wordSecond": "proposta", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "agreement", + "wordSecond": "acordo", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "clause", + "wordSecond": "cláusula", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "amendment", + "wordSecond": "emenda", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "signatory", + "wordSecond": "signatário", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "notary", + "wordSecond": "tabelião", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "executive", + "wordSecond": "executivo", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "manager", + "wordSecond": "gerente", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "supervisor", + "wordSecond": "supervisor", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "subordinate", + "wordSecond": "subordinado", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "colleague", + "wordSecond": "colega", + "createdAt": "2026-02-19T15:23:01.001Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_business_office_es_de_B2.json b/output/2026_02_19_business_office_es_de_B2.json new file mode 100644 index 0000000..3004718 --- /dev/null +++ b/output/2026_02_19_business_office_es_de_B2.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:24:23.876Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Business & Office" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Business & Office" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "reunión", + "wordSecond": "Besprechung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "agenda", + "wordSecond": "Tagesordnung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "presentación", + "wordSecond": "Präsentation", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "negociación", + "wordSecond": "Verhandlung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "contrato", + "wordSecond": "Vertrag", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "factura", + "wordSecond": "Rechnung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "plazo", + "wordSecond": "Frist", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "presupuesto", + "wordSecond": "Budget", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "informe", + "wordSecond": "Bericht", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "estrategia", + "wordSecond": "Strategie", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "delegar", + "wordSecond": "delegieren", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "negociar", + "wordSecond": "verhandeln", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "informar", + "wordSecond": "berichten", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "gestionar", + "wordSecond": "verwalten", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "supervisar", + "wordSecond": "überwachen", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "contratar", + "wordSecond": "einstellen", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "despedir", + "wordSecond": "entlassen", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "evaluar", + "wordSecond": "bewerten", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "invertir", + "wordSecond": "investieren", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "financiar", + "wordSecond": "finanzieren", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "junta directiva", + "wordSecond": "Vorstand", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "gerente", + "wordSecond": "Manager", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "empleado", + "wordSecond": "Mitarbeiter", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cliente", + "wordSecond": "Kunde", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "proveedor", + "wordSecond": "Lieferant", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "competencia", + "wordSecond": "Konkurrenz", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mercado", + "wordSecond": "Markt", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "producto", + "wordSecond": "Produkt", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "servicio", + "wordSecond": "Dienstleistung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "calidad", + "wordSecond": "Qualität", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "eficiencia", + "wordSecond": "Effizienz", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "productividad", + "wordSecond": "Productivität", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "beneficio", + "wordSecond": "Gewinn", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pérdida", + "wordSecond": "Verlust", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "inversión", + "wordSecond": "Investition", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "capital", + "wordSecond": "Kapital", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "accionista", + "wordSecond": "Aktionär", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dividendo", + "wordSecond": "Dividende", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "fusionar", + "wordSecond": "fusionieren", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "adquirir", + "wordSecond": "erwerben", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "adquisición", + "wordSecond": "Übernahme", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "expansión", + "wordSecond": "Expansion", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sucursal", + "wordSecond": "Filiale", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sede", + "wordSecond": "Hauptsitz", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "departamento", + "wordSecond": "Abteilung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "recursos humanos", + "wordSecond": "Personalabteilung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "nómina", + "wordSecond": "Gehaltsabrechnung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "salario", + "wordSecond": "Gehalt", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "bonificación", + "wordSecond": "Bonus", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "promoción", + "wordSecond": "Beförderung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "capacitación", + "wordSecond": "Schulung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "desarrollo", + "wordSecond": "Entwicklung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "rendimiento", + "wordSecond": "Leistung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "objetivo", + "wordSecond": "Ziel", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "meta", + "wordSecond": "Vorgabe", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "planificación", + "wordSecond": "Planung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ejecución", + "wordSecond": "Umsetzung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "seguimiento", + "wordSecond": "Nachverfolgung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "revisión", + "wordSecond": "Überprüfung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "auditoría", + "wordSecond": "Prüfung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cumplimiento", + "wordSecond": "Einhaltung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "regulación", + "wordSecond": "Regulierung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "política", + "wordSecond": "Richtlinie", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "procedimiento", + "wordSecond": "Verfahren", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "protocolo", + "wordSecond": "Protokoll", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "comunicación", + "wordSecond": "Kommunikation", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "correspondencia", + "wordSecond": "Korrespondenz", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "memorándum", + "wordSecond": "Mitteilung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "minuta", + "wordSecond": "Protokoll", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "conferencia", + "wordSecond": "Konferenz", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "seminario", + "wordSecond": "Seminar", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "taller", + "wordSecond": "Workshop", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "networking", + "wordSecond": "Netzwerken", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "colaboración", + "wordSecond": "Zusammenarbeit", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "equipo", + "wordSecond": "Team", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "liderazgo", + "wordSecond": "Führung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "toma de decisiones", + "wordSecond": "Entscheidungsfindung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "resolución de problemas", + "wordSecond": "Problemlösung", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "innovación", + "wordSecond": "Innovation", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tecnología", + "wordSecond": "Technologie", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "software", + "wordSecond": "Software", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hardware", + "wordSecond": "Hardware", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "base de datos", + "wordSecond": "Datenbank", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "seguridad", + "wordSecond": "Sicherheit", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "confidencialidad", + "wordSecond": "Vertraulichkeit", + "createdAt": "2026-02-19T15:24:23.876Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_business_office_es_fr_B2.json b/output/2026_02_19_business_office_es_fr_B2.json new file mode 100644 index 0000000..8161706 --- /dev/null +++ b/output/2026_02_19_business_office_es_fr_B2.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:24:39.798Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Business & Office" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Business & Office" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "reunión", + "wordSecond": "réunion", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "agenda", + "wordSecond": "ordre du jour", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "presentación", + "wordSecond": "présentation", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "negociación", + "wordSecond": "négociation", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "contrato", + "wordSecond": "contrat", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "factura", + "wordSecond": "facture", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "presupuesto", + "wordSecond": "budget", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "informe", + "wordSecond": "rapport", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "estadística", + "wordSecond": "statistique", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "análisis", + "wordSecond": "analyse", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "estrategia", + "wordSecond": "stratégie", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "objetivo", + "wordSecond": "objectif", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "meta", + "wordSecond": "but", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "plazo", + "wordSecond": "délai", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fecha límite", + "wordSecond": "date limite", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "proyecto", + "wordSecond": "projet", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "equipo", + "wordSecond": "équipe", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gerente", + "wordSecond": "directeur", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "director", + "wordSecond": "directeur général", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "empleado", + "wordSecond": "employé", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "colaborador", + "wordSecond": "collaborateur", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cliente", + "wordSecond": "client", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "proveedor", + "wordSecond": "fournisseur", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "socio", + "wordSecond": "partenaire", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "inversor", + "wordSecond": "investisseur", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "accionista", + "wordSecond": "actionnaire", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "junta", + "wordSecond": "conseil d'administration", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "departamento", + "wordSecond": "département", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "oficina", + "wordSecond": "bureau", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sede", + "wordSecond": "siège social", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sucursal", + "wordSecond": "succursale", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mercado", + "wordSecond": "marché", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "competencia", + "wordSecond": "concurrence", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "producto", + "wordSecond": "produit", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "servicio", + "wordSecond": "service", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "venta", + "wordSecond": "vente", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "compra", + "wordSecond": "achat", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ingreso", + "wordSecond": "revenu", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gasto", + "wordSecond": "dépense", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "beneficio", + "wordSecond": "bénéfice", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pérdida", + "wordSecond": "perte", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "inversión", + "wordSecond": "investissement", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "financiación", + "wordSecond": "financement", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "delegar", + "wordSecond": "déléguer", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "negociar", + "wordSecond": "négocier", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "informar", + "wordSecond": "rapporter", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "analizar", + "wordSecond": "analyser", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "planificar", + "wordSecond": "planifier", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "organizar", + "wordSecond": "organiser", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "coordinar", + "wordSecond": "coordiner", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "supervisar", + "wordSecond": "superviser", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "evaluar", + "wordSecond": "évaluer", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "revisar", + "wordSecond": "réviser", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "aprobar", + "wordSecond": "approuver", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "rechazar", + "wordSecond": "rejeter", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "implementar", + "wordSecond": "mettre en œuvre", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "desarrollar", + "wordSecond": "développer", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mejorar", + "wordSecond": "améliorer", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "innovar", + "wordSecond": "innover", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "comunicar", + "wordSecond": "communiquer", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "colaborar", + "wordSecond": "collaborer", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "motivar", + "wordSecond": "motiver", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "capacitar", + "wordSecond": "former", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "contratar", + "wordSecond": "recruter", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "despedir", + "wordSecond": "licencier", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "renunciar", + "wordSecond": "démissionner", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ascender", + "wordSecond": "promouvoir", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "reunirse", + "wordSecond": "se réunir", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "presentar", + "wordSecond": "présenter", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "discutir", + "wordSecond": "discuter", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "decidir", + "wordSecond": "décider", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "acordar", + "wordSecond": "convenir", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "firmar", + "wordSecond": "signer", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cumplir", + "wordSecond": "respecter", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "incumplir", + "wordSecond": "manquer à", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "resolver", + "wordSecond": "résoudre", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "medir", + "wordSecond": "mesurer", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "alcanzar", + "wordSecond": "atteindre", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "superar", + "wordSecond": "dépasser", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "reducir", + "wordSecond": "réduire", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "aumentar", + "wordSecond": "augmenter", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mantener", + "wordSecond": "maintenir", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "garantizar", + "wordSecond": "garantir", + "createdAt": "2026-02-19T15:24:39.798Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_business_office_es_it_B2.json b/output/2026_02_19_business_office_es_it_B2.json new file mode 100644 index 0000000..f1fb10f --- /dev/null +++ b/output/2026_02_19_business_office_es_it_B2.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:24:57.224Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Business & Office" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Business & Office" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "reunión", + "wordSecond": "riunione", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "agenda", + "wordSecond": "agenda", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "presentación", + "wordSecond": "presentazione", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "negociación", + "wordSecond": "negoziazione", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "contrato", + "wordSecond": "contratto", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "factura", + "wordSecond": "fattura", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "plazo", + "wordSecond": "scadenza", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "presupuesto", + "wordSecond": "bilancio", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "informe", + "wordSecond": "rapporto", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "delegar", + "wordSecond": "delegare", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "negociar", + "wordSecond": "negoziare", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "informar", + "wordSecond": "informare", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "junta directiva", + "wordSecond": "consiglio di amministrazione", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "accionista", + "wordSecond": "azionista", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "inversión", + "wordSecond": "investimento", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "beneficio", + "wordSecond": "profitto", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pérdida", + "wordSecond": "perdita", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mercado", + "wordSecond": "mercato", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "competencia", + "wordSecond": "concorrenza", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estrategia", + "wordSecond": "strategia", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "objetivo", + "wordSecond": "obiettivo", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "meta", + "wordSecond": "meta", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "rendimiento", + "wordSecond": "rendimento", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "evaluación", + "wordSecond": "valutazione", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "empleado", + "wordSecond": "dipendente", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "empleador", + "wordSecond": "datore di lavoro", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "reclutamiento", + "wordSecond": "reclutamento", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "selección", + "wordSecond": "selezione", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "contratación", + "wordSecond": "assunzione", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "despido", + "wordSecond": "licenziamento", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "jubilación", + "wordSecond": "pensionamento", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "salario", + "wordSecond": "stipendio", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bonificación", + "wordSecond": "bonus", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "promoción", + "wordSecond": "promozione", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "capacitación", + "wordSecond": "formazione", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "desarrollo", + "wordSecond": "sviluppo", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "comunicación", + "wordSecond": "comunicazione", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "correo electrónico", + "wordSecond": "email", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "memorándum", + "wordSecond": "promemoria", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "minuta", + "wordSecond": "verbale", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "propuesta", + "wordSecond": "proposta", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "oferta", + "wordSecond": "offerta", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "acuerdo", + "wordSecond": "accordo", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cláusula", + "wordSecond": "clausola", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "confidencialidad", + "wordSecond": "riservatezza", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "responsabilidad", + "wordSecond": "responsabilità", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "obligación", + "wordSecond": "obbligo", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cumplimiento", + "wordSecond": "conformità", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "auditoría", + "wordSecond": "revisione", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "finanzas", + "wordSecond": "finanze", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "contabilidad", + "wordSecond": "contabilità", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gasto", + "wordSecond": "spesa", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ingreso", + "wordSecond": "entrata", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "activo", + "wordSecond": "attivo", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pasivo", + "wordSecond": "passivo", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "patrimonio neto", + "wordSecond": "patrimonio netto", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "departamento", + "wordSecond": "dipartimento", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gerente", + "wordSecond": "manager", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "director", + "wordSecond": "direttore", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "supervisor", + "wordSecond": "supervisore", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "subordinado", + "wordSecond": "subordinato", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "colegas", + "wordSecond": "colleghi", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "equipo", + "wordSecond": "squadra", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "liderazgo", + "wordSecond": "leadership", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "toma de decisiones", + "wordSecond": "presa di decisioni", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "resolución de problemas", + "wordSecond": "risoluzione dei problemi", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "innovación", + "wordSecond": "innovazione", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tecnología", + "wordSecond": "tecnologia", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "infraestructura", + "wordSecond": "infrastruttura", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "logística", + "wordSecond": "logistica", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cadena de suministro", + "wordSecond": "catena di fornitura", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "proveedor", + "wordSecond": "fornitore", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cliente", + "wordSecond": "cliente", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "servicio al cliente", + "wordSecond": "servizio clienti", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "calidad", + "wordSecond": "qualità", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estándar", + "wordSecond": "standard", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "procedimiento", + "wordSecond": "procedura", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "política", + "wordSecond": "politica", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "regulación", + "wordSecond": "regolamentazione", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cumplir", + "wordSecond": "rispettare", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "implementar", + "wordSecond": "implementare", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "supervisar", + "wordSecond": "sorvegliare", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "coordinar", + "wordSecond": "coordinare", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "colaborar", + "wordSecond": "collaborare", + "createdAt": "2026-02-19T15:24:57.224Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_business_office_es_pt_B2.json b/output/2026_02_19_business_office_es_pt_B2.json new file mode 100644 index 0000000..6956c32 --- /dev/null +++ b/output/2026_02_19_business_office_es_pt_B2.json @@ -0,0 +1,1137 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:24:06.889Z", + "metadata": { + "itemCount": 86, + "categoryCount": 1, + "exportScope": "Category: Business & Office" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Business & Office" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reunión", + "wordSecond": "reunião", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "agenda", + "wordSecond": "agenda", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "presentación", + "wordSecond": "apresentação", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "negociación", + "wordSecond": "negociação", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "contrato", + "wordSecond": "contrato", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cláusula", + "wordSecond": "cláusula", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "plazo", + "wordSecond": "prazo", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fecha límite", + "wordSecond": "prazo final", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "presupuesto", + "wordSecond": "orçamento", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "factura", + "wordSecond": "fatura", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "recibo", + "wordSecond": "recibo", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "informe", + "wordSecond": "relatório", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "memorándum", + "wordSecond": "memorando", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "correo electrónico", + "wordSecond": "e-mail", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "comunicado", + "wordSecond": "comunicado", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "delegar", + "wordSecond": "delegar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "supervisar", + "wordSecond": "supervisionar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gestionar", + "wordSecond": "gerenciar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "administrar", + "wordSecond": "administrar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "coordinar", + "wordSecond": "coordenar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "evaluar", + "wordSecond": "avaliar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "analizar", + "wordSecond": "analisar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "implementar", + "wordSecond": "implementar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ejecutar", + "wordSecond": "executar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desarrollar", + "wordSecond": "desenvolver", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lanzar", + "wordSecond": "lançar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "invertir", + "wordSecond": "investir", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "financiar", + "wordSecond": "financiar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "presupuestar", + "wordSecond": "orçar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "contabilizar", + "wordSecond": "contabilizar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "auditar", + "wordSecond": "auditar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cumplir", + "wordSecond": "cumprir", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "incumplir", + "wordSecond": "descumprir", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "renovar", + "wordSecond": "renovar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rescindir", + "wordSecond": "rescindir", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "firmar", + "wordSecond": "assinar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ratificar", + "wordSecond": "ratificar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "modificar", + "wordSecond": "modificar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "revisar", + "wordSecond": "revisar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aprobar", + "wordSecond": "aprovar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rechazar", + "wordSecond": "rejeitar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "proponer", + "wordSecond": "propor", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sugerir", + "wordSecond": "sugerir", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "discutir", + "wordSecond": "discutir", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "debate", + "wordSecond": "debate", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "consenso", + "wordSecond": "consenso", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "acuerdo", + "wordSecond": "acordo", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desacuerdo", + "wordSecond": "desacordo", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "conflicto", + "wordSecond": "conflito", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "resolución", + "wordSecond": "resolução", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mediación", + "wordSecond": "mediação", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "arbitraje", + "wordSecond": "arbitragem", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estrategia", + "wordSecond": "estratégia", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "táctica", + "wordSecond": "tática", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "objetivo", + "wordSecond": "objetivo", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "meta", + "wordSecond": "meta", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "indicador", + "wordSecond": "indicador", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rendimiento", + "wordSecond": "desempenho", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "productividad", + "wordSecond": "produtividade", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "eficiencia", + "wordSecond": "eficiência", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "eficacia", + "wordSecond": "eficácia", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "competitividad", + "wordSecond": "competitividade", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "innovación", + "wordSecond": "inovação", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sostenibilidad", + "wordSecond": "sustentabilidade", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "responsabilidad", + "wordSecond": "responsabilidade", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ética", + "wordSecond": "ética", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "confidencialidad", + "wordSecond": "confidencialidade", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "transparencia", + "wordSecond": "transparência", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuenta de resultados", + "wordSecond": "demonstrativo de resultados", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "balance", + "wordSecond": "balanço", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "activo", + "wordSecond": "ativo", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pasivo", + "wordSecond": "passivo", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "patrimonio", + "wordSecond": "patrimônio", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ingreso", + "wordSecond": "receita", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gasto", + "wordSecond": "despesa", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "beneficio", + "wordSecond": "lucro", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pérdida", + "wordSecond": "prejuízo", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "impuesto", + "wordSecond": "imposto", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "subvención", + "wordSecond": "subvenção", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fusionar", + "wordSecond": "fundir", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "adquirir", + "wordSecond": "adquirir", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "subcontratar", + "wordSecond": "terceirizar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "despedir", + "wordSecond": "demitir", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "contratar", + "wordSecond": "contratar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "capacitar", + "wordSecond": "capacitar", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ascender", + "wordSecond": "promover", + "createdAt": "2026-02-19T15:24:06.889Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_business_office_fr_it_B2.json b/output/2026_02_19_business_office_fr_it_B2.json new file mode 100644 index 0000000..dc6c909 --- /dev/null +++ b/output/2026_02_19_business_office_fr_it_B2.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:26:41.539Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Business & Office" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Business & Office" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "réunion", + "wordSecond": "riunione", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "présentation", + "wordSecond": "presentazione", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "négociation", + "wordSecond": "trattativa", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "contrat", + "wordSecond": "contratto", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "délai", + "wordSecond": "scadenza", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ordre du jour", + "wordSecond": "ordine del giorno", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "facture", + "wordSecond": "fattura", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "budget", + "wordSecond": "budget", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "stratégie", + "wordSecond": "strategia", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "objectif", + "wordSecond": "obiettivo", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "performance", + "wordSecond": "prestazione", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rendement", + "wordSecond": "rendimento", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "délégation", + "wordSecond": "delega", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rapport", + "wordSecond": "rapporto", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "analyse", + "wordSecond": "analisi", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "évaluation", + "wordSecond": "valutazione", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "recrutement", + "wordSecond": "reclutamento", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "formation", + "wordSecond": "formazione", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "licenciement", + "wordSecond": "licenziamento", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "démission", + "wordSecond": "dimissioni", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "collaborateur", + "wordSecond": "collaboratore", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "manager", + "wordSecond": "manager", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "directeur", + "wordSecond": "direttore", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "actionnaire", + "wordSecond": "azionista", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "concurrence", + "wordSecond": "concorrenza", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "marché", + "wordSecond": "mercato", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "client", + "wordSecond": "cliente", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fournisseur", + "wordSecond": "fornitore", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "partenaire", + "wordSecond": "partner", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "investissement", + "wordSecond": "investimento", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bénéfice", + "wordSecond": "profitto", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "perte", + "wordSecond": "perdita", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chiffre d'affaires", + "wordSecond": "fatturato", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "coût", + "wordSecond": "costo", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dépense", + "wordSecond": "spesa", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "revenu", + "wordSecond": "reddito", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "capital", + "wordSecond": "capitale", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "prêt", + "wordSecond": "prestito", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dette", + "wordSecond": "debito", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fusion", + "wordSecond": "fusione", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "acquisition", + "wordSecond": "acquisizione", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "filiale", + "wordSecond": "consociata", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "siège social", + "wordSecond": "sede centrale", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bureau", + "wordSecond": "ufficio", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "département", + "wordSecond": "dipartimento", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "équipe", + "wordSecond": "squadra", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "réseau", + "wordSecond": "rete", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "communication", + "wordSecond": "comunicazione", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "conférence", + "wordSecond": "conferenza", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "appel", + "wordSecond": "chiamata", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "courriel", + "wordSecond": "email", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mémoire", + "wordSecond": "memorandum", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "procès-verbal", + "wordSecond": "verbale", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "signature", + "wordSecond": "firma", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "approbation", + "wordSecond": "approvazione", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "décision", + "wordSecond": "decisione", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "responsabilité", + "wordSecond": "responsabilità", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "autorité", + "wordSecond": "autorità", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "hiérarchie", + "wordSecond": "gerarchia", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "politique", + "wordSecond": "politica", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "procédure", + "wordSecond": "procedura", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "règlement", + "wordSecond": "regolamento", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "conformité", + "wordSecond": "conformità", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "audit", + "wordSecond": "audit", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "risque", + "wordSecond": "rischio", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "assurance", + "wordSecond": "assicurazione", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "innovation", + "wordSecond": "innovazione", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "développement", + "wordSecond": "sviluppo", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "croissance", + "wordSecond": "crescita", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "stabilité", + "wordSecond": "stabilità", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "crise", + "wordSecond": "crisi", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "planification", + "wordSecond": "pianificazione", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "organisation", + "wordSecond": "organizzazione", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "coordination", + "wordSecond": "coordinamento", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "supervision", + "wordSecond": "supervisione", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "contrôle", + "wordSecond": "controllo", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "suivi", + "wordSecond": "monitoraggio", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "résultat", + "wordSecond": "risultato", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "indicateur", + "wordSecond": "indicatore", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "qualité", + "wordSecond": "qualità", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "efficacité", + "wordSecond": "efficienza", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "productivité", + "wordSecond": "produttività", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "compétence", + "wordSecond": "competenza", + "createdAt": "2026-02-19T15:26:41.539Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_business_office_pt_de_B2.json b/output/2026_02_19_business_office_pt_de_B2.json new file mode 100644 index 0000000..d5faa50 --- /dev/null +++ b/output/2026_02_19_business_office_pt_de_B2.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:25:14.136Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Business & Office" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Business & Office" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "reunião", + "wordSecond": "Besprechung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "apresentação", + "wordSecond": "Präsentation", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "negociação", + "wordSecond": "Verhandlung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "contrato", + "wordSecond": "Vertrag", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "recursos humanos", + "wordSecond": "Personalabteilung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "comunicação", + "wordSecond": "Kommunikation", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "prazos", + "wordSecond": "Fristen", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "agenda", + "wordSecond": "Tagesordnung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fatura", + "wordSecond": "Rechnung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "delegar", + "wordSecond": "delegieren", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "negociar", + "wordSecond": "verhandeln", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "relatar", + "wordSecond": "berichten", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "orçamento", + "wordSecond": "Budget", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lucro", + "wordSecond": "Gewinn", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "prejuízo", + "wordSecond": "Verlust", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "investimento", + "wordSecond": "Investition", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "acionista", + "wordSecond": "Aktionär", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "concorrência", + "wordSecond": "Wettbewerb", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mercado", + "wordSecond": "Markt", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "estratégia", + "wordSecond": "Strategie", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "meta", + "wordSecond": "Ziel", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "objetivo", + "wordSecond": "Zielvorgabe", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "planejamento", + "wordSecond": "Planung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "implementação", + "wordSecond": "Umsetzung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "avaliação", + "wordSecond": "Bewertung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "desempenho", + "wordSecond": "Leistung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "feedback", + "wordSecond": "Rückmeldung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "treinamento", + "wordSecond": "Schulung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "recrutamento", + "wordSecond": "Rekrutierung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "seleção", + "wordSecond": "Auswahl", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "currículo", + "wordSecond": "Lebenslauf", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "entrevista", + "wordSecond": "Vorstellungsgespräch", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "salário", + "wordSecond": "Gehalt", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "benefícios", + "wordSecond": "Leistungen", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cargo", + "wordSecond": "Position", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "promoção", + "wordSecond": "Beförderung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "demissão", + "wordSecond": "Kündigung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "aposentadoria", + "wordSecond": "Rente", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chefe", + "wordSecond": "Vorgesetzter", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "colega", + "wordSecond": "Kollege", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "equipe", + "wordSecond": "Team", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "departamento", + "wordSecond": "Abteilung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sede", + "wordSecond": "Hauptsitz", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "filial", + "wordSecond": "Niederlassung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fusão", + "wordSecond": "Fusion", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "aquisição", + "wordSecond": "Übernahme", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "parceria", + "wordSecond": "Partnerschaft", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fornecedor", + "wordSecond": "Lieferant", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cliente", + "wordSecond": "Kunde", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "consumidor", + "wordSecond": "Verbraucher", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "venda", + "wordSecond": "Verkauf", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "compra", + "wordSecond": "Einkauf", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "marketing", + "wordSecond": "Marketing", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "publicidade", + "wordSecond": "Werbung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "marca", + "wordSecond": "Marke", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "produto", + "wordSecond": "Produkt", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "serviço", + "wordSecond": "Dienstleistung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "qualidade", + "wordSecond": "Qualität", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "inovação", + "wordSecond": "Innovation", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tecnologia", + "wordSecond": "Technologie", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sistema", + "wordSecond": "System", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "software", + "wordSecond": "Software", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "hardware", + "wordSecond": "Hardware", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "rede", + "wordSecond": "Netzwerk", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "segurança", + "wordSecond": "Sicherheit", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "conferência", + "wordSecond": "Konferenz", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "teleconferência", + "wordSecond": "Telefonkonferenz", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "videoconferência", + "wordSecond": "Videokonferenz", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "memorando", + "wordSecond": "Mitteilung", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "relatório", + "wordSecond": "Bericht", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "minuta", + "wordSecond": "Protokoll", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "apresentar", + "wordSecond": "präsentieren", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "propor", + "wordSecond": "vorschlagen", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "discutir", + "wordSecond": "diskutieren", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "decidir", + "wordSecond": "entscheiden", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "aprovar", + "wordSecond": "genehmigen", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "rejeitar", + "wordSecond": "ablehnen", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "analisar", + "wordSecond": "analysieren", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "resolver", + "wordSecond": "lösen", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "gerenciar", + "wordSecond": "verwalten", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "supervisionar", + "wordSecond": "überwachen", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "coordenar", + "wordSecond": "koordinieren", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "colaborar", + "wordSecond": "zusammenarbeiten", + "createdAt": "2026-02-19T15:25:14.136Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_business_office_pt_fr_B2.json b/output/2026_02_19_business_office_pt_fr_B2.json new file mode 100644 index 0000000..340d920 --- /dev/null +++ b/output/2026_02_19_business_office_pt_fr_B2.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:25:30.825Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Business & Office" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Business & Office" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "prazo", + "wordSecond": "délai", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "agenda", + "wordSecond": "ordre du jour", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fatura", + "wordSecond": "facture", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "delegar", + "wordSecond": "déléguer", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "negociar", + "wordSecond": "négocier", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "relatar", + "wordSecond": "rapporter", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "reunião", + "wordSecond": "réunion", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "apresentação", + "wordSecond": "présentation", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "contrato", + "wordSecond": "contrat", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "recursos humanos", + "wordSecond": "ressources humaines", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "comunicação corporativa", + "wordSecond": "communication d'entreprise", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estratégia", + "wordSecond": "stratégie", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "orçamento", + "wordSecond": "budget", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lucro", + "wordSecond": "bénéfice", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "prejuízo", + "wordSecond": "perte", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "investimento", + "wordSecond": "investissement", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "acionista", + "wordSecond": "actionnaire", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mercado", + "wordSecond": "marché", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "concorrência", + "wordSecond": "concurrence", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "produtividade", + "wordSecond": "productivité", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "eficiência", + "wordSecond": "efficacité", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "qualidade", + "wordSecond": "qualité", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "gestão", + "wordSecond": "gestion", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "liderança", + "wordSecond": "leadership", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "equipe", + "wordSecond": "équipe", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "colaborador", + "wordSecond": "collaborateur", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chefe", + "wordSecond": "chef", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "subordinado", + "wordSecond": "subordonné", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "decisão", + "wordSecond": "décision", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "problema", + "wordSecond": "problème", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "solução", + "wordSecond": "solution", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "objetivo", + "wordSecond": "objectif", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "meta", + "wordSecond": "cible", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "resultado", + "wordSecond": "résultat", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "desempenho", + "wordSecond": "performance", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "avaliação", + "wordSecond": "évaluation", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "feedback", + "wordSecond": "retour", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "treinamento", + "wordSecond": "formation", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "desenvolvimento", + "wordSecond": "développement", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "recrutamento", + "wordSecond": "recrutement", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "seleção", + "wordSecond": "sélection", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "entrevista", + "wordSecond": "entretien", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "salário", + "wordSecond": "salaire", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "benefício", + "wordSecond": "avantage", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cargo", + "wordSecond": "poste", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "função", + "wordSecond": "fonction", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "responsabilidade", + "wordSecond": "responsabilité", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tarefa", + "wordSecond": "tâche", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "projeto", + "wordSecond": "projet", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "planejamento", + "wordSecond": "planification", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cronograma", + "wordSecond": "calendrier", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "relatório", + "wordSecond": "rapport", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "análise", + "wordSecond": "analyse", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dados", + "wordSecond": "données", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estatística", + "wordSecond": "statistique", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tendência", + "wordSecond": "tendance", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "inovação", + "wordSecond": "innovation", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tecnologia", + "wordSecond": "technologie", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sistema", + "wordSecond": "système", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "processo", + "wordSecond": "processus", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "procedimento", + "wordSecond": "procédure", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "política", + "wordSecond": "politique", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "regulamento", + "wordSecond": "règlement", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "conformidade", + "wordSecond": "conformité", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "auditoria", + "wordSecond": "audit", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "risco", + "wordSecond": "risque", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "segurança", + "wordSecond": "sécurité", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "confidencialidade", + "wordSecond": "confidentialité", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "acordo", + "wordSecond": "accord", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "parceria", + "wordSecond": "partenariat", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cliente", + "wordSecond": "client", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fornecedor", + "wordSecond": "fournisseur", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "serviço", + "wordSecond": "service", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "produto", + "wordSecond": "produit", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "venda", + "wordSecond": "vente", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "compra", + "wordSecond": "achat", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "negociação", + "wordSecond": "négociation", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "concessão", + "wordSecond": "concession", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "compromisso", + "wordSecond": "engagement", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "revisão", + "wordSecond": "révision", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "implementação", + "wordSecond": "mise en œuvre", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "monitoramento", + "wordSecond": "suivi", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "controle", + "wordSecond": "contrôle", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "supervisão", + "wordSecond": "supervision", + "createdAt": "2026-02-19T15:25:30.825Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_business_office_pt_it_B2.json b/output/2026_02_19_business_office_pt_it_B2.json new file mode 100644 index 0000000..1e583d0 --- /dev/null +++ b/output/2026_02_19_business_office_pt_it_B2.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:25:47.766Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Business & Office" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Business & Office" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "reunião", + "wordSecond": "riunione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "apresentação", + "wordSecond": "presentazione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "negociação", + "wordSecond": "negoziazione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "contrato", + "wordSecond": "contratto", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "prazo", + "wordSecond": "scadenza", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "agenda", + "wordSecond": "agenda", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fatura", + "wordSecond": "fattura", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "orçamento", + "wordSecond": "bilancio", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "relatório", + "wordSecond": "rapporto", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "delegar", + "wordSecond": "delegare", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "negociar", + "wordSecond": "negoziare", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "relatar", + "wordSecond": "riportare", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gerenciar", + "wordSecond": "gestire", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "supervisionar", + "wordSecond": "sorvegliare", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "contratar", + "wordSecond": "assumere", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "demitir", + "wordSecond": "licenziare", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "treinamento", + "wordSecond": "formazione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "desempenho", + "wordSecond": "prestazione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "avaliação", + "wordSecond": "valutazione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "salário", + "wordSecond": "stipendio", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "benefício", + "wordSecond": "beneficio", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cargo", + "wordSecond": "posizione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "departamento", + "wordSecond": "dipartimento", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "escritório", + "wordSecond": "ufficio", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "conferência", + "wordSecond": "conferenza", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "teleconferência", + "wordSecond": "teleconferenza", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "memorando", + "wordSecond": "promemoria", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "correspondência", + "wordSecond": "corrispondenza", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "protocolo", + "wordSecond": "protocollo", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estratégia", + "wordSecond": "strategia", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "objetivo", + "wordSecond": "obiettivo", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "meta", + "wordSecond": "meta", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "planejamento", + "wordSecond": "pianificazione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "implementação", + "wordSecond": "implementazione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "executivo", + "wordSecond": "esecutivo", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "diretor", + "wordSecond": "direttore", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gerente", + "wordSecond": "manager", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "colaborador", + "wordSecond": "collaboratore", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "equipe", + "wordSecond": "squadra", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cliente", + "wordSecond": "cliente", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fornecedor", + "wordSecond": "fornitore", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "parceiro", + "wordSecond": "partner", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "concorrente", + "wordSecond": "concorrente", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mercado", + "wordSecond": "mercato", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "venda", + "wordSecond": "vendita", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "compra", + "wordSecond": "acquisto", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lucro", + "wordSecond": "profitto", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "prejuízo", + "wordSecond": "perdita", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "investimento", + "wordSecond": "investimento", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "capital", + "wordSecond": "capitale", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ações", + "wordSecond": "azioni", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fusão", + "wordSecond": "fusione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "aquisição", + "wordSecond": "acquisizione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "auditoria", + "wordSecond": "revisione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "conformidade", + "wordSecond": "conformità", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ética", + "wordSecond": "etica", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sustentabilidade", + "wordSecond": "sostenibilità", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "inovação", + "wordSecond": "innovazione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tecnologia", + "wordSecond": "tecnologia", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "software", + "wordSecond": "software", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "hardware", + "wordSecond": "hardware", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "rede", + "wordSecond": "rete", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "segurança", + "wordSecond": "sicurezza", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "confidencialidade", + "wordSecond": "riservatezza", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "propriedade intelectual", + "wordSecond": "proprietà intellettuale", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "patente", + "wordSecond": "brevetto", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "marca registrada", + "wordSecond": "marchio registrato", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "logística", + "wordSecond": "logistica", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estoque", + "wordSecond": "magazzino", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "distribuição", + "wordSecond": "distribuzione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "exportação", + "wordSecond": "esportazione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "importação", + "wordSecond": "importazione", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tarifa", + "wordSecond": "tariffa", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "imposto", + "wordSecond": "tassa", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "subsídio", + "wordSecond": "sussidio", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "reembolso", + "wordSecond": "rimborso", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "despesa", + "wordSecond": "spesa", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "receita", + "wordSecond": "reddito", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "balanço patrimonial", + "wordSecond": "bilancio patrimoniale", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "demonstração de resultados", + "wordSecond": "rendiconto finanziario", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fluxo de caixa", + "wordSecond": "flusso di cassa", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "débito", + "wordSecond": "debito", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "crédito", + "wordSecond": "credito", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "juros", + "wordSecond": "interessi", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "empréstimo", + "wordSecond": "prestito", + "createdAt": "2026-02-19T15:25:47.766Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_clothing_fashion_de_fr_A2.json b/output/2026_02_19_clothing_fashion_de_fr_A2.json new file mode 100644 index 0000000..29646a9 --- /dev/null +++ b/output/2026_02_19_clothing_fashion_de_fr_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:29:19.314Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Clothing & Fashion" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Clothing & Fashion" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Hemd", + "wordSecond": "la chemise", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das T-Shirt", + "wordSecond": "le t-shirt", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Bluse", + "wordSecond": "le chemisier", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Hose", + "wordSecond": "le pantalon", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Jeans", + "wordSecond": "le jean", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Rock", + "wordSecond": "la jupe", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Kleid", + "wordSecond": "la robe", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Pullover", + "wordSecond": "le pull", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Jacke", + "wordSecond": "la veste", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Mantel", + "wordSecond": "le manteau", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Schuhe", + "wordSecond": "les chaussures", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Turnschuhe", + "wordSecond": "les baskets", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Stiefel", + "wordSecond": "les bottes", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Sandalen", + "wordSecond": "les sandales", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Socken", + "wordSecond": "les chaussettes", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Unterwäsche", + "wordSecond": "les sous-vêtements", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Schlafanzug", + "wordSecond": "le pyjama", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Badeanzug", + "wordSecond": "le maillot de bain", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Gürtel", + "wordSecond": "la ceinture", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Schal", + "wordSecond": "l'écharpe", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Hut", + "wordSecond": "le chapeau", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Mütze", + "wordSecond": "le bonnet", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Handschuhe", + "wordSecond": "les gants", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Tasche", + "wordSecond": "le sac", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Handtasche", + "wordSecond": "le sac à main", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Rucksack", + "wordSecond": "le sac à dos", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Uhr", + "wordSecond": "la montre", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Brille", + "wordSecond": "les lunettes", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Sonnenbrille", + "wordSecond": "les lunettes de soleil", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Schmuck", + "wordSecond": "les bijoux", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Kette", + "wordSecond": "le collier", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Ring", + "wordSecond": "la bague", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Ohrringe", + "wordSecond": "les boucles d'oreilles", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Regenmantel", + "wordSecond": "l'imperméable", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Anzug", + "wordSecond": "le costume", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Krawatte", + "wordSecond": "la cravate", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Fliege", + "wordSecond": "le nœud papillon", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Overall", + "wordSecond": "la combinaison", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Bademantel", + "wordSecond": "le peignoir", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Strumpfhose", + "wordSecond": "le collant", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Strümpfe", + "wordSecond": "les bas", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Kopftuch", + "wordSecond": "le foulard", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Schürze", + "wordSecond": "le tablier", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Weste", + "wordSecond": "le gilet", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Leder", + "wordSecond": "le cuir", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Baumwolle", + "wordSecond": "le coton", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Wolle", + "wordSecond": "la laine", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Seide", + "wordSecond": "la soie", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Stoff", + "wordSecond": "le tissu", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "eng", + "wordSecond": "serré", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "weit", + "wordSecond": "large", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "lang", + "wordSecond": "long", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "kurz", + "wordSecond": "court", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "elegant", + "wordSecond": "élégant", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "lässig", + "wordSecond": "décontracté", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "bequem", + "wordSecond": "confortable", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "neu", + "wordSecond": "neuf", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "alt", + "wordSecond": "vieux", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "sauber", + "wordSecond": "propre", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schmutzig", + "wordSecond": "sale", + "createdAt": "2026-02-19T15:29:19.314Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_clothing_fashion_de_it_A2.json b/output/2026_02_19_clothing_fashion_de_it_A2.json new file mode 100644 index 0000000..de2754b --- /dev/null +++ b/output/2026_02_19_clothing_fashion_de_it_A2.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:29:33.845Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Clothing & Fashion" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Clothing & Fashion" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Hemd", + "wordSecond": "la camicia", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Hose", + "wordSecond": "i pantaloni", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Kleid", + "wordSecond": "il vestito", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Jacke", + "wordSecond": "la giacca", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Schuhe", + "wordSecond": "le scarpe", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Pullover", + "wordSecond": "il maglione", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Socken", + "wordSecond": "i calzini", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Unterwäsche", + "wordSecond": "la biancheria intima", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Rock", + "wordSecond": "la gonna", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Bluse", + "wordSecond": "la camicetta", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Mantel", + "wordSecond": "il cappotto", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Stiefel", + "wordSecond": "gli stivali", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Sandalen", + "wordSecond": "i sandali", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Turnschuhe", + "wordSecond": "le scarpe da ginnastica", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Gürtel", + "wordSecond": "la cintura", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Schal", + "wordSecond": "la sciarpa", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Hut", + "wordSecond": "il cappello", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Mütze", + "wordSecond": "il berretto", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Handschuhe", + "wordSecond": "i guanti", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Tasche", + "wordSecond": "la tasca", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Handtasche", + "wordSecond": "la borsa", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Rucksack", + "wordSecond": "lo zaino", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Uhr", + "wordSecond": "l'orologio", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Brille", + "wordSecond": "gli occhiali", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Schmuck", + "wordSecond": "i gioielli", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Kette", + "wordSecond": "la collana", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Ring", + "wordSecond": "l'anello", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Ohrringe", + "wordSecond": "gli orecchini", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Armbanduhr", + "wordSecond": "l'orologio da polso", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Sonnenbrille", + "wordSecond": "gli occhiali da sole", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Badeanzug", + "wordSecond": "il costume da bagno", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Badehose", + "wordSecond": "il costume da bagno", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Schlafanzug", + "wordSecond": "il pigiama", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Anzug", + "wordSecond": "l'abito", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Krawatte", + "wordSecond": "la cravatta", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Sakko", + "wordSecond": "la giacca", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Jeans", + "wordSecond": "i jeans", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das T-Shirt", + "wordSecond": "la maglietta", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Shorts", + "wordSecond": "i pantaloncini", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Overall", + "wordSecond": "la tuta", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Strumpfhose", + "wordSecond": "i collant", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Strümpfe", + "wordSecond": "le calze", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Regenmantel", + "wordSecond": "l'impermeabile", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Bademantel", + "wordSecond": "l'accappatoio", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Hausschuhe", + "wordSecond": "le pantofole", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Weste", + "wordSecond": "il gilet", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Kostüm", + "wordSecond": "il completo", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Kleidungsstück", + "wordSecond": "l'indumento", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Mode", + "wordSecond": "la moda", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Größe", + "wordSecond": "la taglia", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Farbe", + "wordSecond": "il colore", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Baumwolle", + "wordSecond": "il cotone", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Seide", + "wordSecond": "la seta", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Wolle", + "wordSecond": "la lana", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Stoff", + "wordSecond": "il tessuto", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "eng", + "wordSecond": "stretto", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "weit", + "wordSecond": "largo", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "elegant", + "wordSecond": "elegante", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "lässig", + "wordSecond": "casual", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "bequem", + "wordSecond": "comodo", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "schön", + "wordSecond": "bello", + "createdAt": "2026-02-19T15:29:33.845Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_clothing_fashion_en_de_A2.json b/output/2026_02_19_clothing_fashion_en_de_A2.json new file mode 100644 index 0000000..ed4a39b --- /dev/null +++ b/output/2026_02_19_clothing_fashion_en_de_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:27:15.312Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Clothing & Fashion" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Clothing & Fashion" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shirt", + "wordSecond": "Hemd", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "trousers", + "wordSecond": "Hose", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "dress", + "wordSecond": "Kleid", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "jacket", + "wordSecond": "Jacke", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shoes", + "wordSecond": "Schuhe", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "skirt", + "wordSecond": "Rock", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "blouse", + "wordSecond": "Bluse", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "T-shirt", + "wordSecond": "T-Shirt", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "jeans", + "wordSecond": "Jeans", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sweater", + "wordSecond": "Pullover", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "coat", + "wordSecond": "Mantel", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "socks", + "wordSecond": "Socken", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "underwear", + "wordSecond": "Unterwäsche", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pyjamas", + "wordSecond": "Schlafanzug", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "boots", + "wordSecond": "Stiefel", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sandals", + "wordSecond": "Sandalen", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "trainers", + "wordSecond": "Turnschuhe", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hat", + "wordSecond": "Hut", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cap", + "wordSecond": "Mütze", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "scarf", + "wordSecond": "Schal", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "gloves", + "wordSecond": "Handschuhe", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "belt", + "wordSecond": "Gürtel", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bag", + "wordSecond": "Tasche", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "handbag", + "wordSecond": "Handtasche", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "backpack", + "wordSecond": "Rucksack", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "watch", + "wordSecond": "Uhr", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "glasses", + "wordSecond": "Brille", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sunglasses", + "wordSecond": "Sonnenbrille", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "jewellery", + "wordSecond": "Schmuck", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "necklace", + "wordSecond": "Halskette", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ring", + "wordSecond": "Ring", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "earrings", + "wordSecond": "Ohrringe", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bracelet", + "wordSecond": "Armband", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tie", + "wordSecond": "Krawatte", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "suit", + "wordSecond": "Anzug", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shorts", + "wordSecond": "Shorts", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tights", + "wordSecond": "Strumpfhose", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stockings", + "wordSecond": "Strümpfe", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "raincoat", + "wordSecond": "Regenmantel", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "umbrella", + "wordSecond": "Regenschirm", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cotton", + "wordSecond": "Baumwolle", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wool", + "wordSecond": "Wolle", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "silk", + "wordSecond": "Seide", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "leather", + "wordSecond": "Leder", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "denim", + "wordSecond": "Jeansstoff", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "polyester", + "wordSecond": "Polyester", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tight", + "wordSecond": "eng", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "loose", + "wordSecond": "weit", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "long", + "wordSecond": "lang", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "short", + "wordSecond": "kurz", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "big", + "wordSecond": "groß", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "small", + "wordSecond": "klein", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "new", + "wordSecond": "neu", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "old", + "wordSecond": "alt", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "clean", + "wordSecond": "sauber", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "dirty", + "wordSecond": "schmutzig", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "elegant", + "wordSecond": "elegant", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "casual", + "wordSecond": "lässig", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "comfortable", + "wordSecond": "bequem", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fashionable", + "wordSecond": "modisch", + "createdAt": "2026-02-19T15:27:15.312Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_clothing_fashion_en_es_A2.json b/output/2026_02_19_clothing_fashion_en_es_A2.json new file mode 100644 index 0000000..3c92aac --- /dev/null +++ b/output/2026_02_19_clothing_fashion_en_es_A2.json @@ -0,0 +1,786 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:26:52.697Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Clothing & Fashion" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Clothing & Fashion" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shirt", + "wordSecond": "camisa", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "trousers", + "wordSecond": "pantalones", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dress", + "wordSecond": "vestido", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "jacket", + "wordSecond": "chaqueta", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shoes", + "wordSecond": "zapatos", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "belt", + "wordSecond": "cinturón", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "scarf", + "wordSecond": "bufanda", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hat", + "wordSecond": "sombrero", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bag", + "wordSecond": "bolso", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "watch", + "wordSecond": "reloj", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cotton", + "wordSecond": "algodón", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "silk", + "wordSecond": "seda", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wool", + "wordSecond": "lana", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tight", + "wordSecond": "ajustado", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "loose", + "wordSecond": "holgado", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "elegant", + "wordSecond": "elegante", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "casual", + "wordSecond": "informal", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "skirt", + "wordSecond": "falda", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "blouse", + "wordSecond": "blusa", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sweater", + "wordSecond": "suéter", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "coat", + "wordSecond": "abrigo", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "jeans", + "wordSecond": "vaqueros", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shorts", + "wordSecond": "pantalones cortos", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "socks", + "wordSecond": "calcetines", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "underwear", + "wordSecond": "ropa interior", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tie", + "wordSecond": "corbata", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "gloves", + "wordSecond": "guantes", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "boots", + "wordSecond": "botas", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sandals", + "wordSecond": "sandalias", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sneakers", + "wordSecond": "zapatillas", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "raincoat", + "wordSecond": "impermeable", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pajamas", + "wordSecond": "pijama", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "suit", + "wordSecond": "traje", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "t-shirt", + "wordSecond": "camiseta", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "polo shirt", + "wordSecond": "polo", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hoodie", + "wordSecond": "sudadera con capucha", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "leather", + "wordSecond": "cuero", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "denim", + "wordSecond": "mezclilla", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "linen", + "wordSecond": "lino", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "polyester", + "wordSecond": "poliéster", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "comfortable", + "wordSecond": "cómodo", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "warm", + "wordSecond": "cálido", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "light", + "wordSecond": "ligero", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dark", + "wordSecond": "oscuro", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bright", + "wordSecond": "brillante", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "long", + "wordSecond": "largo", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "short", + "wordSecond": "corto", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "new", + "wordSecond": "nuevo", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "old", + "wordSecond": "viejo", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "clean", + "wordSecond": "limpio", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dirty", + "wordSecond": "sucio", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "expensive", + "wordSecond": "caro", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cheap", + "wordSecond": "barato", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "big", + "wordSecond": "grande", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "small", + "wordSecond": "pequeño", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fashion", + "wordSecond": "moda", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "size", + "wordSecond": "talla", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "color", + "wordSecond": "color", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "style", + "wordSecond": "estilo", + "createdAt": "2026-02-19T15:26:52.697Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_clothing_fashion_en_fr_A2.json b/output/2026_02_19_clothing_fashion_en_fr_A2.json new file mode 100644 index 0000000..1195fac --- /dev/null +++ b/output/2026_02_19_clothing_fashion_en_fr_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:27:26.941Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Clothing & Fashion" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Clothing & Fashion" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shirt", + "wordSecond": "chemise", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "trousers", + "wordSecond": "pantalon", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "dress", + "wordSecond": "robe", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "jacket", + "wordSecond": "veste", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shoes", + "wordSecond": "chaussures", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "socks", + "wordSecond": "chaussettes", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "underwear", + "wordSecond": "sous-vêtements", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "skirt", + "wordSecond": "jupe", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "coat", + "wordSecond": "manteau", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sweater", + "wordSecond": "pull", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "t-shirt", + "wordSecond": "t-shirt", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "jeans", + "wordSecond": "jean", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shorts", + "wordSecond": "short", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "blouse", + "wordSecond": "chemisier", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "suit", + "wordSecond": "costume", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tie", + "wordSecond": "cravate", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "belt", + "wordSecond": "ceinture", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "scarf", + "wordSecond": "écharpe", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hat", + "wordSecond": "chapeau", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cap", + "wordSecond": "casquette", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "gloves", + "wordSecond": "gants", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bag", + "wordSecond": "sac", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "handbag", + "wordSecond": "sac à main", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "backpack", + "wordSecond": "sac à dos", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "watch", + "wordSecond": "montre", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "glasses", + "wordSecond": "lunettes", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sunglasses", + "wordSecond": "lunettes de soleil", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "jewellery", + "wordSecond": "bijoux", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "necklace", + "wordSecond": "collier", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ring", + "wordSecond": "bague", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "earrings", + "wordSecond": "boucles d'oreilles", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bracelet", + "wordSecond": "bracelet", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "boots", + "wordSecond": "bottes", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sandals", + "wordSecond": "sandales", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "trainers", + "wordSecond": "baskets", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "heels", + "wordSecond": "talons", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pyjamas", + "wordSecond": "pyjama", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "swimsuit", + "wordSecond": "maillot de bain", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "raincoat", + "wordSecond": "imperméable", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "umbrella", + "wordSecond": "parapluie", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cotton", + "wordSecond": "coton", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "silk", + "wordSecond": "soie", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wool", + "wordSecond": "laine", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "leather", + "wordSecond": "cuir", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "denim", + "wordSecond": "jean", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "linen", + "wordSecond": "lin", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tight", + "wordSecond": "serré", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "loose", + "wordSecond": "large", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "elegant", + "wordSecond": "élégant", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "casual", + "wordSecond": "décontracté", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "comfortable", + "wordSecond": "confortable", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "warm", + "wordSecond": "chaud", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "light", + "wordSecond": "léger", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "dark", + "wordSecond": "foncé", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bright", + "wordSecond": "clair", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "new", + "wordSecond": "nouveau", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "old", + "wordSecond": "vieux", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "clean", + "wordSecond": "propre", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "dirty", + "wordSecond": "sale", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fashion", + "wordSecond": "mode", + "createdAt": "2026-02-19T15:27:26.941Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_clothing_fashion_en_it_A2.json b/output/2026_02_19_clothing_fashion_en_it_A2.json new file mode 100644 index 0000000..3541731 --- /dev/null +++ b/output/2026_02_19_clothing_fashion_en_it_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:27:38.584Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Clothing & Fashion" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Clothing & Fashion" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shirt", + "wordSecond": "camicia", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "trousers", + "wordSecond": "pantaloni", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dress", + "wordSecond": "vestito", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "jacket", + "wordSecond": "giacca", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shoes", + "wordSecond": "scarpe", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "belt", + "wordSecond": "cintura", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "scarf", + "wordSecond": "sciarpa", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hat", + "wordSecond": "cappello", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bag", + "wordSecond": "borsa", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "watch", + "wordSecond": "orologio", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cotton", + "wordSecond": "cotone", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "silk", + "wordSecond": "seta", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wool", + "wordSecond": "lana", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tight", + "wordSecond": "stretto", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "loose", + "wordSecond": "largo", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "elegant", + "wordSecond": "elegante", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "casual", + "wordSecond": "casual", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "skirt", + "wordSecond": "gonna", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "blouse", + "wordSecond": "camicetta", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sweater", + "wordSecond": "maglione", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "coat", + "wordSecond": "cappotto", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "boots", + "wordSecond": "stivali", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "socks", + "wordSecond": "calzini", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "underwear", + "wordSecond": "biancheria intima", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pyjamas", + "wordSecond": "pigiama", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "t-shirt", + "wordSecond": "maglietta", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "jeans", + "wordSecond": "jeans", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shorts", + "wordSecond": "pantaloncini", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "suit", + "wordSecond": "abito", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tie", + "wordSecond": "cravatta", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "gloves", + "wordSecond": "guanti", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "umbrella", + "wordSecond": "ombrello", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sunglasses", + "wordSecond": "occhiali da sole", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "jewellery", + "wordSecond": "gioielli", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "necklace", + "wordSecond": "collana", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "earrings", + "wordSecond": "orecchini", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ring", + "wordSecond": "anello", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bracelet", + "wordSecond": "braccialetto", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "handbag", + "wordSecond": "borsetta", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "backpack", + "wordSecond": "zaino", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "raincoat", + "wordSecond": "impermeabile", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "swimsuit", + "wordSecond": "costume da bagno", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "trainers", + "wordSecond": "scarpe da ginnastica", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sandals", + "wordSecond": "sandali", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "high heels", + "wordSecond": "tacchi alti", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "leather", + "wordSecond": "pelle", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "denim", + "wordSecond": "denim", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "linen", + "wordSecond": "lino", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "polyester", + "wordSecond": "poliestere", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "velvet", + "wordSecond": "velluto", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "long", + "wordSecond": "lungo", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "short", + "wordSecond": "corto", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "new", + "wordSecond": "nuovo", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "old", + "wordSecond": "vecchio", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "clean", + "wordSecond": "pulito", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dirty", + "wordSecond": "sporco", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "comfortable", + "wordSecond": "comodo", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "uncomfortable", + "wordSecond": "scomodo", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fashionable", + "wordSecond": "alla moda", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "colourful", + "wordSecond": "colorato", + "createdAt": "2026-02-19T15:27:38.584Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_clothing_fashion_en_pt_A2.json b/output/2026_02_19_clothing_fashion_en_pt_A2.json new file mode 100644 index 0000000..6df9de9 --- /dev/null +++ b/output/2026_02_19_clothing_fashion_en_pt_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:27:04.140Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Clothing & Fashion" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Clothing & Fashion" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shirt", + "wordSecond": "camisa", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "trousers", + "wordSecond": "calça", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dress", + "wordSecond": "vestido", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "jacket", + "wordSecond": "jaqueta", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shoes", + "wordSecond": "sapatos", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "belt", + "wordSecond": "cinto", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "scarf", + "wordSecond": "cachecol", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hat", + "wordSecond": "chapéu", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bag", + "wordSecond": "bolsa", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "watch", + "wordSecond": "relógio", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cotton", + "wordSecond": "algodão", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "silk", + "wordSecond": "seda", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wool", + "wordSecond": "lã", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tight", + "wordSecond": "apertado", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "loose", + "wordSecond": "folgado", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "elegant", + "wordSecond": "elegante", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "casual", + "wordSecond": "casual", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "skirt", + "wordSecond": "saia", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "blouse", + "wordSecond": "blusa", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sweater", + "wordSecond": "suéter", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "coat", + "wordSecond": "casaco", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "boots", + "wordSecond": "botas", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sneakers", + "wordSecond": "tênis", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "socks", + "wordSecond": "meias", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "underwear", + "wordSecond": "roupa íntima", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "jeans", + "wordSecond": "jeans", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "t-shirt", + "wordSecond": "camiseta", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shorts", + "wordSecond": "bermuda", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pajamas", + "wordSecond": "pijama", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "gloves", + "wordSecond": "luvas", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sunglasses", + "wordSecond": "óculos de sol", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "umbrella", + "wordSecond": "guarda-chuva", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wallet", + "wordSecond": "carteira", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "necklace", + "wordSecond": "colar", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "earrings", + "wordSecond": "brincos", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ring", + "wordSecond": "anel", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bracelet", + "wordSecond": "pulseira", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "handbag", + "wordSecond": "bolsa de mão", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "backpack", + "wordSecond": "mochila", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "suit", + "wordSecond": "terno", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tie", + "wordSecond": "gravata", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sweatshirt", + "wordSecond": "moletom", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hoodie", + "wordSecond": "blusão com capuz", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "raincoat", + "wordSecond": "capade chuva", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sandals", + "wordSecond": "sandálias", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "high heels", + "wordSecond": "salto alto", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "flip-flops", + "wordSecond": "chinelo", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "leather", + "wordSecond": "couro", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "denim", + "wordSecond": "jeans", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "linen", + "wordSecond": "linho", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "polyester", + "wordSecond": "poliéster", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "comfortable", + "wordSecond": "confortável", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "new", + "wordSecond": "novo", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "old", + "wordSecond": "velho", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "clean", + "wordSecond": "limpo", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dirty", + "wordSecond": "sujo", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "long", + "wordSecond": "longo", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "short", + "wordSecond": "curto", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dark", + "wordSecond": "escuro", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "light", + "wordSecond": "claro", + "createdAt": "2026-02-19T15:27:04.140Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_clothing_fashion_es_de_A2.json b/output/2026_02_19_clothing_fashion_es_de_A2.json new file mode 100644 index 0000000..a8ab9bc --- /dev/null +++ b/output/2026_02_19_clothing_fashion_es_de_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:28:02.794Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Clothing & Fashion" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Clothing & Fashion" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "camisa", + "wordSecond": "Hemd", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pantalones", + "wordSecond": "Hose", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "vestido", + "wordSecond": "Kleid", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "chaqueta", + "wordSecond": "Jacke", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "zapatos", + "wordSecond": "Schuhe", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "calcetines", + "wordSecond": "Socken", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "falda", + "wordSecond": "Rock", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "suéter", + "wordSecond": "Pullover", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "camiseta", + "wordSecond": "T-Shirt", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "abrigo", + "wordSecond": "Mantel", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pantalones cortos", + "wordSecond": "Shorts", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "traje", + "wordSecond": "Anzug", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "blusa", + "wordSecond": "Bluse", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "jeans", + "wordSecond": "Jeans", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "botas", + "wordSecond": "Stiefel", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "zapatillas", + "wordSecond": "Turnschuhe", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sombrero", + "wordSecond": "Hut", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "gorra", + "wordSecond": "Mütze", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "bufanda", + "wordSecond": "Schal", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "guantes", + "wordSecond": "Handschuhe", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cinturón", + "wordSecond": "Gürtel", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "bolso", + "wordSecond": "Tasche", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mochila", + "wordSecond": "Rucksack", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "reloj", + "wordSecond": "Uhr", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "gafas", + "wordSecond": "Brille", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pendientes", + "wordSecond": "Ohrringe", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "collar", + "wordSecond": "Halskette", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pulsera", + "wordSecond": "Armband", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "anillo", + "wordSecond": "Ring", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pañuelo", + "wordSecond": "Taschentuch", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pijama", + "wordSecond": "Schlafanzug", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "bata", + "wordSecond": "Morgenrock", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ropa interior", + "wordSecond": "Unterwäsche", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "calcetines", + "wordSecond": "Socken", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "medias", + "wordSecond": "Strumpfhose", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "corbata", + "wordSecond": "Krawatte", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "chaleco", + "wordSecond": "Weste", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "impermeable", + "wordSecond": "Regenmantel", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "paraguas", + "wordSecond": "Regenschirm", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "gafas de sol", + "wordSecond": "Sonnenbrille", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "algodón", + "wordSecond": "Baumwolle", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lana", + "wordSecond": "Wolle", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "seda", + "wordSecond": "Seide", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cuero", + "wordSecond": "Leder", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "poliéster", + "wordSecond": "Polyester", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lino", + "wordSecond": "Leinen", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "apretado", + "wordSecond": "eng", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "holgado", + "wordSecond": "weit", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "corto", + "wordSecond": "kurz", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "largo", + "wordSecond": "lang", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "elegante", + "wordSecond": "elegant", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "casual", + "wordSecond": "lässig", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cómodo", + "wordSecond": "bequem", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "nuevo", + "wordSecond": "neu", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "viejo", + "wordSecond": "alt", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "limpio", + "wordSecond": "sauber", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sucio", + "wordSecond": "schmutzig", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "barato", + "wordSecond": "billig", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "caro", + "wordSecond": "teuer", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "color", + "wordSecond": "Farbe", + "createdAt": "2026-02-19T15:28:02.794Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_clothing_fashion_es_fr_A2.json b/output/2026_02_19_clothing_fashion_es_fr_A2.json new file mode 100644 index 0000000..302abe9 --- /dev/null +++ b/output/2026_02_19_clothing_fashion_es_fr_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:28:15.280Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Clothing & Fashion" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Clothing & Fashion" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "camisa", + "wordSecond": "chemise", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pantalones", + "wordSecond": "pantalon", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vestido", + "wordSecond": "robe", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "chaqueta", + "wordSecond": "veste", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "zapatos", + "wordSecond": "chaussures", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cinturón", + "wordSecond": "ceinture", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "bufanda", + "wordSecond": "écharpe", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sombrero", + "wordSecond": "chapeau", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "bolso", + "wordSecond": "sac", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "reloj", + "wordSecond": "montre", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "calcetines", + "wordSecond": "chaussettes", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "falda", + "wordSecond": "jupe", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "suéter", + "wordSecond": "pull", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "abrigo", + "wordSecond": "manteau", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "botas", + "wordSecond": "bottes", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "camiseta", + "wordSecond": "t-shirt", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "jeans", + "wordSecond": "jean", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "traje", + "wordSecond": "costume", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "corbata", + "wordSecond": "cravate", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "guantes", + "wordSecond": "gants", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gorra", + "wordSecond": "casquette", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pijama", + "wordSecond": "pyjama", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "zapatillas", + "wordSecond": "baskets", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "medias", + "wordSecond": "collants", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "blusa", + "wordSecond": "blouse", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pantalones cortos", + "wordSecond": "short", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "bañador", + "wordSecond": "maillot de bain", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "bikini", + "wordSecond": "bikini", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "chaqueta de cuero", + "wordSecond": "blouson en cuir", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "impermeable", + "wordSecond": "imperméable", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "paraguas", + "wordSecond": "parapluie", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gafas de sol", + "wordSecond": "lunettes de soleil", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pendientes", + "wordSecond": "boucles d'oreilles", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "collar", + "wordSecond": "collier", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pulsera", + "wordSecond": "bracelet", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "anillo", + "wordSecond": "bague", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cartera", + "wordSecond": "portefeuille", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mochila", + "wordSecond": "sac à dos", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pañuelo", + "wordSecond": "mouchoir", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "corbatín", + "wordSecond": "nœud papillon", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "algodón", + "wordSecond": "coton", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "seda", + "wordSecond": "soie", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lana", + "wordSecond": "laine", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cuero", + "wordSecond": "cuir", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "poliéster", + "wordSecond": "polyester", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lino", + "wordSecond": "lin", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "apretado", + "wordSecond": "serré", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "holgado", + "wordSecond": "ample", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "elegante", + "wordSecond": "élégant", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "casual", + "wordSecond": "décontracté", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cómodo", + "wordSecond": "confortable", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ligero", + "wordSecond": "léger", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "caliente", + "wordSecond": "chaud", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fresco", + "wordSecond": "frais", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nuevo", + "wordSecond": "neuf", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "viejo", + "wordSecond": "vieux", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "largo", + "wordSecond": "long", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "corto", + "wordSecond": "court", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "grande", + "wordSecond": "grand", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pequeño", + "wordSecond": "petit", + "createdAt": "2026-02-19T15:28:15.280Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_clothing_fashion_es_it_A2.json b/output/2026_02_19_clothing_fashion_es_it_A2.json new file mode 100644 index 0000000..881c92c --- /dev/null +++ b/output/2026_02_19_clothing_fashion_es_it_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:28:27.920Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Clothing & Fashion" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Clothing & Fashion" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "camisa", + "wordSecond": "camicia", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pantalones", + "wordSecond": "pantaloni", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vestido", + "wordSecond": "vestito", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "chaqueta", + "wordSecond": "giacca", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "zapatos", + "wordSecond": "scarpe", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "calcetines", + "wordSecond": "calzini", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "falda", + "wordSecond": "gonna", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "suéter", + "wordSecond": "maglione", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "camiseta", + "wordSecond": "maglietta", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "abrigo", + "wordSecond": "cappotto", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sombrero", + "wordSecond": "cappello", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bufanda", + "wordSecond": "sciarpa", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "guantes", + "wordSecond": "guanti", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cinturón", + "wordSecond": "cintura", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bolso", + "wordSecond": "borsa", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "reloj", + "wordSecond": "orologio", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gafas", + "wordSecond": "occhiali", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "corbata", + "wordSecond": "cravatta", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "traje", + "wordSecond": "abito", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "blusa", + "wordSecond": "blusa", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pantalones cortos", + "wordSecond": "pantaloncini", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bañador", + "wordSecond": "costume da bagno", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pijama", + "wordSecond": "pigiama", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "zapatillas", + "wordSecond": "pantofole", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "botas", + "wordSecond": "stivali", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sandalias", + "wordSecond": "sandali", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tacones", + "wordSecond": "tacchi", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "deportivas", + "wordSecond": "scarpe da ginnastica", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ropa interior", + "wordSecond": "biancheria intima", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "calcetines", + "wordSecond": "calze", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "medias", + "wordSecond": "collant", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "collar", + "wordSecond": "collana", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pendientes", + "wordSecond": "orecchini", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pulsera", + "wordSecond": "braccialetto", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "anillo", + "wordSecond": "anello", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "algodón", + "wordSecond": "cotone", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "seda", + "wordSecond": "seta", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lana", + "wordSecond": "lana", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cuero", + "wordSecond": "cuoio", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "jeans", + "wordSecond": "jeans", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "poliéster", + "wordSecond": "poliestere", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lino", + "wordSecond": "lino", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "apretado", + "wordSecond": "stretto", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "holgado", + "wordSecond": "largo", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "elegante", + "wordSecond": "elegante", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "casual", + "wordSecond": "casual", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cómodo", + "wordSecond": "comodo", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nuevo", + "wordSecond": "nuovo", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "viejo", + "wordSecond": "vecchio", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "largo", + "wordSecond": "lungo", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "corto", + "wordSecond": "corto", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "claro", + "wordSecond": "chiaro", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "oscuro", + "wordSecond": "scuro", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "color", + "wordSecond": "colore", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "talla", + "wordSecond": "taglia", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "precio", + "wordSecond": "prezzo", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tienda", + "wordSecond": "negozio", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "probador", + "wordSecond": "camerino", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "comprar", + "wordSecond": "comprare", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "llevar", + "wordSecond": "indossare", + "createdAt": "2026-02-19T15:28:27.920Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_clothing_fashion_es_pt_A2.json b/output/2026_02_19_clothing_fashion_es_pt_A2.json new file mode 100644 index 0000000..0ce95c6 --- /dev/null +++ b/output/2026_02_19_clothing_fashion_es_pt_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:27:50.723Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Clothing & Fashion" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Clothing & Fashion" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "camisa", + "wordSecond": "camisa", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pantalón", + "wordSecond": "calça", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vestido", + "wordSecond": "vestido", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "chaqueta", + "wordSecond": "jaqueta", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "zapatos", + "wordSecond": "sapatos", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "falda", + "wordSecond": "saia", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "suéter", + "wordSecond": "suéter", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "abrigo", + "wordSecond": "casaco", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "camiseta", + "wordSecond": "camiseta", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pantalones cortos", + "wordSecond": "bermuda", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "calcetines", + "wordSecond": "meias", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ropa interior", + "wordSecond": "roupa íntima", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bufanda", + "wordSecond": "cachecol", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sombrero", + "wordSecond": "chapéu", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "guantes", + "wordSecond": "luvas", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cinturón", + "wordSecond": "cinto", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bolso", + "wordSecond": "bolsa", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reloj", + "wordSecond": "relógio", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gafas", + "wordSecond": "óculos", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "zapatillas", + "wordSecond": "tênis", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "botas", + "wordSecond": "botas", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sandalia", + "wordSecond": "sandália", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "traje", + "wordSecond": "terno", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "corbata", + "wordSecond": "gravata", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pijama", + "wordSecond": "pijama", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bikini", + "wordSecond": "biquíni", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bañador", + "wordSecond": "maiô", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gorra", + "wordSecond": "boné", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pendientes", + "wordSecond": "brincos", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "collar", + "wordSecond": "colar", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pulsera", + "wordSecond": "pulseira", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "anillo", + "wordSecond": "anel", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "algodón", + "wordSecond": "algodão", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "seda", + "wordSecond": "seda", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lana", + "wordSecond": "lã", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuero", + "wordSecond": "couro", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "jeans", + "wordSecond": "jeans", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "poliéster", + "wordSecond": "poliéster", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lino", + "wordSecond": "linho", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "apretado", + "wordSecond": "apertado", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "holgado", + "wordSecond": "folgado", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "elegante", + "wordSecond": "elegante", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "casual", + "wordSecond": "casual", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cómodo", + "wordSecond": "confortável", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nuevo", + "wordSecond": "novo", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "viejo", + "wordSecond": "velho", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "limpio", + "wordSecond": "limpo", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sucio", + "wordSecond": "sujo", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "largo", + "wordSecond": "comprido", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "corto", + "wordSecond": "curto", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "oscuro", + "wordSecond": "escuro", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "claro", + "wordSecond": "claro", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "barato", + "wordSecond": "barato", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "caro", + "wordSecond": "caro", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bonito", + "wordSecond": "bonito", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "feo", + "wordSecond": "feio", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "moderno", + "wordSecond": "moderno", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tradicional", + "wordSecond": "tradicional", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "caliente", + "wordSecond": "quente", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fresco", + "wordSecond": "fresco", + "createdAt": "2026-02-19T15:27:50.723Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_clothing_fashion_fr_it_A2.json b/output/2026_02_19_clothing_fashion_fr_it_A2.json new file mode 100644 index 0000000..9e226bd --- /dev/null +++ b/output/2026_02_19_clothing_fashion_fr_it_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:29:47.267Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Clothing & Fashion" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Clothing & Fashion" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le t-shirt", + "wordSecond": "la maglietta", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le pantalon", + "wordSecond": "i pantaloni", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la robe", + "wordSecond": "il vestito", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la veste", + "wordSecond": "la giacca", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "les chaussures", + "wordSecond": "le scarpe", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la chemise", + "wordSecond": "la camicia", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le jean", + "wordSecond": "il jeans", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le pull", + "wordSecond": "il maglione", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le manteau", + "wordSecond": "il cappotto", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le costume", + "wordSecond": "il completo", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la jupe", + "wordSecond": "la gonna", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le short", + "wordSecond": "i pantaloncini", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le sweat-shirt", + "wordSecond": "la felpa", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le pyjama", + "wordSecond": "il pigiama", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le maillot de bain", + "wordSecond": "il costume da bagno", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le chapeau", + "wordSecond": "il cappello", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'écharpe", + "wordSecond": "la sciarpa", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le gant", + "wordSecond": "il guanto", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la ceinture", + "wordSecond": "la cintura", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le sac", + "wordSecond": "la borsa", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le sac à dos", + "wordSecond": "lo zaino", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la montre", + "wordSecond": "l'orologio", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "les lunettes", + "wordSecond": "gli occhiali", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "les bijoux", + "wordSecond": "i gioielli", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le collier", + "wordSecond": "la collana", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la bague", + "wordSecond": "l'anello", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "les boucles d'oreilles", + "wordSecond": "gli orecchini", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le bracelet", + "wordSecond": "il braccialetto", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la cravate", + "wordSecond": "la cravatta", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "les chaussettes", + "wordSecond": "i calzini", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "les sous-vêtements", + "wordSecond": "la biancheria intima", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le soutien-gorge", + "wordSecond": "il reggiseno", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le slip", + "wordSecond": "le mutande", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "les bottes", + "wordSecond": "gli stivali", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "les sandales", + "wordSecond": "i sandali", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "les baskets", + "wordSecond": "le scarpe da ginnastica", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "les tongs", + "wordSecond": "le infradito", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le coton", + "wordSecond": "il cotone", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la laine", + "wordSecond": "la lana", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la soie", + "wordSecond": "la seta", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le cuir", + "wordSecond": "la pelle", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le denim", + "wordSecond": "il denim", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le lin", + "wordSecond": "il lino", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le polyester", + "wordSecond": "il poliestere", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "serré", + "wordSecond": "stretto", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "large", + "wordSecond": "largo", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "long", + "wordSecond": "lungo", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "court", + "wordSecond": "corto", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "élégant", + "wordSecond": "elegante", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "décontracté", + "wordSecond": "casuale", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "confortable", + "wordSecond": "comodo", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chaud", + "wordSecond": "caldo", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "léger", + "wordSecond": "leggero", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "lourd", + "wordSecond": "pesante", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "neuf", + "wordSecond": "nuovo", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vieux", + "wordSecond": "vecchio", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "propre", + "wordSecond": "pulito", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sale", + "wordSecond": "sporco", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "à la mode", + "wordSecond": "di moda", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "démodé", + "wordSecond": "fuori moda", + "createdAt": "2026-02-19T15:29:47.267Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_clothing_fashion_pt_de_A2.json b/output/2026_02_19_clothing_fashion_pt_de_A2.json new file mode 100644 index 0000000..8239222 --- /dev/null +++ b/output/2026_02_19_clothing_fashion_pt_de_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:28:40.847Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Clothing & Fashion" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Clothing & Fashion" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "camisa", + "wordSecond": "Hemd", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "camiseta", + "wordSecond": "T-Shirt", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "calça", + "wordSecond": "Hose", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "calça jeans", + "wordSecond": "Jeans", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vestido", + "wordSecond": "Kleid", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "saia", + "wordSecond": "Rock", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "casaco", + "wordSecond": "Jacke", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "jaqueta", + "wordSecond": "Jacke", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "blusa", + "wordSecond": "Bluse", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "suéter", + "wordSecond": "Pullover", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sapatos", + "wordSecond": "Schuhe", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tênis", + "wordSecond": "Turnschuhe", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sandálias", + "wordSecond": "Sandalen", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "botas", + "wordSecond": "Stiefel", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chinelos", + "wordSecond": "Hausschuhe", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "meias", + "wordSecond": "Socken", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "meia-calça", + "wordSecond": "Strumpfhose", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cueca", + "wordSecond": "Unterhose", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sutiã", + "wordSecond": "BH", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pijama", + "wordSecond": "Pyjama", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "gravata", + "wordSecond": "Krawatte", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cinto", + "wordSecond": "Gürtel", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cachecol", + "wordSecond": "Schal", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chapéu", + "wordSecond": "Hut", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "boné", + "wordSecond": "Mütze", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "luvas", + "wordSecond": "Handschuhe", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "óculos", + "wordSecond": "Brille", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "óculos de sol", + "wordSecond": "Sonnenbrille", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "bolsa", + "wordSecond": "Tasche", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mochila", + "wordSecond": "Rucksack", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "carteira", + "wordSecond": "Geldbörse", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "relógio", + "wordSecond": "Uhr", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "brincos", + "wordSecond": "Ohrringe", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "colar", + "wordSecond": "Halskette", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pulseira", + "wordSecond": "Armband", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "anel", + "wordSecond": "Ring", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lenço", + "wordSecond": "Taschentuch", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cinto de segurança", + "wordSecond": "Sicherheitsgurt", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "roupa íntima", + "wordSecond": "Unterwäsche", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "terno", + "wordSecond": "Anzug", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "terno de banho", + "wordSecond": "Badeanzug", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "maiô", + "wordSecond": "Badeanzug", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "bermuda", + "wordSecond": "Shorts", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "regata", + "wordSecond": "Tanktop", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "casaco de chuva", + "wordSecond": "Regenjacke", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "guardachuva", + "wordSecond": "Regenschirm", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "algodão", + "wordSecond": "Baumwolle", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "seda", + "wordSecond": "Seide", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lã", + "wordSecond": "Wolle", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "couro", + "wordSecond": "Leder", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "jeans", + "wordSecond": "Jeansstoff", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "justo", + "wordSecond": "eng", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "folgado", + "wordSecond": "weit", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "confortável", + "wordSecond": "bequem", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "elegante", + "wordSecond": "elegant", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "casual", + "wordSecond": "lässig", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "moderno", + "wordSecond": "modern", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "velho", + "wordSecond": "alt", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "novo", + "wordSecond": "neu", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "limpo", + "wordSecond": "sauber", + "createdAt": "2026-02-19T15:28:40.847Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_clothing_fashion_pt_fr_A2.json b/output/2026_02_19_clothing_fashion_pt_fr_A2.json new file mode 100644 index 0000000..e4369ac --- /dev/null +++ b/output/2026_02_19_clothing_fashion_pt_fr_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:28:53.518Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Clothing & Fashion" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Clothing & Fashion" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "camisa", + "wordSecond": "chemise", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "camiseta", + "wordSecond": "t-shirt", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "calça", + "wordSecond": "pantalon", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vestido", + "wordSecond": "robe", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "jaqueta", + "wordSecond": "veste", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sapato", + "wordSecond": "chaussure", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tênis", + "wordSecond": "basket", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sandália", + "wordSecond": "sandale", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "bota", + "wordSecond": "botte", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "meia", + "wordSecond": "chaussette", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cueca", + "wordSecond": "slip", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sutiã", + "wordSecond": "soutien-gorge", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "calcinha", + "wordSecond": "culotte", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "casaco", + "wordSecond": "manteau", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "suéter", + "wordSecond": "pull", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "blusa", + "wordSecond": "blouse", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "saia", + "wordSecond": "jupe", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "short", + "wordSecond": "short", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "gravata", + "wordSecond": "cravate", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cinto", + "wordSecond": "ceinture", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cachecol", + "wordSecond": "écharpe", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chapéu", + "wordSecond": "chapeau", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "boné", + "wordSecond": "casquette", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "bolsa", + "wordSecond": "sac", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mochila", + "wordSecond": "sac à dos", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "carteira", + "wordSecond": "portefeuille", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "relógio", + "wordSecond": "montre", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "óculos", + "wordSecond": "lunettes", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "óculos de sol", + "wordSecond": "lunettes de soleil", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "brinco", + "wordSecond": "boucle d'oreille", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "colar", + "wordSecond": "collier", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pulseira", + "wordSecond": "bracelet", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "anel", + "wordSecond": "bague", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "luvas", + "wordSecond": "gants", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "guarda-chuva", + "wordSecond": "parapluie", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lenço", + "wordSecond": "mouchoir", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pijama", + "wordSecond": "pyjama", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "roupa íntima", + "wordSecond": "sous-vêtements", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "roupão", + "wordSecond": "peignoir", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sunga", + "wordSecond": "maillot de bain", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "biquíni", + "wordSecond": "bikini", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "algodão", + "wordSecond": "coton", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "seda", + "wordSecond": "soie", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lã", + "wordSecond": "laine", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "jeans", + "wordSecond": "jean", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "couro", + "wordSecond": "cuir", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "veludo", + "wordSecond": "velours", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "malha", + "wordSecond": "maille", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "justo", + "wordSecond": "serré", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "folgado", + "wordSecond": "ample", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "elegante", + "wordSecond": "élégant", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "casual", + "wordSecond": "décontracté", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "confortável", + "wordSecond": "confortable", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quente", + "wordSecond": "chaud", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "frio", + "wordSecond": "froid", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "novo", + "wordSecond": "neuf", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "velho", + "wordSecond": "vieux", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "limpo", + "wordSecond": "propre", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sujo", + "wordSecond": "sale", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "barato", + "wordSecond": "bon marché", + "createdAt": "2026-02-19T15:28:53.518Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_clothing_fashion_pt_it_A2.json b/output/2026_02_19_clothing_fashion_pt_it_A2.json new file mode 100644 index 0000000..49e0a20 --- /dev/null +++ b/output/2026_02_19_clothing_fashion_pt_it_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:29:05.581Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Clothing & Fashion" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Clothing & Fashion" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "camisa", + "wordSecond": "camicia", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "calça", + "wordSecond": "pantaloni", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vestido", + "wordSecond": "vestito", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "jaqueta", + "wordSecond": "giacca", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sapato", + "wordSecond": "scarpa", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "meia", + "wordSecond": "calzino", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "casaco", + "wordSecond": "cappotto", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "blusa", + "wordSecond": "blusa", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "saia", + "wordSecond": "gonna", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bermuda", + "wordSecond": "shorts", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "camiseta", + "wordSecond": "maglietta", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "suéter", + "wordSecond": "maglione", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gravata", + "wordSecond": "cravatta", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cinto", + "wordSecond": "cintura", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cachecol", + "wordSecond": "sciarpa", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chapéu", + "wordSecond": "cappello", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bolsa", + "wordSecond": "borsa", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "relógio", + "wordSecond": "orologio", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "óculos", + "wordSecond": "occhiali", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "luvas", + "wordSecond": "guanti", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sutiã", + "wordSecond": "reggiseno", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cueca", + "wordSecond": "mutande", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "meia-calça", + "wordSecond": "collant", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pijama", + "wordSecond": "pigiama", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "terno", + "wordSecond": "abito", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sandália", + "wordSecond": "sandalo", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bota", + "wordSecond": "stivale", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tênis", + "wordSecond": "scarpe da ginnastica", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chinelo", + "wordSecond": "ciabatta", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pulseira", + "wordSecond": "braccialetto", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "brinco", + "wordSecond": "orecchino", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "colar", + "wordSecond": "collana", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "anel", + "wordSecond": "anello", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lenço", + "wordSecond": "fazzoletto", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "carteira", + "wordSecond": "portafoglio", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mochila", + "wordSecond": "zaino", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "algodão", + "wordSecond": "cotone", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "seda", + "wordSecond": "seta", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lã", + "wordSecond": "lana", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "couro", + "wordSecond": "cuoio", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "jeans", + "wordSecond": "jeans", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "veludo", + "wordSecond": "velluto", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "malha", + "wordSecond": "maglia", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "justo", + "wordSecond": "stretto", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "folgado", + "wordSecond": "largo", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "elegante", + "wordSecond": "elegante", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "casual", + "wordSecond": "casuale", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "confortável", + "wordSecond": "comodo", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quente", + "wordSecond": "caldo", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "frio", + "wordSecond": "freddo", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "novo", + "wordSecond": "nuovo", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "velho", + "wordSecond": "vecchio", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bonito", + "wordSecond": "bello", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "feio", + "wordSecond": "brutto", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "caro", + "wordSecond": "costoso", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "barato", + "wordSecond": "economico", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "limpo", + "wordSecond": "pulito", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sujo", + "wordSecond": "sporco", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "colorido", + "wordSecond": "colorato", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "escuro", + "wordSecond": "scuro", + "createdAt": "2026-02-19T15:29:05.581Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_de_fr_A1.json b/output/2026_02_19_colors_shapes_de_fr_A1.json new file mode 100644 index 0000000..2d8d8b7 --- /dev/null +++ b/output/2026_02_19_colors_shapes_de_fr_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:08:48.712Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "rot", + "wordSecond": "rouge", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "blau", + "wordSecond": "bleu", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "grün", + "wordSecond": "vert", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "gelb", + "wordSecond": "jaune", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schwarz", + "wordSecond": "noir", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "weiß", + "wordSecond": "blanc", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "orange", + "wordSecond": "orange", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "rosa", + "wordSecond": "rose", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "lila", + "wordSecond": "violet", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "braun", + "wordSecond": "marron", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "grau", + "wordSecond": "gris", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "hell", + "wordSecond": "clair", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "dunkel", + "wordSecond": "foncé", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "blass", + "wordSecond": "pâle", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kreis", + "wordSecond": "cercle", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Quadrat", + "wordSecond": "carré", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Dreieck", + "wordSecond": "triangle", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Rechteck", + "wordSecond": "rectangle", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Oval", + "wordSecond": "ovale", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Stern", + "wordSecond": "étoile", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Herz", + "wordSecond": "cœur", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Diamant", + "wordSecond": "losange", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kugel", + "wordSecond": "sphère", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Würfel", + "wordSecond": "cube", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pyramide", + "wordSecond": "pyramide", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Zylinder", + "wordSecond": "cylindre", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kegel", + "wordSecond": "cône", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bogen", + "wordSecond": "arc", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Linie", + "wordSecond": "ligne", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Punkt", + "wordSecond": "point", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Muster", + "wordSecond": "motif", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Form", + "wordSecond": "forme", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Farbe", + "wordSecond": "couleur", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "bunt", + "wordSecond": "coloré", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "einfarbig", + "wordSecond": "uni", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "gestreift", + "wordSecond": "rayé", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "gepunktet", + "wordSecond": "à pois", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "kariert", + "wordSecond": "à carreaux", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "golden", + "wordSecond": "doré", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "silbern", + "wordSecond": "argenté", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "kreisförmig", + "wordSecond": "circulaire", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "eckig", + "wordSecond": "angulaire", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "rund", + "wordSecond": "rond", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "spitz", + "wordSecond": "pointu", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "flach", + "wordSecond": "plat", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "groß", + "wordSecond": "grand", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "klein", + "wordSecond": "petit", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "lang", + "wordSecond": "long", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "kurz", + "wordSecond": "court", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "breit", + "wordSecond": "large", + "createdAt": "2026-02-19T13:08:48.712Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_de_it_A1.json b/output/2026_02_19_colors_shapes_de_it_A1.json new file mode 100644 index 0000000..cb4b18f --- /dev/null +++ b/output/2026_02_19_colors_shapes_de_it_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:08:58.543Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "rot", + "wordSecond": "rosso", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "blau", + "wordSecond": "blu", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "grün", + "wordSecond": "verde", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "gelb", + "wordSecond": "giallo", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "schwarz", + "wordSecond": "nero", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "weiß", + "wordSecond": "bianco", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "braun", + "wordSecond": "marrone", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "grau", + "wordSecond": "grigio", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "orange", + "wordSecond": "arancione", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "rosa", + "wordSecond": "rosa", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "lila", + "wordSecond": "viola", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "hell", + "wordSecond": "chiaro", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "dunkel", + "wordSecond": "scuro", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "blass", + "wordSecond": "pallido", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kreis", + "wordSecond": "cerchio", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Quadrat", + "wordSecond": "quadrato", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Dreieck", + "wordSecond": "triangolo", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rechteck", + "wordSecond": "rettangolo", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Oval", + "wordSecond": "ovale", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Stern", + "wordSecond": "stella", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Herz", + "wordSecond": "cuore", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kugel", + "wordSecond": "sfera", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Würfel", + "wordSecond": "cubo", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pyramide", + "wordSecond": "piramide", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Linie", + "wordSecond": "linea", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Punkt", + "wordSecond": "punto", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bogen", + "wordSecond": "arco", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ring", + "wordSecond": "anello", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kreuz", + "wordSecond": "croce", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pfeil", + "wordSecond": "freccia", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "hellblau", + "wordSecond": "azzurro", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "dunkelblau", + "wordSecond": "blu scuro", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "hellgrün", + "wordSecond": "verde chiaro", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "dunkelgrün", + "wordSecond": "verde scuro", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "hellrot", + "wordSecond": "rosso chiaro", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "dunkelrot", + "wordSecond": "rosso scuro", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "gelblich", + "wordSecond": "giallastro", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "rötlich", + "wordSecond": "rossastro", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "bläulich", + "wordSecond": "bluastro", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "grünlich", + "wordSecond": "verdastro", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "silber", + "wordSecond": "argento", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "gold", + "wordSecond": "oro", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "beige", + "wordSecond": "beige", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "türkis", + "wordSecond": "turchese", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "violett", + "wordSecond": "viola", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "magenta", + "wordSecond": "magenta", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zylindrisch", + "wordSecond": "cilindrico", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "kugelförmig", + "wordSecond": "sferico", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "eckig", + "wordSecond": "angoloso", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "rund", + "wordSecond": "rotondo", + "createdAt": "2026-02-19T13:08:58.543Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_de_ja_A1.json b/output/2026_02_19_colors_shapes_de_ja_A1.json new file mode 100644 index 0000000..149a441 --- /dev/null +++ b/output/2026_02_19_colors_shapes_de_ja_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:09:16.077Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "rot", + "wordSecond": "赤 (あか, aka)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "blau", + "wordSecond": "青 (あお, ao)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "grün", + "wordSecond": "緑 (みどり, midori)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "gelb", + "wordSecond": "黄色 (きいろ, kiiro)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "schwarz", + "wordSecond": "黒 (くろ, kuro)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "weiß", + "wordSecond": "白 (しろ, shiro)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "braun", + "wordSecond": "茶色 (ちゃいろ, chairo)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "orange", + "wordSecond": "オレンジ (おれんじ, orenji)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "rosa", + "wordSecond": "ピンク (ぴんく, pinku)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "lila", + "wordSecond": "紫 (むらさき, murasaki)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "grau", + "wordSecond": "灰色 (はいいろ, haiiro)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "hell", + "wordSecond": "明るい (あかるい, akarui)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "dunkel", + "wordSecond": "暗い (くらい, kurai)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "hellblau", + "wordSecond": "水色 (みずいろ, mizuiro)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "dunkelblau", + "wordSecond": "紺色 (こんいろ, kon'iro)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "hellgrün", + "wordSecond": "薄緑 (うすみどり, usumidori)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "dunkelgrün", + "wordSecond": "深緑 (ふかみどり, fukamidori)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "hellrot", + "wordSecond": "薄赤 (うすあか, usuaaka)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "dunkelrot", + "wordSecond": "深紅 (しんく, shinku)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "pink", + "wordSecond": "ピンク (ぴんく, pinku)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "gold", + "wordSecond": "金色 (きんいろ, kiniro)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "silber", + "wordSecond": "銀色 (ぎんいろ, gin'iro)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "beige", + "wordSecond": "ベージュ (べーじゅ, bēju)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "türkis", + "wordSecond": "ターコイズ (たーこいず, tākoizu)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "violett", + "wordSecond": "紫 (むらさき, murasaki)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kreis", + "wordSecond": "円 (えん, en)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Quadrat", + "wordSecond": "正方形 (せいほうけい, seihōkei)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Dreieck", + "wordSecond": "三角形 (さんかくけい, sankakukei)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Rechteck", + "wordSecond": "長方形 (ちょうほうけい, chōhōkei)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Oval", + "wordSecond": "楕円 (だえん, daen)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Stern", + "wordSecond": "星 (ほし, hoshi)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Herz", + "wordSecond": "ハート (はーと, hāto)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Diamant", + "wordSecond": "ダイヤモンド (だいやもんど, daiyamondo)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kugel", + "wordSecond": "球 (きゅう, kyū)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Würfel", + "wordSecond": "立方体 (りっぽうたい, rippōtai)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Pyramide", + "wordSecond": "ピラミッド (ぴらみっど, piramiddo)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Zylinder", + "wordSecond": "円柱 (えんちゅう, enchū)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kegel", + "wordSecond": "円錐 (えんすい, ensui)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Bogen", + "wordSecond": "弓形 (ゆみがた, yumigata)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Pfeil", + "wordSecond": "矢印 (やじるし, yajirushi)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kreuz", + "wordSecond": "十字 (じゅうじ, jūji)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ring", + "wordSecond": "輪 (わ, wa)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Spirale", + "wordSecond": "螺旋 (らせん, rasen)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Welle", + "wordSecond": "波 (なみ, nami)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Punkt", + "wordSecond": "点 (てん, ten)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Linie", + "wordSecond": "線 (せん, sen)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kurve", + "wordSecond": "曲線 (きょくせん, kyokusen)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Winkel", + "wordSecond": "角 (かく, kaku)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Muster", + "wordSecond": "模様 (もよう, moyō)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Form", + "wordSecond": "形 (かたち, katachi)", + "createdAt": "2026-02-19T13:09:16.077Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_de_ko_A1.json b/output/2026_02_19_colors_shapes_de_ko_A1.json new file mode 100644 index 0000000..6666767 --- /dev/null +++ b/output/2026_02_19_colors_shapes_de_ko_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:09:48.891Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "rot", + "wordSecond": "빨간색 (ppalgansaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "blau", + "wordSecond": "파란색 (paransaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "grün", + "wordSecond": "초록색 (choroksaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "gelb", + "wordSecond": "노란색 (noransaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "schwarz", + "wordSecond": "검은색 (geomeunsaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "weiß", + "wordSecond": "하얀색 (hayansaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "orange", + "wordSecond": "주황색 (juhwangsaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "lila", + "wordSecond": "보라색 (borasaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "rosa", + "wordSecond": "분홍색 (bunhongsaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "braun", + "wordSecond": "갈색 (galsaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "grau", + "wordSecond": "회색 (hoesaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "hell", + "wordSecond": "밝은 (balgeun)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "dunkel", + "wordSecond": "어두운 (eoduun)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "hellblau", + "wordSecond": "밝은 파란색 (balgeun paransaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "dunkelblau", + "wordSecond": "어두운 파란색 (eoduun paransaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "hellgrün", + "wordSecond": "밝은 초록색 (balgeun choroksaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "dunkelgrün", + "wordSecond": "어두운 초록색 (eoduun choroksaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "hellrot", + "wordSecond": "밝은 빨간색 (balgeun ppalgansaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "dunkelrot", + "wordSecond": "어두운 빨간색 (eoduun ppalgansaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "blass", + "wordSecond": "연한 (yeonhan)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "blassgelb", + "wordSecond": "연한 노란색 (yeonhan noransaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "blassrosa", + "wordSecond": "연한 분홍색 (yeonhan bunhongsaek)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kreis", + "wordSecond": "원 (won)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Quadrat", + "wordSecond": "정사각형 (jeongsagakhyeong)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Dreieck", + "wordSecond": "삼각형 (samgakhyeong)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Rechteck", + "wordSecond": "직사각형 (jiksagakhyeong)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Oval", + "wordSecond": "타원 (tawon)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Stern", + "wordSecond": "별 (byeol)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Herz", + "wordSecond": "하트 (hateu)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Diamant", + "wordSecond": "마름모 (mareummo)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Pfeil", + "wordSecond": "화살표 (hwasalpyo)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kreuz", + "wordSecond": "십자가 (sipjaga)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Halbkreis", + "wordSecond": "반원 (banwon)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Würfel", + "wordSecond": "정육면체 (jeongyungmyeonche)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kugel", + "wordSecond": "구 (gu)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Pyramide", + "wordSecond": "피라미드 (piramideu)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zylinder", + "wordSecond": "원기둥 (won-gidung)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kegel", + "wordSecond": "원뿔 (wonppul)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ring", + "wordSecond": "고리 (gori)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bogen", + "wordSecond": "호 (ho)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Linie", + "wordSecond": "선 (seon)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Punkt", + "wordSecond": "점 (jeom)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kurve", + "wordSecond": "곡선 (gokseon)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "gerade", + "wordSecond": "직선 (jikseon)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Welle", + "wordSecond": "파동 (padong)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Spirale", + "wordSecond": "나선 (naseon)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Viereck", + "wordSecond": "사각형 (sagakhyeong)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fünfeck", + "wordSecond": "오각형 (ogakhyeong)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Sechseck", + "wordSecond": "육각형 (yukgakhyeong)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Achteck", + "wordSecond": "팔각형 (palgakhyeong)", + "createdAt": "2026-02-19T13:09:48.891Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_de_pl_A1.json b/output/2026_02_19_colors_shapes_de_pl_A1.json new file mode 100644 index 0000000..5984e20 --- /dev/null +++ b/output/2026_02_19_colors_shapes_de_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:09:59.473Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "rot", + "wordSecond": "czerwony", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "blau", + "wordSecond": "niebieski", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "grün", + "wordSecond": "zielony", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "gelb", + "wordSecond": "żółty", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "schwarz", + "wordSecond": "czarny", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "weiß", + "wordSecond": "biały", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "braun", + "wordSecond": "brązowy", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "grau", + "wordSecond": "szary", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "rosa", + "wordSecond": "różowy", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "orange", + "wordSecond": "pomarańczowy", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "lila", + "wordSecond": "fioletowy", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "hell", + "wordSecond": "jasny", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "dunkel", + "wordSecond": "ciemny", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "blass", + "wordSecond": "blady", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kreis", + "wordSecond": "koło", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Quadrat", + "wordSecond": "kwadrat", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Dreieck", + "wordSecond": "trójkąt", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Rechteck", + "wordSecond": "prostokąt", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Oval", + "wordSecond": "owal", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Stern", + "wordSecond": "gwiazda", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Herz", + "wordSecond": "serce", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "hellblau", + "wordSecond": "jasnoniebieski", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "dunkelblau", + "wordSecond": "ciemnoniebieski", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "hellgrün", + "wordSecond": "jasnozielony", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "dunkelgrün", + "wordSecond": "ciemnozielony", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "hellrot", + "wordSecond": "jasnoczerwony", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "dunkelrot", + "wordSecond": "ciemnoczerwony", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "silber", + "wordSecond": "srebrny", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "gold", + "wordSecond": "złoty", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "beige", + "wordSecond": "beżowy", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "türkis", + "wordSecond": "turkusowy", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "violett", + "wordSecond": "fioletowy", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "kreisförmig", + "wordSecond": "okrągły", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "eckig", + "wordSecond": "kanciasty", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "rund", + "wordSecond": "okrągły", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "spitz", + "wordSecond": "spiczasty", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "groß", + "wordSecond": "duży", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "klein", + "wordSecond": "mały", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "lang", + "wordSecond": "długi", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "kurz", + "wordSecond": "krótki", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "breit", + "wordSecond": "szeroki", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "schmal", + "wordSecond": "wąski", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Form", + "wordSecond": "kształt", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Farbe", + "wordSecond": "kolor", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "bunt", + "wordSecond": "kolorowy", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "einfarbig", + "wordSecond": "jednokolorowy", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "transparent", + "wordSecond": "przezroczysty", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "undurchsichtig", + "wordSecond": "nieprzezroczysty", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "glänzend", + "wordSecond": "błyszczący", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "matt", + "wordSecond": "matowy", + "createdAt": "2026-02-19T13:09:59.473Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_de_zh_A1.json b/output/2026_02_19_colors_shapes_de_zh_A1.json new file mode 100644 index 0000000..85f8c58 --- /dev/null +++ b/output/2026_02_19_colors_shapes_de_zh_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:09:31.912Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "rot", + "wordSecond": "红色 (hóngsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "blau", + "wordSecond": "蓝色 (lánsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "grün", + "wordSecond": "绿色 (lǜsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "gelb", + "wordSecond": "黄色 (huángsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "schwarz", + "wordSecond": "黑色 (hēisè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "weiß", + "wordSecond": "白色 (báisè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "braun", + "wordSecond": "棕色 (zōngsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "grau", + "wordSecond": "灰色 (huīsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "orange", + "wordSecond": "橙色 (chéngsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "rosa", + "wordSecond": "粉色 (fěnsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "lila", + "wordSecond": "紫色 (zǐsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "hell", + "wordSecond": "浅 (qiǎn)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "dunkel", + "wordSecond": "深 (shēn)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "hellblau", + "wordSecond": "浅蓝色 (qiǎn lánsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "dunkelblau", + "wordSecond": "深蓝色 (shēn lánsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "hellgrün", + "wordSecond": "浅绿色 (qiǎn lǜsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "dunkelgrün", + "wordSecond": "深绿色 (shēn lǜsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "hellrot", + "wordSecond": "浅红色 (qiǎn hóngsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "dunkelrot", + "wordSecond": "深红色 (shēn hóngsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kreis", + "wordSecond": "圆形 (yuánxíng)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Quadrat", + "wordSecond": "正方形 (zhèngfāngxíng)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Dreieck", + "wordSecond": "三角形 (sānjiǎoxíng)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Rechteck", + "wordSecond": "长方形 (chángfāngxíng)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Oval", + "wordSecond": "椭圆形 (tuǒyuánxíng)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Stern", + "wordSecond": "星形 (xīngxíng)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Herz", + "wordSecond": "心形 (xīnxíng)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Raute", + "wordSecond": "菱形 (língxíng)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Pfeil", + "wordSecond": "箭头 (jiàntóu)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kreuz", + "wordSecond": "十字形 (shízìxíng)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ring", + "wordSecond": "环形 (huánxíng)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Würfel", + "wordSecond": "立方体 (lìfāngtǐ)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kugel", + "wordSecond": "球体 (qiútǐ)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Pyramide", + "wordSecond": "金字塔 (jīnzìtǎ)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Zylinder", + "wordSecond": "圆柱体 (yuánzhùtǐ)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kegel", + "wordSecond": "圆锥体 (yuánzhuītǐ)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "bunt", + "wordSecond": "彩色 (cǎisè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "gold", + "wordSecond": "金色 (jīnsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "silber", + "wordSecond": "银色 (yínsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "kupfer", + "wordSecond": "铜色 (tóngsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "beige", + "wordSecond": "米色 (mǐsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "türkis", + "wordSecond": "青绿色 (qīnglǜsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "violett", + "wordSecond": "紫罗兰色 (zǐluólánsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "indigo", + "wordSecond": "靛蓝色 (diànlánsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "magenta", + "wordSecond": "洋红色 (yánghóngsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "zitronengelb", + "wordSecond": "柠檬黄 (níngménghuáng)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "olivgrün", + "wordSecond": "橄榄绿 (gǎnlǎnlǜ)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "himmelblau", + "wordSecond": "天蓝色 (tiānlánsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "scharlachrot", + "wordSecond": "猩红色 (xīnghóngsè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "cremefarben", + "wordSecond": "奶油色 (nǎiyóusè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "lavendel", + "wordSecond": "薰衣草色 (xūnyīcǎosè)", + "createdAt": "2026-02-19T13:09:31.912Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_en_de_A1.json b/output/2026_02_19_colors_shapes_en_de_A1.json new file mode 100644 index 0000000..13a9be8 --- /dev/null +++ b/output/2026_02_19_colors_shapes_en_de_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:04:19.553Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "red", + "wordSecond": "rot", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "blue", + "wordSecond": "blau", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "green", + "wordSecond": "grün", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "yellow", + "wordSecond": "gelb", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "black", + "wordSecond": "schwarz", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "white", + "wordSecond": "weiß", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "brown", + "wordSecond": "braun", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "orange", + "wordSecond": "orange", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pink", + "wordSecond": "rosa", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "purple", + "wordSecond": "lila", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "gray", + "wordSecond": "grau", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "light", + "wordSecond": "hell", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "dark", + "wordSecond": "dunkel", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pale", + "wordSecond": "blass", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bright", + "wordSecond": "hell", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "color", + "wordSecond": "Farbe", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shape", + "wordSecond": "Form", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "circle", + "wordSecond": "Kreis", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "square", + "wordSecond": "Quadrat", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "triangle", + "wordSecond": "Dreieck", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "rectangle", + "wordSecond": "Rechteck", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "oval", + "wordSecond": "Oval", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "star", + "wordSecond": "Stern", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "heart", + "wordSecond": "Herz", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "diamond", + "wordSecond": "Raute", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "round", + "wordSecond": "rund", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "long", + "wordSecond": "lang", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "short", + "wordSecond": "kurz", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "big", + "wordSecond": "groß", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "small", + "wordSecond": "klein", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wide", + "wordSecond": "breit", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "narrow", + "wordSecond": "schmal", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "straight", + "wordSecond": "gerade", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "curved", + "wordSecond": "gebogen", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "point", + "wordSecond": "Punkt", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "line", + "wordSecond": "Linie", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "side", + "wordSecond": "Seite", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "corner", + "wordSecond": "Ecke", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "center", + "wordSecond": "Mitte", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "edge", + "wordSecond": "Kante", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "flat", + "wordSecond": "flach", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "deep", + "wordSecond": "tief", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "solid", + "wordSecond": "einfarbig", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "striped", + "wordSecond": "gestreift", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "spotted", + "wordSecond": "gepunktet", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pattern", + "wordSecond": "Muster", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shade", + "wordSecond": "Schattierung", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tone", + "wordSecond": "Ton", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "silver", + "wordSecond": "silber", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "gold", + "wordSecond": "gold", + "createdAt": "2026-02-19T13:04:19.553Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_en_es_A1.json b/output/2026_02_19_colors_shapes_en_es_A1.json new file mode 100644 index 0000000..17da1ed --- /dev/null +++ b/output/2026_02_19_colors_shapes_en_es_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:04:01.110Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "red", + "wordSecond": "rojo", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "blue", + "wordSecond": "azul", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "green", + "wordSecond": "verde", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "yellow", + "wordSecond": "amarillo", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "black", + "wordSecond": "negro", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "white", + "wordSecond": "blanco", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "orange", + "wordSecond": "naranja", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pink", + "wordSecond": "rosa", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "purple", + "wordSecond": "morado", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "brown", + "wordSecond": "marrón", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "gray", + "wordSecond": "gris", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "light", + "wordSecond": "claro", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dark", + "wordSecond": "oscuro", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pale", + "wordSecond": "pálido", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bright", + "wordSecond": "brillante", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "circle", + "wordSecond": "círculo", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "square", + "wordSecond": "cuadrado", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "triangle", + "wordSecond": "triángulo", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rectangle", + "wordSecond": "rectángulo", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "oval", + "wordSecond": "óvalo", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "star", + "wordSecond": "estrella", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "heart", + "wordSecond": "corazón", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "diamond", + "wordSecond": "rombo", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "color", + "wordSecond": "color", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shape", + "wordSecond": "forma", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "big", + "wordSecond": "grande", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "small", + "wordSecond": "pequeño", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "round", + "wordSecond": "redondo", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "long", + "wordSecond": "largo", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "short", + "wordSecond": "corto", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "thin", + "wordSecond": "delgado", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "thick", + "wordSecond": "grueso", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "straight", + "wordSecond": "recto", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "curved", + "wordSecond": "curvo", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "point", + "wordSecond": "punto", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "line", + "wordSecond": "línea", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "side", + "wordSecond": "lado", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "angle", + "wordSecond": "ángulo", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "size", + "wordSecond": "tamaño", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "light blue", + "wordSecond": "azul claro", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dark green", + "wordSecond": "verde oscuro", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pink", + "wordSecond": "rosado", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "gold", + "wordSecond": "dorado", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "silver", + "wordSecond": "plateado", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "beige", + "wordSecond": "beige", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "turquoise", + "wordSecond": "turquesa", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "violet", + "wordSecond": "violeta", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "indigo", + "wordSecond": "índigo", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cream", + "wordSecond": "crema", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "navy blue", + "wordSecond": "azul marino", + "createdAt": "2026-02-19T13:04:01.110Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_en_fr_A1.json b/output/2026_02_19_colors_shapes_en_fr_A1.json new file mode 100644 index 0000000..34cf4d5 --- /dev/null +++ b/output/2026_02_19_colors_shapes_en_fr_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:04:28.445Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "red", + "wordSecond": "rouge", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "blue", + "wordSecond": "bleu", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "green", + "wordSecond": "vert", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "yellow", + "wordSecond": "jaune", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "black", + "wordSecond": "noir", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "white", + "wordSecond": "blanc", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "orange", + "wordSecond": "orange", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pink", + "wordSecond": "rose", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "purple", + "wordSecond": "violet", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "brown", + "wordSecond": "marron", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "gray", + "wordSecond": "gris", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "gold", + "wordSecond": "or", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "silver", + "wordSecond": "argent", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "light", + "wordSecond": "clair", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "dark", + "wordSecond": "foncé", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pale", + "wordSecond": "pâle", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bright", + "wordSecond": "vif", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "color", + "wordSecond": "couleur", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "circle", + "wordSecond": "cercle", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "square", + "wordSecond": "carré", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "triangle", + "wordSecond": "triangle", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "rectangle", + "wordSecond": "rectangle", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "oval", + "wordSecond": "ovale", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "star", + "wordSecond": "étoile", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "heart", + "wordSecond": "cœur", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "diamond", + "wordSecond": "losange", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "line", + "wordSecond": "ligne", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "point", + "wordSecond": "point", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "round", + "wordSecond": "rond", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "big", + "wordSecond": "grand", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "small", + "wordSecond": "petit", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "long", + "wordSecond": "long", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "short", + "wordSecond": "court", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "thin", + "wordSecond": "mince", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "thick", + "wordSecond": "épais", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "straight", + "wordSecond": "droit", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "curved", + "wordSecond": "courbé", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shape", + "wordSecond": "forme", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "size", + "wordSecond": "taille", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "light blue", + "wordSecond": "bleu clair", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "dark green", + "wordSecond": "vert foncé", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pale yellow", + "wordSecond": "jaune pâle", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bright red", + "wordSecond": "rouge vif", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "black and white", + "wordSecond": "noir et blanc", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "red circle", + "wordSecond": "cercle rouge", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "blue square", + "wordSecond": "carré bleu", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "green triangle", + "wordSecond": "triangle vert", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "yellow star", + "wordSecond": "étoile jaune", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pink heart", + "wordSecond": "cœur rose", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "brown rectangle", + "wordSecond": "rectangle marron", + "createdAt": "2026-02-19T13:04:28.445Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_en_it_A1.json b/output/2026_02_19_colors_shapes_en_it_A1.json new file mode 100644 index 0000000..95759a3 --- /dev/null +++ b/output/2026_02_19_colors_shapes_en_it_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:04:38.031Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "red", + "wordSecond": "rosso", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "blue", + "wordSecond": "blu", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "green", + "wordSecond": "verde", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "yellow", + "wordSecond": "giallo", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "black", + "wordSecond": "nero", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "white", + "wordSecond": "bianco", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "orange", + "wordSecond": "arancione", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pink", + "wordSecond": "rosa", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "purple", + "wordSecond": "viola", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "brown", + "wordSecond": "marrone", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "gray", + "wordSecond": "grigio", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "light", + "wordSecond": "chiaro", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dark", + "wordSecond": "scuro", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pale", + "wordSecond": "pallido", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bright", + "wordSecond": "brillante", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "circle", + "wordSecond": "cerchio", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "square", + "wordSecond": "quadrato", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "triangle", + "wordSecond": "triangolo", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "rectangle", + "wordSecond": "rettangolo", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "oval", + "wordSecond": "ovale", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "star", + "wordSecond": "stella", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "heart", + "wordSecond": "cuore", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "diamond", + "wordSecond": "rombo", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "color", + "wordSecond": "colore", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shape", + "wordSecond": "forma", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "round", + "wordSecond": "rotondo", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "big", + "wordSecond": "grande", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "small", + "wordSecond": "piccolo", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "long", + "wordSecond": "lungo", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "short", + "wordSecond": "corto", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "thin", + "wordSecond": "sottile", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "thick", + "wordSecond": "spesso", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "straight", + "wordSecond": "dritto", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "curved", + "wordSecond": "curvo", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "point", + "wordSecond": "punto", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "line", + "wordSecond": "linea", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "side", + "wordSecond": "lato", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "angle", + "wordSecond": "angolo", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "size", + "wordSecond": "dimensione", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "light blue", + "wordSecond": "azzurro", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dark blue", + "wordSecond": "blu scuro", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "light green", + "wordSecond": "verde chiaro", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dark green", + "wordSecond": "verde scuro", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "silver", + "wordSecond": "argento", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "gold", + "wordSecond": "oro", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "beige", + "wordSecond": "beige", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "turquoise", + "wordSecond": "turchese", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "violet", + "wordSecond": "violetto", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "indigo", + "wordSecond": "indaco", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "crimson", + "wordSecond": "cremisi", + "createdAt": "2026-02-19T13:04:38.031Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_en_ja_A1.json b/output/2026_02_19_colors_shapes_en_ja_A1.json new file mode 100644 index 0000000..1b79ceb --- /dev/null +++ b/output/2026_02_19_colors_shapes_en_ja_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:04:53.817Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "red", + "wordSecond": "赤 (あか, aka)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "blue", + "wordSecond": "青 (あお, ao)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "green", + "wordSecond": "緑 (みどり, midori)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "yellow", + "wordSecond": "黄色 (きいろ, kiiro)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "black", + "wordSecond": "黒 (くろ, kuro)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "white", + "wordSecond": "白 (しろ, shiro)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pink", + "wordSecond": "ピンク (ぴんく, pinku)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "orange", + "wordSecond": "オレンジ (おれんじ, orenji)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "purple", + "wordSecond": "紫 (むらさき, murasaki)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "brown", + "wordSecond": "茶色 (ちゃいろ, chairo)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "gray", + "wordSecond": "灰色 (はいいろ, haiiro)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "light", + "wordSecond": "明るい (あかるい, akarui)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "dark", + "wordSecond": "暗い (くらい, kurai)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pale", + "wordSecond": "薄い (うすい, usui)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bright", + "wordSecond": "鮮やかな (あざやかな, azayakana)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "circle", + "wordSecond": "丸 (まる, maru)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "square", + "wordSecond": "四角 (しかく, shikaku)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "triangle", + "wordSecond": "三角 (さんかく, sankaku)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "rectangle", + "wordSecond": "長方形 (ちょうほうけい, chouhoukei)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "oval", + "wordSecond": "楕円 (だえん, daen)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "star", + "wordSecond": "星 (ほし, hoshi)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "heart", + "wordSecond": "ハート (はーと, haato)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "diamond", + "wordSecond": "ダイヤモンド (だいやもんど, daiyamondo)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "color", + "wordSecond": "色 (いろ, iro)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "shape", + "wordSecond": "形 (かたち, katachi)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "big", + "wordSecond": "大きい (おおきい, ookii)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "small", + "wordSecond": "小さい (ちいさい, chiisai)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "round", + "wordSecond": "丸い (まるい, marui)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "long", + "wordSecond": "長い (ながい, nagai)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "short", + "wordSecond": "短い (みじかい, mijikai)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "wide", + "wordSecond": "広い (ひろい, hiroi)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "narrow", + "wordSecond": "狭い (せまい, semai)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "straight", + "wordSecond": "まっすぐ (まっすぐ, massugu)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "curved", + "wordSecond": "曲がった (まがった, magatta)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pointed", + "wordSecond": "尖った (とがった, togatta)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "flat", + "wordSecond": "平らな (たいらな, tairana)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "thick", + "wordSecond": "厚い (あつい, atsui)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "thin", + "wordSecond": "薄い (うすい, usui)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "deep", + "wordSecond": "深い (ふかい, fukai)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "shallow", + "wordSecond": "浅い (あさい, asai)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "empty", + "wordSecond": "空の (からの, karano)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "full", + "wordSecond": "満ちた (みちた, michita)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "solid", + "wordSecond": "固体の (こたいの, kotaino)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hollow", + "wordSecond": "中空の (ちゅうくうの, chuukuuno)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "transparent", + "wordSecond": "透明な (とうめいな, toumeina)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "opaque", + "wordSecond": "不透明な (ふとうめいな, futoumeina)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "shiny", + "wordSecond": "光る (ひかる, hikaru)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "dull", + "wordSecond": "鈍い (にぶい, nibui)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "soft", + "wordSecond": "柔らかい (やわらかい, yawarakai)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hard", + "wordSecond": "硬い (かたい, katai)", + "createdAt": "2026-02-19T13:04:53.817Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_en_ko_A1.json b/output/2026_02_19_colors_shapes_en_ko_A1.json new file mode 100644 index 0000000..a64fb39 --- /dev/null +++ b/output/2026_02_19_colors_shapes_en_ko_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:05:20.851Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "red", + "wordSecond": "빨간색 (ppalgansaek)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "blue", + "wordSecond": "파란색 (paransaek)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "green", + "wordSecond": "초록색 (choroksaek)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "yellow", + "wordSecond": "노란색 (noransaek)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "black", + "wordSecond": "검정색 (geomjeongsaek)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "white", + "wordSecond": "하얀색 (hayansaek)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pink", + "wordSecond": "분홍색 (bunhongsaek)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "purple", + "wordSecond": "보라색 (borasaek)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "orange", + "wordSecond": "주황색 (juhwangsaek)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "brown", + "wordSecond": "갈색 (galsaek)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "gray", + "wordSecond": "회색 (hoesaek)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "light", + "wordSecond": "밝은 (balgeun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "dark", + "wordSecond": "어두운 (eoduun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pale", + "wordSecond": "연한 (yeonhan)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bright", + "wordSecond": "밝은 (balgeun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "color", + "wordSecond": "색 (saek)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "circle", + "wordSecond": "원 (won)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "square", + "wordSecond": "사각형 (sagakhyeong)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "triangle", + "wordSecond": "삼각형 (samgakhyeong)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "rectangle", + "wordSecond": "직사각형 (jiksagakhyeong)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "star", + "wordSecond": "별 (byeol)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "heart", + "wordSecond": "하트 (hateu)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "oval", + "wordSecond": "타원형 (tawonhyeong)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "diamond", + "wordSecond": "다이아몬드 (daiamondeu)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "line", + "wordSecond": "선 (seon)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "dot", + "wordSecond": "점 (jeom)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "big", + "wordSecond": "큰 (keun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "small", + "wordSecond": "작은 (jageun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "long", + "wordSecond": "긴 (gin)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "short", + "wordSecond": "짧은 (jjalbeun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "round", + "wordSecond": "둥근 (dunggeun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "straight", + "wordSecond": "곧은 (godeun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "curved", + "wordSecond": "굽은 (gubeun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pointed", + "wordSecond": "뾰족한 (ppyojokan)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "flat", + "wordSecond": "평평한 (pyeongpyeonghan)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "thick", + "wordSecond": "두꺼운 (dukkeoun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "thin", + "wordSecond": "얇은 (yalbeun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "wide", + "wordSecond": "넓은 (neolbeun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "narrow", + "wordSecond": "좁은 (jobeun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "tall", + "wordSecond": "높은 (nopeun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "low", + "wordSecond": "낮은 (najeun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "deep", + "wordSecond": "깊은 (gipeun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "shallow", + "wordSecond": "얕은 (yateun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "empty", + "wordSecond": "빈 (bin)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "full", + "wordSecond": "가득한 (gadeukan)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "solid", + "wordSecond": "단단한 (dandanhan)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "soft", + "wordSecond": "부드러운 (budeureoun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "hard", + "wordSecond": "딱딱한 (ttakttakan)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "smooth", + "wordSecond": "매끄러운 (maekkeureoun)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "rough", + "wordSecond": "거친 (geochin)", + "createdAt": "2026-02-19T13:05:20.851Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_en_pl_A1.json b/output/2026_02_19_colors_shapes_en_pl_A1.json new file mode 100644 index 0000000..500d440 --- /dev/null +++ b/output/2026_02_19_colors_shapes_en_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:05:30.131Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "red", + "wordSecond": "czerwony", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "blue", + "wordSecond": "niebieski", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "green", + "wordSecond": "zielony", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "yellow", + "wordSecond": "żółty", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "black", + "wordSecond": "czarny", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "white", + "wordSecond": "biały", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "orange", + "wordSecond": "pomarańczowy", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pink", + "wordSecond": "różowy", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "purple", + "wordSecond": "fioletowy", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "brown", + "wordSecond": "brązowy", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "gray", + "wordSecond": "szary", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "light", + "wordSecond": "jasny", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "dark", + "wordSecond": "ciemny", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pale", + "wordSecond": "blady", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bright", + "wordSecond": "jaskrawy", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "color", + "wordSecond": "kolor", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "circle", + "wordSecond": "koło", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "square", + "wordSecond": "kwadrat", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "triangle", + "wordSecond": "trójkąt", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "rectangle", + "wordSecond": "prostokąt", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "oval", + "wordSecond": "owal", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "star", + "wordSecond": "gwiazda", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "heart", + "wordSecond": "serce", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "diamond", + "wordSecond": "romb", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "shape", + "wordSecond": "kształt", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "round", + "wordSecond": "okrągły", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "long", + "wordSecond": "długi", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "short", + "wordSecond": "krótki", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "big", + "wordSecond": "duży", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "small", + "wordSecond": "mały", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "thin", + "wordSecond": "cienki", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "thick", + "wordSecond": "gruby", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "straight", + "wordSecond": "prosty", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "curved", + "wordSecond": "zakrzywiony", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "point", + "wordSecond": "punkt", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "line", + "wordSecond": "linia", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "side", + "wordSecond": "bok", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "corner", + "wordSecond": "róg", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "center", + "wordSecond": "środek", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "edge", + "wordSecond": "krawędź", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "gold", + "wordSecond": "złoty", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "silver", + "wordSecond": "srebrny", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "beige", + "wordSecond": "beżowy", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "turquoise", + "wordSecond": "turkusowy", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "navy blue", + "wordSecond": "granatowy", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "lime green", + "wordSecond": "limonkowy", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "maroon", + "wordSecond": "bordowy", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cream", + "wordSecond": "kremowy", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "transparent", + "wordSecond": "przezroczysty", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "opaque", + "wordSecond": "nieprzezroczysty", + "createdAt": "2026-02-19T13:05:30.131Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_en_pt_A1.json b/output/2026_02_19_colors_shapes_en_pt_A1.json new file mode 100644 index 0000000..47f86df --- /dev/null +++ b/output/2026_02_19_colors_shapes_en_pt_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:04:10.967Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "red", + "wordSecond": "vermelho", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "blue", + "wordSecond": "azul", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "green", + "wordSecond": "verde", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "yellow", + "wordSecond": "amarelo", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "black", + "wordSecond": "preto", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "white", + "wordSecond": "branco", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "orange", + "wordSecond": "laranja", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pink", + "wordSecond": "rosa", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "purple", + "wordSecond": "roxo", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "brown", + "wordSecond": "marrom", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "gray", + "wordSecond": "cinza", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "gold", + "wordSecond": "dourado", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "silver", + "wordSecond": "prateado", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "light", + "wordSecond": "claro", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dark", + "wordSecond": "escuro", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pale", + "wordSecond": "pálido", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bright", + "wordSecond": "brilhante", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "circle", + "wordSecond": "círculo", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "square", + "wordSecond": "quadrado", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "triangle", + "wordSecond": "triângulo", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rectangle", + "wordSecond": "retângulo", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "oval", + "wordSecond": "oval", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "star", + "wordSecond": "estrela", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "heart", + "wordSecond": "coração", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "diamond", + "wordSecond": "diamante", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "color", + "wordSecond": "cor", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shape", + "wordSecond": "forma", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "round", + "wordSecond": "redondo", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "big", + "wordSecond": "grande", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "small", + "wordSecond": "pequeno", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "long", + "wordSecond": "longo", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "short", + "wordSecond": "curto", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "thin", + "wordSecond": "fino", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "thick", + "wordSecond": "grosso", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "straight", + "wordSecond": "reto", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "curved", + "wordSecond": "curvo", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "point", + "wordSecond": "ponto", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "line", + "wordSecond": "linha", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "side", + "wordSecond": "lado", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "angle", + "wordSecond": "ângulo", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "size", + "wordSecond": "tamanho", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "light blue", + "wordSecond": "azul claro", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dark green", + "wordSecond": "verde escuro", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pink flower", + "wordSecond": "flor rosa", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "brown bear", + "wordSecond": "urso marrom", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "black cat", + "wordSecond": "gato preto", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "white snow", + "wordSecond": "neve branca", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "yellow sun", + "wordSecond": "sol amarelo", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "red apple", + "wordSecond": "maçã vermelha", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "blue sky", + "wordSecond": "céu azul", + "createdAt": "2026-02-19T13:04:10.967Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_en_zh_A1.json b/output/2026_02_19_colors_shapes_en_zh_A1.json new file mode 100644 index 0000000..68d7237 --- /dev/null +++ b/output/2026_02_19_colors_shapes_en_zh_A1.json @@ -0,0 +1,682 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:05:06.492Z", + "metadata": { + "itemCount": 51, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "red", + "wordSecond": "红色 (hóngsè)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "blue", + "wordSecond": "蓝色 (lánsè)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "green", + "wordSecond": "绿色 (lǜsè)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "yellow", + "wordSecond": "黄色 (huángsè)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "black", + "wordSecond": "黑色 (hēisè)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "white", + "wordSecond": "白色 (báisè)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "orange", + "wordSecond": "橙色 (chéngsè)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "purple", + "wordSecond": "紫色 (zǐsè)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pink", + "wordSecond": "粉色 (fěnsè)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "brown", + "wordSecond": "棕色 (zōngsè)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "gray", + "wordSecond": "灰色 (huīsè)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "gold", + "wordSecond": "金色 (jīnsè)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "silver", + "wordSecond": "银色 (yínsè)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "light", + "wordSecond": "浅 (qiǎn)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "dark", + "wordSecond": "深 (shēn)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pale", + "wordSecond": "淡 (dàn)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bright", + "wordSecond": "亮 (liàng)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "circle", + "wordSecond": "圆形 (yuánxíng)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "square", + "wordSecond": "正方形 (zhèngfāngxíng)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "triangle", + "wordSecond": "三角形 (sānjiǎoxíng)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "rectangle", + "wordSecond": "长方形 (chángfāngxíng)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "oval", + "wordSecond": "椭圆形 (tuǒyuánxíng)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "star", + "wordSecond": "星形 (xīngxíng)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "heart", + "wordSecond": "心形 (xīnxíng)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "diamond", + "wordSecond": "菱形 (língxíng)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "color", + "wordSecond": "颜色 (yánsè)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "shape", + "wordSecond": "形状 (xíngzhuàng)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "big", + "wordSecond": "大 (dà)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "small", + "wordSecond": "小 (xiǎo)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "round", + "wordSecond": "圆 (yuán)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "long", + "wordSecond": "长 (cháng)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "short", + "wordSecond": "短 (duǎn)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "wide", + "wordSecond": "宽 (kuān)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "narrow", + "wordSecond": "窄 (zhǎi)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "straight", + "wordSecond": "直 (zhí)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "curved", + "wordSecond": "弯 (wān)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "point", + "wordSecond": "点 (diǎn)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "line", + "wordSecond": "线 (xiàn)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "side", + "wordSecond": "边 (biān)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "corner", + "wordSecond": "角 (jiǎo)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "center", + "wordSecond": "中心 (zhōngxīn)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "inside", + "wordSecond": "里面 (lǐmiàn)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "outside", + "wordSecond": "外面 (wàimiàn)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "top", + "wordSecond": "上面 (shàngmiàn)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bottom", + "wordSecond": "下面 (xiàmiàn)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "left", + "wordSecond": "左 (zuǒ)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "right", + "wordSecond": "右 (yòu)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "front", + "wordSecond": "前面 (qiánmiàn)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "back", + "wordSecond": "后面 (hòumiàn)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "same", + "wordSecond": "相同 (xiāngtóng)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "different", + "wordSecond": "不同 (bùtóng)", + "createdAt": "2026-02-19T13:05:06.492Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_es_de_A1.json b/output/2026_02_19_colors_shapes_es_de_A1.json new file mode 100644 index 0000000..09b16da --- /dev/null +++ b/output/2026_02_19_colors_shapes_es_de_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:05:50.266Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "rojo", + "wordSecond": "rot", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "azul", + "wordSecond": "blau", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "verde", + "wordSecond": "grün", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "amarillo", + "wordSecond": "gelb", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "negro", + "wordSecond": "schwarz", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "blanco", + "wordSecond": "weiß", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "naranja", + "wordSecond": "orange", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "rosa", + "wordSecond": "rosa", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "morado", + "wordSecond": "lila", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "marrón", + "wordSecond": "braun", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "gris", + "wordSecond": "grau", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "claro", + "wordSecond": "hell", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "oscuro", + "wordSecond": "dunkel", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pálido", + "wordSecond": "blass", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "brillante", + "wordSecond": "leuchtend", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "círculo", + "wordSecond": "Kreis", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cuadrado", + "wordSecond": "Quadrat", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "triángulo", + "wordSecond": "Dreieck", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "rectángulo", + "wordSecond": "Rechteck", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "óvalo", + "wordSecond": "Oval", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "estrella", + "wordSecond": "Stern", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "corazón", + "wordSecond": "Herz", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cubo", + "wordSecond": "Würfel", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "esfera", + "wordSecond": "Kugel", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pirámide", + "wordSecond": "Pyramide", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "rombo", + "wordSecond": "Raute", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "trapecio", + "wordSecond": "Trapez", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hexágono", + "wordSecond": "Sechseck", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "octágono", + "wordSecond": "Achteck", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pentágono", + "wordSecond": "Fünfeck", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dorado", + "wordSecond": "golden", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "plateado", + "wordSecond": "silbern", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "beige", + "wordSecond": "beige", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "turquesa", + "wordSecond": "türkis", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "violeta", + "wordSecond": "violett", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "índigo", + "wordSecond": "indigo", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "magenta", + "wordSecond": "magenta", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ocre", + "wordSecond": "ocker", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "granate", + "wordSecond": "kastanienbraun", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "celeste", + "wordSecond": "himmelblau", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "verde lima", + "wordSecond": "limettengrün", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "verde oliva", + "wordSecond": "olivgrün", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "rojo oscuro", + "wordSecond": "dunkelrot", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "azul claro", + "wordSecond": "hellblau", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "amarillo pálido", + "wordSecond": "blassgelb", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "gris oscuro", + "wordSecond": "dunkelgrau", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "rosa brillante", + "wordSecond": "leuchtendrosa", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "línea", + "wordSecond": "Linie", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "punto", + "wordSecond": "Punkt", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "curva", + "wordSecond": "Kurve", + "createdAt": "2026-02-19T13:05:50.266Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_es_fr_A1.json b/output/2026_02_19_colors_shapes_es_fr_A1.json new file mode 100644 index 0000000..5ecaf7e --- /dev/null +++ b/output/2026_02_19_colors_shapes_es_fr_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:05:59.616Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "rojo", + "wordSecond": "rouge", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "azul", + "wordSecond": "bleu", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "verde", + "wordSecond": "vert", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "amarillo", + "wordSecond": "jaune", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "negro", + "wordSecond": "noir", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "blanco", + "wordSecond": "blanc", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gris", + "wordSecond": "gris", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "marrón", + "wordSecond": "marron", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "naranja", + "wordSecond": "orange", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "rosa", + "wordSecond": "rose", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "morado", + "wordSecond": "violet", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "claro", + "wordSecond": "clair", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "oscuro", + "wordSecond": "foncé", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pálido", + "wordSecond": "pâle", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "brillante", + "wordSecond": "brillant", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "círculo", + "wordSecond": "cercle", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cuadrado", + "wordSecond": "carré", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "triángulo", + "wordSecond": "triangle", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "rectángulo", + "wordSecond": "rectangle", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "óvalo", + "wordSecond": "ovale", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "estrella", + "wordSecond": "étoile", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "corazón", + "wordSecond": "cœur", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cubo", + "wordSecond": "cube", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "esfera", + "wordSecond": "sphère", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pirámide", + "wordSecond": "pyramide", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "largo", + "wordSecond": "long", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "corto", + "wordSecond": "court", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "grande", + "wordSecond": "grand", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pequeño", + "wordSecond": "petit", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ancho", + "wordSecond": "large", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "estrecho", + "wordSecond": "étroit", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "redondo", + "wordSecond": "rond", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "puntiagudo", + "wordSecond": "pointu", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "plano", + "wordSecond": "plat", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "curvo", + "wordSecond": "courbe", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "recto", + "wordSecond": "droit", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sólido", + "wordSecond": "solide", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hueco", + "wordSecond": "creux", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "grueso", + "wordSecond": "épais", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fino", + "wordSecond": "fin", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dorado", + "wordSecond": "doré", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "plateado", + "wordSecond": "argenté", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "beige", + "wordSecond": "beige", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "turquesa", + "wordSecond": "turquoise", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "índigo", + "wordSecond": "indigo", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "magenta", + "wordSecond": "magenta", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cian", + "wordSecond": "cyan", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ocre", + "wordSecond": "ocre", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "carmesí", + "wordSecond": "cramoisi", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ámbar", + "wordSecond": "ambre", + "createdAt": "2026-02-19T13:05:59.616Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_es_it_A1.json b/output/2026_02_19_colors_shapes_es_it_A1.json new file mode 100644 index 0000000..374b84d --- /dev/null +++ b/output/2026_02_19_colors_shapes_es_it_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:06:09.087Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "rojo", + "wordSecond": "rosso", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "azul", + "wordSecond": "blu", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "verde", + "wordSecond": "verde", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "amarillo", + "wordSecond": "giallo", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "negro", + "wordSecond": "nero", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "blanco", + "wordSecond": "bianco", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "naranja", + "wordSecond": "arancione", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "rosa", + "wordSecond": "rosa", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "marrón", + "wordSecond": "marrone", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gris", + "wordSecond": "grigio", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "morado", + "wordSecond": "viola", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "claro", + "wordSecond": "chiaro", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "oscuro", + "wordSecond": "scuro", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pálido", + "wordSecond": "pallido", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "brillante", + "wordSecond": "brillante", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "círculo", + "wordSecond": "cerchio", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cuadrado", + "wordSecond": "quadrato", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "triángulo", + "wordSecond": "triangolo", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "rectángulo", + "wordSecond": "rettangolo", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "óvalo", + "wordSecond": "ovale", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estrella", + "wordSecond": "stella", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "corazón", + "wordSecond": "cuore", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "diamante", + "wordSecond": "diamante", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cruz", + "wordSecond": "croce", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "flecha", + "wordSecond": "freccia", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "luna", + "wordSecond": "luna", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sol", + "wordSecond": "sole", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nube", + "wordSecond": "nuvola", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "flor", + "wordSecond": "fiore", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hoja", + "wordSecond": "foglia", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "árbol", + "wordSecond": "albero", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "casa", + "wordSecond": "casa", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "coche", + "wordSecond": "macchina", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "barco", + "wordSecond": "barca", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "avión", + "wordSecond": "aereo", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pez", + "wordSecond": "pesce", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pájaro", + "wordSecond": "uccello", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "perro", + "wordSecond": "cane", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gato", + "wordSecond": "gatto", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "libro", + "wordSecond": "libro", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mesa", + "wordSecond": "tavolo", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "silla", + "wordSecond": "sedia", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "puerta", + "wordSecond": "porta", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ventana", + "wordSecond": "finestra", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "reloj", + "wordSecond": "orologio", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "llave", + "wordSecond": "chiave", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bolígrafo", + "wordSecond": "penna", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "papel", + "wordSecond": "carta", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "agua", + "wordSecond": "acqua", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "fuego", + "wordSecond": "fuoco", + "createdAt": "2026-02-19T13:06:09.087Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_es_ja_A1.json b/output/2026_02_19_colors_shapes_es_ja_A1.json new file mode 100644 index 0000000..ec5cc99 --- /dev/null +++ b/output/2026_02_19_colors_shapes_es_ja_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:06:27.938Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "rojo", + "wordSecond": "赤 (あか, aka)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "azul", + "wordSecond": "青 (あお, ao)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "verde", + "wordSecond": "緑 (みどり, midori)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "amarillo", + "wordSecond": "黄色 (きいろ, kiiro)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "negro", + "wordSecond": "黒 (くろ, kuro)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "blanco", + "wordSecond": "白 (しろ, shiro)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "rosa", + "wordSecond": "ピンク (ぴんく, pinku)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "marrón", + "wordSecond": "茶色 (ちゃいろ, chairo)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "gris", + "wordSecond": "灰色 (はいいろ, haiiro)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "naranja", + "wordSecond": "オレンジ (おれんじ, orenji)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "morado", + "wordSecond": "紫 (むらさき, murasaki)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "claro", + "wordSecond": "明るい (あかるい, akarui)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "oscuro", + "wordSecond": "暗い (くらい, kurai)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pálido", + "wordSecond": "薄い (うすい, usui)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "círculo", + "wordSecond": "丸 (まる, maru)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cuadrado", + "wordSecond": "四角 (しかく, shikaku)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "triángulo", + "wordSecond": "三角 (さんかく, sankaku)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "rectángulo", + "wordSecond": "長方形 (ちょうほうけい, chouhoukei)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "estrella", + "wordSecond": "星 (ほし, hoshi)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "corazón", + "wordSecond": "ハート (はーと, haato)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "óvalo", + "wordSecond": "楕円 (だえん, daen)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "diamante", + "wordSecond": "ダイヤモンド (だいやもんど, daiyamondo)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cubo", + "wordSecond": "立方体 (りっぽうたい, rippoutai)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "esfera", + "wordSecond": "球 (きゅう, kyuu)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "azul claro", + "wordSecond": "水色 (みずいろ, mizuiro)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "azul oscuro", + "wordSecond": "紺色 (こんいろ, koniro)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "verde claro", + "wordSecond": "薄緑 (うすみどり, usumidori)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "verde oscuro", + "wordSecond": "深緑 (ふかみどり, fukamidori)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "rojo claro", + "wordSecond": "薄赤 (うすあか, usuaka)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "rojo oscuro", + "wordSecond": "深紅 (しんく, shinku)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "amarillo claro", + "wordSecond": "薄黄色 (うすきいろ, usukiiro)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "amarillo oscuro", + "wordSecond": "濃い黄色 (こいきいろ, koikiiro)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "rosa claro", + "wordSecond": "薄ピンク (うすぴんく, usupinku)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "rosa oscuro", + "wordSecond": "濃いピンク (こいぴんく, koipinku)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "blanco roto", + "wordSecond": "アイボリー (あいぼりー, aiborii)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "gris claro", + "wordSecond": "薄灰色 (うすはいいろ, usuhaiiro)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "gris oscuro", + "wordSecond": "濃い灰色 (こいはいいろ, koihaiiro)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "beige", + "wordSecond": "ベージュ (べーじゅ, beiju)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dorado", + "wordSecond": "金色 (きんいろ, kiniro)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "plateado", + "wordSecond": "銀色 (ぎんいろ, giniro)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cobre", + "wordSecond": "銅色 (どういろ, douiro)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "turquesa", + "wordSecond": "ターコイズ (たーこいず, taakoizu)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lila", + "wordSecond": "ライラック (らいらっく, rairakku)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "magenta", + "wordSecond": "マゼンタ (まぜんた, mazenta)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cian", + "wordSecond": "シアン (しあん, shian)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "círculo pequeño", + "wordSecond": "小さい丸 (ちいさいまる, chiisai maru)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cuadrado grande", + "wordSecond": "大きい四角 (おおきいしかく, ookii shikaku)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "triángulo largo", + "wordSecond": "長い三角 (ながいさんかく, nagai sankaku)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "rectángulo ancho", + "wordSecond": "広い長方形 (ひろいちょうほうけい, hiroi chouhoukei)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "estrella brillante", + "wordSecond": "明るい星 (あかるいほし, akarui hoshi)", + "createdAt": "2026-02-19T13:06:27.938Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_es_ko_A1.json b/output/2026_02_19_colors_shapes_es_ko_A1.json new file mode 100644 index 0000000..e6bc239 --- /dev/null +++ b/output/2026_02_19_colors_shapes_es_ko_A1.json @@ -0,0 +1,682 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:07:01.409Z", + "metadata": { + "itemCount": 51, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "rojo", + "wordSecond": "빨강 (ppalgang)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "azul", + "wordSecond": "파랑 (parang)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "verde", + "wordSecond": "초록 (chorok)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "amarillo", + "wordSecond": "노랑 (norang)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "negro", + "wordSecond": "검정 (geomjeong)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "blanco", + "wordSecond": "하양 (hayang)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "naranja", + "wordSecond": "주황 (juhwang)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "rosa", + "wordSecond": "분홍 (bunhong)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "morado", + "wordSecond": "보라 (bora)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "marrón", + "wordSecond": "갈색 (galsaek)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "gris", + "wordSecond": "회색 (hoesaek)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "claro", + "wordSecond": "밝은 (balgeun)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "oscuro", + "wordSecond": "어두운 (eoduun)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pálido", + "wordSecond": "연한 (yeonhan)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "brillante", + "wordSecond": "밝은 (balgeun)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "círculo", + "wordSecond": "원 (won)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cuadrado", + "wordSecond": "사각형 (sagakhyeong)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "triángulo", + "wordSecond": "삼각형 (samgakhyeong)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "rectángulo", + "wordSecond": "직사각형 (jiksagakhyeong)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "estrella", + "wordSecond": "별 (byeol)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "corazón", + "wordSecond": "하트 (hateu)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "óvalo", + "wordSecond": "타원 (tawon)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "diamante", + "wordSecond": "다이아몬드 (daiamondeu)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cubo", + "wordSecond": "정육면체 (jeongyungmyeonche)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "esfera", + "wordSecond": "구 (gu)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "arcoíris", + "wordSecond": "무지개 (mujigae)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "plateado", + "wordSecond": "은색 (eunsaek)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dorado", + "wordSecond": "금색 (geumsaek)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "beige", + "wordSecond": "베이지 (beiji)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "turquesa", + "wordSecond": "청록색 (cheongnoksaek)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lila", + "wordSecond": "라일락 (raillak)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "azul marino", + "wordSecond": "남색 (namsaek)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "verde lima", + "wordSecond": "라임색 (raimsaek)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "rojo oscuro", + "wordSecond": "진한 빨강 (jinhan ppalgang)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "azul claro", + "wordSecond": "밝은 파랑 (balgeun parang)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "verde oscuro", + "wordSecond": "진한 초록 (jinhan chorok)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "amarillo claro", + "wordSecond": "밝은 노랑 (balgeun norang)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "rosa pálido", + "wordSecond": "연한 분홍 (yeonhan bunhong)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "círculo grande", + "wordSecond": "큰 원 (keun won)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cuadrado pequeño", + "wordSecond": "작은 사각형 (jageun sagakhyeong)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "triángulo rojo", + "wordSecond": "빨간 삼각형 (ppalgan samgakhyeong)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "rectángulo azul", + "wordSecond": "파란 직사각형 (paran jiksagakhyeong)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "estrella amarilla", + "wordSecond": "노란 별 (noran byeol)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "corazón rosa", + "wordSecond": "분홍 하트 (bunhong hateu)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "óvalo verde", + "wordSecond": "초록 타원 (chorok tawon)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "diamante blanco", + "wordSecond": "하얀 다이아몬드 (hayan daiamondeu)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cubo negro", + "wordSecond": "검은 정육면체 (geomeun jeongyungmyeonche)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "esfera plateada", + "wordSecond": "은색 구 (eunsaek gu)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "arcoíris brillante", + "wordSecond": "밝은 무지개 (balgeun mujigae)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "color", + "wordSecond": "색 (saek)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "forma", + "wordSecond": "모양 (moyang)", + "createdAt": "2026-02-19T13:07:01.409Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_es_pl_A1.json b/output/2026_02_19_colors_shapes_es_pl_A1.json new file mode 100644 index 0000000..51db878 --- /dev/null +++ b/output/2026_02_19_colors_shapes_es_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:07:12.530Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "rojo", + "wordSecond": "czerwony", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "azul", + "wordSecond": "niebieski", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "verde", + "wordSecond": "zielony", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "amarillo", + "wordSecond": "żółty", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "negro", + "wordSecond": "czarny", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "blanco", + "wordSecond": "biały", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "gris", + "wordSecond": "szary", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "marrón", + "wordSecond": "brązowy", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "naranja", + "wordSecond": "pomarańczowy", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "rosa", + "wordSecond": "różowy", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "morado", + "wordSecond": "fioletowy", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "claro", + "wordSecond": "jasny", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "oscuro", + "wordSecond": "ciemny", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pálido", + "wordSecond": "blady", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "brillante", + "wordSecond": "jaskrawy", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "círculo", + "wordSecond": "koło", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cuadrado", + "wordSecond": "kwadrat", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "triángulo", + "wordSecond": "trójkąt", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "rectángulo", + "wordSecond": "prostokąt", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "estrella", + "wordSecond": "gwiazda", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "corazón", + "wordSecond": "serce", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "óvalo", + "wordSecond": "owal", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "diamante", + "wordSecond": "romb", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cubo", + "wordSecond": "sześcian", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "esfera", + "wordSecond": "kula", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "línea", + "wordSecond": "linia", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "punto", + "wordSecond": "kropka", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "curva", + "wordSecond": "krzywa", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "arco", + "wordSecond": "łuk", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "flecha", + "wordSecond": "strzałka", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cruz", + "wordSecond": "krzyż", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "espiral", + "wordSecond": "spirala", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "anillo", + "wordSecond": "pierścień", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "celeste", + "wordSecond": "błękitny", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "turquesa", + "wordSecond": "turkusowy", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "violeta", + "wordSecond": "fiołkowy", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "beige", + "wordSecond": "beżowy", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "plateado", + "wordSecond": "srebrny", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dorado", + "wordSecond": "złoty", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "granate", + "wordSecond": "bordowy", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "lila", + "wordSecond": "liliowy", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "verde claro", + "wordSecond": "jasnozielony", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "azul oscuro", + "wordSecond": "ciemnoniebieski", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "rojo brillante", + "wordSecond": "jaskrawoczerwony", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "rosa pálido", + "wordSecond": "bladoróżowy", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cuadrado pequeño", + "wordSecond": "mały kwadrat", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "círculo grande", + "wordSecond": "duże koło", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "triángulo azul", + "wordSecond": "niebieski trójkąt", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "estrella amarilla", + "wordSecond": "żółta gwiazda", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "corazón rojo", + "wordSecond": "czerwone serce", + "createdAt": "2026-02-19T13:07:12.530Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_es_pt_A1.json b/output/2026_02_19_colors_shapes_es_pt_A1.json new file mode 100644 index 0000000..d0ca533 --- /dev/null +++ b/output/2026_02_19_colors_shapes_es_pt_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:05:40.182Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rojo", + "wordSecond": "vermelho", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "azul", + "wordSecond": "azul", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "verde", + "wordSecond": "verde", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "amarillo", + "wordSecond": "amarelo", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "negro", + "wordSecond": "preto", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "blanco", + "wordSecond": "branco", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gris", + "wordSecond": "cinza", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "marrón", + "wordSecond": "marrom", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rosa", + "wordSecond": "rosa", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "naranja", + "wordSecond": "laranja", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "morado", + "wordSecond": "roxo", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "claro", + "wordSecond": "claro", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "oscuro", + "wordSecond": "escuro", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pálido", + "wordSecond": "pálido", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "brillante", + "wordSecond": "brilhante", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "círculo", + "wordSecond": "círculo", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuadrado", + "wordSecond": "quadrado", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "triángulo", + "wordSecond": "triângulo", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rectángulo", + "wordSecond": "retângulo", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "óvalo", + "wordSecond": "oval", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estrella", + "wordSecond": "estrela", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "corazón", + "wordSecond": "coração", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cubo", + "wordSecond": "cubo", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "esfera", + "wordSecond": "esfera", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "línea", + "wordSecond": "linha", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "punto", + "wordSecond": "ponto", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "curva", + "wordSecond": "curva", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ángulo", + "wordSecond": "ângulo", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dorado", + "wordSecond": "dourado", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "plateado", + "wordSecond": "prateado", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "celeste", + "wordSecond": "azul-celeste", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "turquesa", + "wordSecond": "turquesa", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "violeta", + "wordSecond": "violeta", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "beige", + "wordSecond": "bege", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "crema", + "wordSecond": "creme", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "granate", + "wordSecond": "granate", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "carmesí", + "wordSecond": "carmim", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "índigo", + "wordSecond": "índigo", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "magenta", + "wordSecond": "magenta", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cian", + "wordSecond": "ciano", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "café", + "wordSecond": "marrom", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "amarillo claro", + "wordSecond": "amarelo claro", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "azul oscuro", + "wordSecond": "azul escuro", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rojo brillante", + "wordSecond": "vermelho brilhante", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "verde pálido", + "wordSecond": "verde pálido", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rombo", + "wordSecond": "losango", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pentágono", + "wordSecond": "pentágono", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hexágono", + "wordSecond": "hexágono", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "trapecio", + "wordSecond": "trapézio", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pirámide", + "wordSecond": "pirâmide", + "createdAt": "2026-02-19T13:05:40.182Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_es_zh_A1.json b/output/2026_02_19_colors_shapes_es_zh_A1.json new file mode 100644 index 0000000..993673d --- /dev/null +++ b/output/2026_02_19_colors_shapes_es_zh_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:06:44.455Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "rojo", + "wordSecond": "红色 (hóngsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "azul", + "wordSecond": "蓝色 (lánsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "verde", + "wordSecond": "绿色 (lǜsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "amarillo", + "wordSecond": "黄色 (huángsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "negro", + "wordSecond": "黑色 (hēisè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "blanco", + "wordSecond": "白色 (báisè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "naranja", + "wordSecond": "橙色 (chéngsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "rosa", + "wordSecond": "粉色 (fěnsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "morado", + "wordSecond": "紫色 (zǐsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "marrón", + "wordSecond": "棕色 (zōngsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "gris", + "wordSecond": "灰色 (huīsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "claro", + "wordSecond": "浅 (qiǎn)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "oscuro", + "wordSecond": "深 (shēn)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pálido", + "wordSecond": "淡 (dàn)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "brillante", + "wordSecond": "亮 (liàng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "círculo", + "wordSecond": "圆形 (yuánxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cuadrado", + "wordSecond": "正方形 (zhèngfāngxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "triángulo", + "wordSecond": "三角形 (sānjiǎoxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "rectángulo", + "wordSecond": "长方形 (chángfāngxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "óvalo", + "wordSecond": "椭圆形 (tuǒyuánxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "estrella", + "wordSecond": "星形 (xīngxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "corazón", + "wordSecond": "心形 (xīnxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "diamante", + "wordSecond": "菱形 (língxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cubo", + "wordSecond": "立方体 (lìfāngtǐ)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "esfera", + "wordSecond": "球体 (qiútǐ)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "rojo claro", + "wordSecond": "浅红色 (qiǎn hóngsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "azul oscuro", + "wordSecond": "深蓝色 (shēn lánsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "verde pálido", + "wordSecond": "淡绿色 (dàn lǜsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "amarillo brillante", + "wordSecond": "亮黄色 (liàng huángsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "negro mate", + "wordSecond": "暗黑色 (àn hēisè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "blanco puro", + "wordSecond": "纯白色 (chún báisè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "naranja intenso", + "wordSecond": "深橙色 (shēn chéngsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "rosa suave", + "wordSecond": "柔粉色 (róu fěnsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "morado claro", + "wordSecond": "浅紫色 (qiǎn zǐsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "marrón oscuro", + "wordSecond": "深棕色 (shēn zōngsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "gris claro", + "wordSecond": "浅灰色 (qiǎn huīsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "círculo grande", + "wordSecond": "大圆形 (dà yuánxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cuadrado pequeño", + "wordSecond": "小正方形 (xiǎo zhèngfāngxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "triángulo equilátero", + "wordSecond": "等边三角形 (děngbiān sānjiǎoxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "rectángulo largo", + "wordSecond": "长长方形 (cháng chángfāngxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "óvalo perfecto", + "wordSecond": "完美椭圆形 (wánměi tuǒyuánxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "estrella de cinco puntas", + "wordSecond": "五角星形 (wǔjiǎo xīngxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "corazón rojo", + "wordSecond": "红色心形 (hóngsè xīnxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "diamante azul", + "wordSecond": "蓝色菱形 (lánsè língxíng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cubo sólido", + "wordSecond": "实心立方体 (shíxīn lìfāngtǐ)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "esfera lisa", + "wordSecond": "光滑球体 (guānghuá qiútǐ)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "color", + "wordSecond": "颜色 (yánsè)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "forma", + "wordSecond": "形状 (xíngzhuàng)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "línea", + "wordSecond": "线 (xiàn)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "punto", + "wordSecond": "点 (diǎn)", + "createdAt": "2026-02-19T13:06:44.455Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_fr_it_A1.json b/output/2026_02_19_colors_shapes_fr_it_A1.json new file mode 100644 index 0000000..5346955 --- /dev/null +++ b/output/2026_02_19_colors_shapes_fr_it_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:10:08.654Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rouge", + "wordSecond": "rosso", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bleu", + "wordSecond": "blu", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vert", + "wordSecond": "verde", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "jaune", + "wordSecond": "giallo", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "noir", + "wordSecond": "nero", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "blanc", + "wordSecond": "bianco", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "gris", + "wordSecond": "grigio", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "marron", + "wordSecond": "marrone", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "orange", + "wordSecond": "arancione", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rose", + "wordSecond": "rosa", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "violet", + "wordSecond": "viola", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "clair", + "wordSecond": "chiaro", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "foncé", + "wordSecond": "scuro", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pâle", + "wordSecond": "pallido", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cercle", + "wordSecond": "cerchio", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "carré", + "wordSecond": "quadrato", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "triangle", + "wordSecond": "triangolo", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rectangle", + "wordSecond": "rettangolo", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ovale", + "wordSecond": "ovale", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "étoile", + "wordSecond": "stella", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cœur", + "wordSecond": "cuore", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "croix", + "wordSecond": "croce", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ligne", + "wordSecond": "linea", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "point", + "wordSecond": "punto", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "forme", + "wordSecond": "forma", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "couleur", + "wordSecond": "colore", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "lumière", + "wordSecond": "luce", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sombre", + "wordSecond": "scuro", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "brillant", + "wordSecond": "brillante", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "terne", + "wordSecond": "spento", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "grand", + "wordSecond": "grande", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "petit", + "wordSecond": "piccolo", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "long", + "wordSecond": "lungo", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "court", + "wordSecond": "corto", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rond", + "wordSecond": "rotondo", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "plat", + "wordSecond": "piatto", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "droit", + "wordSecond": "dritto", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "courbe", + "wordSecond": "curvo", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "haut", + "wordSecond": "alto", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bas", + "wordSecond": "basso", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "large", + "wordSecond": "largo", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "étroit", + "wordSecond": "stretto", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "plein", + "wordSecond": "pieno", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vide", + "wordSecond": "vuoto", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "simple", + "wordSecond": "semplice", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "complexe", + "wordSecond": "complesso", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "identique", + "wordSecond": "identico", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "différent", + "wordSecond": "diverso", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "même", + "wordSecond": "stesso", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "autre", + "wordSecond": "altro", + "createdAt": "2026-02-19T13:10:08.654Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_fr_ja_A1.json b/output/2026_02_19_colors_shapes_fr_ja_A1.json new file mode 100644 index 0000000..9a66fd1 --- /dev/null +++ b/output/2026_02_19_colors_shapes_fr_ja_A1.json @@ -0,0 +1,624 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:10:26.962Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rouge", + "wordSecond": "赤 (あか, aka)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bleu", + "wordSecond": "青 (あお, ao)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "vert", + "wordSecond": "緑 (みどり, midori)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "jaune", + "wordSecond": "黄色 (きいろ, kiiro)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "noir", + "wordSecond": "黒 (くろ, kuro)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "blanc", + "wordSecond": "白 (しろ, shiro)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "orange", + "wordSecond": "オレンジ (おれんじ, orenji)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rose", + "wordSecond": "ピンク (ぴんく, pinku)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "marron", + "wordSecond": "茶色 (ちゃいろ, chairo)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "gris", + "wordSecond": "灰色 (はいいろ, haiiro)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "violet", + "wordSecond": "紫 (むらさき, murasaki)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "clair", + "wordSecond": "明るい (あかるい, akarui)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "foncé", + "wordSecond": "暗い (くらい, kurai)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pâle", + "wordSecond": "薄い (うすい, usui)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cercle", + "wordSecond": "丸 (まる, maru)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "carré", + "wordSecond": "四角 (しかく, shikaku)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "triangle", + "wordSecond": "三角 (さんかく, sankaku)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rectangle", + "wordSecond": "長方形 (ちょうほうけい, chouhoukei)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ovale", + "wordSecond": "楕円 (だえん, daen)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "étoile", + "wordSecond": "星 (ほし, hoshi)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cœur", + "wordSecond": "ハート (はーと, haato)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "diamant", + "wordSecond": "ダイヤモンド (だいやもんど, daiyamondo)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "jaune clair", + "wordSecond": "薄黄色 (うすきいろ, usukiiro)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bleu foncé", + "wordSecond": "濃い青 (こいあお, koiao)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "vert clair", + "wordSecond": "薄緑 (うすみどり, usumidori)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rouge foncé", + "wordSecond": "濃い赤 (こいあか, koï aka)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "blanc cassé", + "wordSecond": "生成り色 (きなりいろ, kinariiro)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "gris clair", + "wordSecond": "薄灰色 (うすはいいろ, usuhaiiro)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "gris foncé", + "wordSecond": "濃い灰色 (こいはいいろ, koihaiiro)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rose pâle", + "wordSecond": "薄ピンク (うすぴんく, usupinku)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "violet foncé", + "wordSecond": "濃い紫 (こいむらさき, koimurasaki)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "marron clair", + "wordSecond": "薄茶色 (うすちゃいろ, usuchairo)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "marron foncé", + "wordSecond": "濃い茶色 (こいちゃいろ, koichairo)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "orange clair", + "wordSecond": "薄オレンジ (うすおれんじ, usuorenji)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "orange foncé", + "wordSecond": "濃いオレンジ (こいおれんじ, koiorenji)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "noir et blanc", + "wordSecond": "白黒 (しろくろ, shirokuro)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "couleur", + "wordSecond": "色 (いろ, iro)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "forme", + "wordSecond": "形 (かたち, katachi)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "grand", + "wordSecond": "大きい (おおきい, ookii)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "petit", + "wordSecond": "小さい (ちいさい, chiisai)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "long", + "wordSecond": "長い (ながい, nagai)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "court", + "wordSecond": "短い (みじかい, mijikai)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rond", + "wordSecond": "丸い (まるい, marui)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pointu", + "wordSecond": "尖った (とがった, togatta)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rayé", + "wordSecond": "縞模様 (しまもよう, shimamoyou)", + "createdAt": "2026-02-19T13:10:26.962Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_fr_ko_A1.json b/output/2026_02_19_colors_shapes_fr_ko_A1.json new file mode 100644 index 0000000..d612873 --- /dev/null +++ b/output/2026_02_19_colors_shapes_fr_ko_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:10:57.180Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "rouge", + "wordSecond": "빨간색 (ppalgansaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "bleu", + "wordSecond": "파란색 (paransaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "vert", + "wordSecond": "초록색 (choroksaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "jaune", + "wordSecond": "노란색 (noransaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "noir", + "wordSecond": "검은색 (geomeunsaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "blanc", + "wordSecond": "하얀색 (hayansaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "orange", + "wordSecond": "주황색 (juhwangsaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "rose", + "wordSecond": "분홍색 (bunhongsaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "violet", + "wordSecond": "보라색 (borasaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "marron", + "wordSecond": "갈색 (galsaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "gris", + "wordSecond": "회색 (hoesaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "clair", + "wordSecond": "밝은 (balgeun)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "foncé", + "wordSecond": "어두운 (eoduun)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pâle", + "wordSecond": "연한 (yeonhan)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cercle", + "wordSecond": "원 (won)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "carré", + "wordSecond": "사각형 (sagakhyeong)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "triangle", + "wordSecond": "삼각형 (samgakhyeong)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "rectangle", + "wordSecond": "직사각형 (jiksagakhyeong)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "ovale", + "wordSecond": "타원형 (tawonhyeong)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "étoile", + "wordSecond": "별 (byeol)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cœur", + "wordSecond": "하트 (hateu)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "diamant", + "wordSecond": "다이아몬드 (daiamondeu)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "croix", + "wordSecond": "십자가 (sipjaga)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "lune", + "wordSecond": "달 (dal)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "soleil", + "wordSecond": "해 (hae)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "nuage", + "wordSecond": "구름 (gureum)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "arc-en-ciel", + "wordSecond": "무지개 (mujigae)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "argent", + "wordSecond": "은색 (eunsaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "or", + "wordSecond": "금색 (geumsaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "turquoise", + "wordSecond": "청록색 (cheongnoksaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "beige", + "wordSecond": "베이지색 (beijisaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "violet foncé", + "wordSecond": "진한 보라색 (jinhan borasaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "vert clair", + "wordSecond": "밝은 초록색 (balgeun choroksaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "bleu marine", + "wordSecond": "남색 (namsaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "rouge foncé", + "wordSecond": "진한 빨간색 (jinhan ppalgansaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "jaune pâle", + "wordSecond": "연한 노란색 (yeonhan noransaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "gris clair", + "wordSecond": "밝은 회색 (balgeun hoesaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "noir et blanc", + "wordSecond": "흑백 (heukbaek)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "couleur", + "wordSecond": "색깔 (saekkkal)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "forme", + "wordSecond": "모양 (moyang)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "grand", + "wordSecond": "큰 (keun)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "petit", + "wordSecond": "작은 (jageun)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "long", + "wordSecond": "긴 (gin)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "court", + "wordSecond": "짧은 (jjalbeun)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "rond", + "wordSecond": "둥근 (dunggeun)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pointu", + "wordSecond": "뾰족한 (ppyojokan)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "lisse", + "wordSecond": "매끄러운 (maekkeureoun)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "rugueux", + "wordSecond": "거친 (geochin)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "transparent", + "wordSecond": "투명한 (tumyeonghan)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "brillant", + "wordSecond": "반짝이는 (banjjagineun)", + "createdAt": "2026-02-19T13:10:57.180Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_fr_pl_A1.json b/output/2026_02_19_colors_shapes_fr_pl_A1.json new file mode 100644 index 0000000..55068ef --- /dev/null +++ b/output/2026_02_19_colors_shapes_fr_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:11:07.220Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rouge", + "wordSecond": "czerwony", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "bleu", + "wordSecond": "niebieski", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "vert", + "wordSecond": "zielony", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "jaune", + "wordSecond": "żółty", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "noir", + "wordSecond": "czarny", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "blanc", + "wordSecond": "biały", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "gris", + "wordSecond": "szary", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "marron", + "wordSecond": "brązowy", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "orange", + "wordSecond": "pomarańczowy", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rose", + "wordSecond": "różowy", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "violet", + "wordSecond": "fioletowy", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "clair", + "wordSecond": "jasny", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "foncé", + "wordSecond": "ciemny", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pâle", + "wordSecond": "blady", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cercle", + "wordSecond": "koło", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "carré", + "wordSecond": "kwadrat", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "triangle", + "wordSecond": "trójkąt", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rectangle", + "wordSecond": "prostokąt", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "ovale", + "wordSecond": "owal", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "étoile", + "wordSecond": "gwiazda", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cœur", + "wordSecond": "serce", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "losange", + "wordSecond": "romb", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "croix", + "wordSecond": "krzyż", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cercle", + "wordSecond": "okrąg", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cube", + "wordSecond": "sześcian", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sphère", + "wordSecond": "kula", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cylindre", + "wordSecond": "walec", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cône", + "wordSecond": "stożek", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pyramide", + "wordSecond": "piramida", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "arc", + "wordSecond": "łuk", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "courbe", + "wordSecond": "krzywa", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "ligne", + "wordSecond": "linia", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "point", + "wordSecond": "punkt", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "forme", + "wordSecond": "kształt", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "grand", + "wordSecond": "duży", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "petit", + "wordSecond": "mały", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "long", + "wordSecond": "długi", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "court", + "wordSecond": "krótki", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "large", + "wordSecond": "szeroki", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "étroit", + "wordSecond": "wąski", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rond", + "wordSecond": "okrągły", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "carré", + "wordSecond": "kwadratowy", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "triangulaire", + "wordSecond": "trójkątny", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rectangulaire", + "wordSecond": "prostokątny", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "ovale", + "wordSecond": "owalny", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "doré", + "wordSecond": "złoty", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "argenté", + "wordSecond": "srebrny", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "multicolore", + "wordSecond": "wielokolorowy", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "uni", + "wordSecond": "jednolity", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rayé", + "wordSecond": "w paski", + "createdAt": "2026-02-19T13:11:07.220Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_fr_zh_A1.json b/output/2026_02_19_colors_shapes_fr_zh_A1.json new file mode 100644 index 0000000..7b75930 --- /dev/null +++ b/output/2026_02_19_colors_shapes_fr_zh_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:10:41.526Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "rouge", + "wordSecond": "红色 (hóngsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "bleu", + "wordSecond": "蓝色 (lánsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vert", + "wordSecond": "绿色 (lǜsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "jaune", + "wordSecond": "黄色 (huángsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "noir", + "wordSecond": "黑色 (hēisè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "blanc", + "wordSecond": "白色 (báisè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "orange", + "wordSecond": "橙色 (chéngsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "rose", + "wordSecond": "粉色 (fěnsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "violet", + "wordSecond": "紫色 (zǐsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "marron", + "wordSecond": "棕色 (zōngsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "gris", + "wordSecond": "灰色 (huīsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "clair", + "wordSecond": "浅 (qiǎn)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "foncé", + "wordSecond": "深 (shēn)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pâle", + "wordSecond": "淡 (dàn)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cercle", + "wordSecond": "圆形 (yuánxíng)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "carré", + "wordSecond": "正方形 (zhèngfāngxíng)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "triangle", + "wordSecond": "三角形 (sānjiǎoxíng)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "rectangle", + "wordSecond": "长方形 (chángfāngxíng)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ovale", + "wordSecond": "椭圆形 (tuǒyuánxíng)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "étoile", + "wordSecond": "星形 (xīngxíng)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cœur", + "wordSecond": "心形 (xīnxíng)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "diamant", + "wordSecond": "菱形 (língxíng)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "couleur", + "wordSecond": "颜色 (yánsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "forme", + "wordSecond": "形状 (xíngzhuàng)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "grand", + "wordSecond": "大 (dà)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "petit", + "wordSecond": "小 (xiǎo)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "long", + "wordSecond": "长 (cháng)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "court", + "wordSecond": "短 (duǎn)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "rond", + "wordSecond": "圆 (yuán)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "carré", + "wordSecond": "方 (fāng)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pointu", + "wordSecond": "尖 (jiān)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "doré", + "wordSecond": "金色 (jīnsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "argenté", + "wordSecond": "银色 (yínsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "beige", + "wordSecond": "米色 (mǐsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "turquoise", + "wordSecond": "青绿色 (qīnglǜsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "magenta", + "wordSecond": "洋红色 (yánghóngsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cyan", + "wordSecond": "青色 (qīngsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "indigo", + "wordSecond": "靛蓝色 (diànlánsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "crème", + "wordSecond": "奶油色 (nǎiyóusè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "olive", + "wordSecond": "橄榄色 (gǎnlǎnsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "bordeaux", + "wordSecond": "酒红色 (jiǔhóngsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "corail", + "wordSecond": "珊瑚色 (shānhúsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lavande", + "wordSecond": "薰衣草色 (xūnyīcǎosè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "saumon", + "wordSecond": "鲑鱼色 (guīyúsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chocolat", + "wordSecond": "巧克力色 (qiǎokèlìsè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "menthe", + "wordSecond": "薄荷色 (bòhesè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pêche", + "wordSecond": "桃色 (táosè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "prune", + "wordSecond": "梅色 (méisè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ivoire", + "wordSecond": "象牙色 (xiàngyásè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "écru", + "wordSecond": "本白色 (běnbáisè)", + "createdAt": "2026-02-19T13:10:41.526Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_it_ja_A1.json b/output/2026_02_19_colors_shapes_it_ja_A1.json new file mode 100644 index 0000000..098e748 --- /dev/null +++ b/output/2026_02_19_colors_shapes_it_ja_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:11:23.497Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "rosso", + "wordSecond": "赤 (あか, aka)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "blu", + "wordSecond": "青 (あお, ao)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "verde", + "wordSecond": "緑 (みどり, midori)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "giallo", + "wordSecond": "黄色 (きいろ, kiiro)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "nero", + "wordSecond": "黒 (くろ, kuro)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "bianco", + "wordSecond": "白 (しろ, shiro)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "arancione", + "wordSecond": "オレンジ (orenji)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "rosa", + "wordSecond": "ピンク (pinku)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "marrone", + "wordSecond": "茶色 (ちゃいろ, chairo)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "viola", + "wordSecond": "紫 (むらさき, murasaki)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "grigio", + "wordSecond": "灰色 (はいいろ, haiiro)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "celeste", + "wordSecond": "水色 (みずいろ, mizuiro)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "oro", + "wordSecond": "金色 (きんいろ, kiniro)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "argento", + "wordSecond": "銀色 (ぎんいろ, gin'iro)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "chiaro", + "wordSecond": "明るい (あかるい, akarui)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "scuro", + "wordSecond": "暗い (くらい, kurai)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pallido", + "wordSecond": "薄い (うすい, usui)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "vivido", + "wordSecond": "鮮やかな (あざやかな, azayakana)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cerchio", + "wordSecond": "円 (えん, en)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "quadrato", + "wordSecond": "四角 (しかく, shikaku)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "triangolo", + "wordSecond": "三角 (さんかく, sankaku)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "rettangolo", + "wordSecond": "長方形 (ちょうほうけい, chōhōkei)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ovale", + "wordSecond": "楕円 (だえん, daen)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "stella", + "wordSecond": "星 (ほし, hoshi)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cuore", + "wordSecond": "ハート (hāto)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "luna", + "wordSecond": "月 (つき, tsuki)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sole", + "wordSecond": "太陽 (たいよう, taiyō)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "linea", + "wordSecond": "線 (せん, sen)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "punto", + "wordSecond": "点 (てん, ten)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "curva", + "wordSecond": "曲線 (きょくせん, kyokusen)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dritto", + "wordSecond": "直線 (ちょくせん, chokusen)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "grande", + "wordSecond": "大きい (おおきい, ōkii)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "piccolo", + "wordSecond": "小さい (ちいさい, chīsai)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lungo", + "wordSecond": "長い (ながい, nagai)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "corto", + "wordSecond": "短い (みじかい, mijikai)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "alto", + "wordSecond": "高い (たかい, takai)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "basso", + "wordSecond": "低い (ひくい, hikui)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "largo", + "wordSecond": "広い (ひろい, hiroi)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "stretto", + "wordSecond": "狭い (せまい, semai)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pieno", + "wordSecond": "満たされた (みたされた, mitasareta)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "vuoto", + "wordSecond": "空の (からの, karano)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "rotondo", + "wordSecond": "丸い (まるい, marui)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "appuntito", + "wordSecond": "尖った (とがった, togatta)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "liscio", + "wordSecond": "滑らかな (なめらかな, namerakana)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ruvido", + "wordSecond": "粗い (あらい, arai)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "duro", + "wordSecond": "硬い (かたい, katai)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "morbido", + "wordSecond": "柔らかい (やわらかい, yawarakai)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pesante", + "wordSecond": "重い (おもい, omoi)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "leggero", + "wordSecond": "軽い (かるい, karui)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "semplice", + "wordSecond": "簡単な (かんたんな, kantan na)", + "createdAt": "2026-02-19T13:11:23.497Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_it_ko_A1.json b/output/2026_02_19_colors_shapes_it_ko_A1.json new file mode 100644 index 0000000..143c1aa --- /dev/null +++ b/output/2026_02_19_colors_shapes_it_ko_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:11:51.736Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "rosso", + "wordSecond": "빨간색 (ppalgansaek)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "blu", + "wordSecond": "파란색 (paransaek)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "verde", + "wordSecond": "초록색 (choroksaek)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "giallo", + "wordSecond": "노란색 (noransaek)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nero", + "wordSecond": "검은색 (geomeunsaek)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bianco", + "wordSecond": "하얀색 (hayansaek)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "arancione", + "wordSecond": "주황색 (juhwangsaek)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "viola", + "wordSecond": "보라색 (borasaek)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "rosa", + "wordSecond": "분홍색 (bunhongsaek)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "marrone", + "wordSecond": "갈색 (galsaek)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "grigio", + "wordSecond": "회색 (hoesaek)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "chiaro", + "wordSecond": "밝은 (balgeun)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "scuro", + "wordSecond": "어두운 (eoduun)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pallido", + "wordSecond": "연한 (yeonhan)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cerchio", + "wordSecond": "원 (won)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "quadrato", + "wordSecond": "사각형 (sagakhyeong)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "triangolo", + "wordSecond": "삼각형 (samgakhyeong)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "rettangolo", + "wordSecond": "직사각형 (jiksagakhyeong)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ovale", + "wordSecond": "타원형 (tawonhyeong)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "stella", + "wordSecond": "별 (byeol)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cuore", + "wordSecond": "하트 (hateu)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "luna", + "wordSecond": "달 (dal)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sole", + "wordSecond": "해 (hae)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nuvola", + "wordSecond": "구름 (gureum)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "fiore", + "wordSecond": "꽃 (kkot)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "albero", + "wordSecond": "나무 (namu)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "casa", + "wordSecond": "집 (jip)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "macchina", + "wordSecond": "자동차 (jadongcha)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "gatto", + "wordSecond": "고양이 (goyangi)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cane", + "wordSecond": "개 (gae)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "libro", + "wordSecond": "책 (chaek)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "penna", + "wordSecond": "펜 (pen)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tavolo", + "wordSecond": "탁자 (takja)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sedia", + "wordSecond": "의자 (uija)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "finestra", + "wordSecond": "창문 (changmun)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "porta", + "wordSecond": "문 (mun)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "acqua", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "fuoco", + "wordSecond": "불 (bul)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "terra", + "wordSecond": "땅 (ttang)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cielo", + "wordSecond": "하늘 (haneul)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "montagna", + "wordSecond": "산 (san)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "fiume", + "wordSecond": "강 (gang)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mare", + "wordSecond": "바다 (bada)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "isola", + "wordSecond": "섬 (seom)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "città", + "wordSecond": "도시 (dosi)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "strada", + "wordSecond": "길 (gil)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ponte", + "wordSecond": "다리 (dari)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "treno", + "wordSecond": "기차 (gicha)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "aereo", + "wordSecond": "비행기 (bihaenggi)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nave", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T13:11:51.736Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_it_pl_A1.json b/output/2026_02_19_colors_shapes_it_pl_A1.json new file mode 100644 index 0000000..328405e --- /dev/null +++ b/output/2026_02_19_colors_shapes_it_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:12:01.999Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "rosso", + "wordSecond": "czerwony", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "blu", + "wordSecond": "niebieski", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "verde", + "wordSecond": "zielony", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "giallo", + "wordSecond": "żółty", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "nero", + "wordSecond": "czarny", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "bianco", + "wordSecond": "biały", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "arancione", + "wordSecond": "pomarańczowy", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "viola", + "wordSecond": "fioletowy", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "rosa", + "wordSecond": "różowy", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "marrone", + "wordSecond": "brązowy", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "grigio", + "wordSecond": "szary", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "azzurro", + "wordSecond": "błękitny", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "beige", + "wordSecond": "beżowy", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "argento", + "wordSecond": "srebrny", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "oro", + "wordSecond": "złoty", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "chiaro", + "wordSecond": "jasny", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "scuro", + "wordSecond": "ciemny", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pallido", + "wordSecond": "blady", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vivido", + "wordSecond": "żywy", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "intenso", + "wordSecond": "intensywny", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "colore", + "wordSecond": "kolor", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tinta", + "wordSecond": "barwa", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sfumatura", + "wordSecond": "odcień", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cerchio", + "wordSecond": "koło", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "quadrato", + "wordSecond": "kwadrat", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "triangolo", + "wordSecond": "trójkąt", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "rettangolo", + "wordSecond": "prostokąt", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ovale", + "wordSecond": "owal", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "stella", + "wordSecond": "gwiazda", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cuore", + "wordSecond": "serce", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "rombo", + "wordSecond": "romb", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "esagono", + "wordSecond": "sześciokąt", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pentagono", + "wordSecond": "pięciokąt", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ottagono", + "wordSecond": "ośmiokąt", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "forma", + "wordSecond": "kształt", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "linea", + "wordSecond": "linia", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "curva", + "wordSecond": "krzywa", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dritto", + "wordSecond": "prosty", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "grande", + "wordSecond": "duży", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "piccolo", + "wordSecond": "mały", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lungo", + "wordSecond": "długi", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "corto", + "wordSecond": "krótki", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "alto", + "wordSecond": "wysoki", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "basso", + "wordSecond": "niski", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "largo", + "wordSecond": "szeroki", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "stretto", + "wordSecond": "wąski", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "piatto", + "wordSecond": "płaski", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "rotondo", + "wordSecond": "okrągły", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "spigolo", + "wordSecond": "kąt", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "punto", + "wordSecond": "punkt", + "createdAt": "2026-02-19T13:12:01.999Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_it_zh_A1.json b/output/2026_02_19_colors_shapes_it_zh_A1.json new file mode 100644 index 0000000..081c99f --- /dev/null +++ b/output/2026_02_19_colors_shapes_it_zh_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:11:37.662Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "rosso", + "wordSecond": "红色 (hóngsè)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "blu", + "wordSecond": "蓝色 (lánsè)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "verde", + "wordSecond": "绿色 (lǜsè)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "giallo", + "wordSecond": "黄色 (huángsè)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "nero", + "wordSecond": "黑色 (hēisè)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "bianco", + "wordSecond": "白色 (báisè)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "arancione", + "wordSecond": "橙色 (chéngsè)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "viola", + "wordSecond": "紫色 (zǐsè)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "rosa", + "wordSecond": "粉色 (fěnsè)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "marrone", + "wordSecond": "棕色 (zōngsè)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "grigio", + "wordSecond": "灰色 (huīsè)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "chiaro", + "wordSecond": "浅 (qiǎn)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "scuro", + "wordSecond": "深 (shēn)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pallido", + "wordSecond": "淡 (dàn)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cerchio", + "wordSecond": "圆形 (yuánxíng)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "quadrato", + "wordSecond": "正方形 (zhèngfāngxíng)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "triangolo", + "wordSecond": "三角形 (sānjiǎoxíng)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "rettangolo", + "wordSecond": "长方形 (chángfāngxíng)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ovale", + "wordSecond": "椭圆形 (tuǒyuánxíng)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "stella", + "wordSecond": "星形 (xīngxíng)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cuore", + "wordSecond": "心形 (xīnxíng)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "diamante", + "wordSecond": "菱形 (língxíng)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sfera", + "wordSecond": "球形 (qiúxíng)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cubo", + "wordSecond": "立方体 (lìfāngtǐ)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "piramide", + "wordSecond": "金字塔形 (jīnzìtǎxíng)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "colore", + "wordSecond": "颜色 (yánsè)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "forma", + "wordSecond": "形状 (xíngzhuàng)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "grande", + "wordSecond": "大 (dà)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "piccolo", + "wordSecond": "小 (xiǎo)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lungo", + "wordSecond": "长 (cháng)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "corto", + "wordSecond": "短 (duǎn)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "alto", + "wordSecond": "高 (gāo)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "basso", + "wordSecond": "矮 (ǎi)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "piatto", + "wordSecond": "平 (píng)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "rotondo", + "wordSecond": "圆 (yuán)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "quadrato", + "wordSecond": "方 (fāng)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "punto", + "wordSecond": "点 (diǎn)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "linea", + "wordSecond": "线 (xiàn)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "curva", + "wordSecond": "曲线 (qūxiàn)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dritto", + "wordSecond": "直线 (zhíxiàn)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "angolo", + "wordSecond": "角 (jiǎo)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lato", + "wordSecond": "边 (biān)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "superficie", + "wordSecond": "面 (miàn)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "spazio", + "wordSecond": "空间 (kōngjiān)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "disegno", + "wordSecond": "图 (tú)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pittura", + "wordSecond": "画 (huà)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "matita", + "wordSecond": "铅笔 (qiānbǐ)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "penna", + "wordSecond": "钢笔 (gāngbǐ)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "carta", + "wordSecond": "纸 (zhǐ)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tavolo", + "wordSecond": "桌子 (zhuōzi)", + "createdAt": "2026-02-19T13:11:37.662Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_ja_ko_A1.json b/output/2026_02_19_colors_shapes_ja_ko_A1.json new file mode 100644 index 0000000..96fe49a --- /dev/null +++ b/output/2026_02_19_colors_shapes_ja_ko_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:12:43.453Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "赤 (あか, aka)", + "wordSecond": "빨간색 (ppalgansaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "青 (あお, ao)", + "wordSecond": "파란색 (paransaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "緑 (みどり, midori)", + "wordSecond": "초록색 (choroksaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "黄色 (きいろ, kiiro)", + "wordSecond": "노란색 (noransaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "黒 (くろ, kuro)", + "wordSecond": "검정색 (geomjeongsaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "白 (しろ, shiro)", + "wordSecond": "흰색 (huinsaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "茶色 (ちゃいろ, chairo)", + "wordSecond": "갈색 (galsaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "紫 (むらさき, murasaki)", + "wordSecond": "보라색 (borasaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ピンク (pinku)", + "wordSecond": "분홍색 (bunhongsaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "オレンジ (orenji)", + "wordSecond": "주황색 (juhwangsaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "灰色 (はいいろ, haiiro)", + "wordSecond": "회색 (hoesaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "金色 (きんいろ, kiniro)", + "wordSecond": "금색 (geumsaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "銀色 (ぎんいろ, giniro)", + "wordSecond": "은색 (eunsaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "明るい (あかるい, akarui)", + "wordSecond": "밝은 (balgeun)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "暗い (くらい, kurai)", + "wordSecond": "어두운 (eoduun)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "薄い (うすい, usui)", + "wordSecond": "연한 (yeonhan)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "濃い (こい, koi)", + "wordSecond": "진한 (jinhan)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "丸 (まる, maru)", + "wordSecond": "원 (won)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "円 (えん, en)", + "wordSecond": "원형 (wonhyeong)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "四角 (しかく, shikaku)", + "wordSecond": "사각형 (sagakhyeong)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "正方形 (せいほうけい, seihoukei)", + "wordSecond": "정사각형 (jeongsagakhyeong)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "三角 (さんかく, sankaku)", + "wordSecond": "삼각형 (samgakhyeong)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "長方形 (ちょうほうけい, chouhoukei)", + "wordSecond": "직사각형 (jiksagakhyeong)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "楕円 (だえん, daen)", + "wordSecond": "타원 (tawon)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "星 (ほし, hoshi)", + "wordSecond": "별 (byeol)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ハート (haato)", + "wordSecond": "하트 (hateu)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ダイヤモンド (daiyamondo)", + "wordSecond": "다이아몬드 (daiamondeu)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "線 (せん, sen)", + "wordSecond": "선 (seon)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "点 (てん, ten)", + "wordSecond": "점 (jeom)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "曲線 (きょくせん, kyokusen)", + "wordSecond": "곡선 (gokseon)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "直線 (ちょくせん, chokusen)", + "wordSecond": "직선 (jikseon)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "大きい (おおきい, ookii)", + "wordSecond": "큰 (keun)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "小さい (ちいさい, chiisai)", + "wordSecond": "작은 (jageun)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "長い (ながい, nagai)", + "wordSecond": "긴 (gin)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "短い (みじかい, mijikai)", + "wordSecond": "짧은 (jjalbeun)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "太い (ふとい, futoi)", + "wordSecond": "두꺼운 (dukkeoun)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "細い (ほそい, hosoi)", + "wordSecond": "가느다란 (ganeudaran)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "角 (かど, kado)", + "wordSecond": "모서리 (moseori)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "辺 (へん, hen)", + "wordSecond": "변 (byeon)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "形 (かたち, katachi)", + "wordSecond": "모양 (moyang)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "色 (いろ, iro)", + "wordSecond": "색 (saek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "透明 (とうめい, toumei)", + "wordSecond": "투명한 (tumyeonghan)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "光る (ひかる, hikaru)", + "wordSecond": "빛나는 (binnaneun)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "模様 (もよう, moyou)", + "wordSecond": "무늬 (munui)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "縞 (しま, shima)", + "wordSecond": "줄무늬 (julmunui)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "水色 (みずいろ, mizuiro)", + "wordSecond": "하늘색 (haneulsaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "桃色 (ももいろ, momoiro)", + "wordSecond": "복숭아색 (boksungasaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "紺色 (こんいろ, kon'iro)", + "wordSecond": "남색 (namsaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ベージュ (beeju)", + "wordSecond": "베이지색 (beijisaek)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "マル (maru)", + "wordSecond": "동그라미 (donggeurami)", + "createdAt": "2026-02-19T13:12:43.453Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_ja_pl_A1.json b/output/2026_02_19_colors_shapes_ja_pl_A1.json new file mode 100644 index 0000000..69f34cd --- /dev/null +++ b/output/2026_02_19_colors_shapes_ja_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:13:00.133Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "赤 (あか, aka)", + "wordSecond": "czerwony", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "青 (あお, ao)", + "wordSecond": "niebieski", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "緑 (みどり, midori)", + "wordSecond": "zielony", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "黄色 (きいろ, kiiro)", + "wordSecond": "żółty", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "黒 (くろ, kuro)", + "wordSecond": "czarny", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "白 (しろ, shiro)", + "wordSecond": "biały", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "茶色 (ちゃいろ, chairo)", + "wordSecond": "brązowy", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "灰色 (はいいろ, haiiro)", + "wordSecond": "szary", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ピンク (ぴんく, pinku)", + "wordSecond": "różowy", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "オレンジ (おれんじ, orenji)", + "wordSecond": "pomarańczowy", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "紫 (むらさき, murasaki)", + "wordSecond": "fioletowy", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "金 (きん, kin)", + "wordSecond": "złoty", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "銀 (ぎん, gin)", + "wordSecond": "srebrny", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "明るい (あかるい, akarui)", + "wordSecond": "jasny", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "暗い (くらい, kurai)", + "wordSecond": "ciemny", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "薄い (うすい, usui)", + "wordSecond": "blady", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "濃い (こい, koi)", + "wordSecond": "ciemny (intensywny)", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "丸 (まる, maru)", + "wordSecond": "okrąg", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "円 (えん, en)", + "wordSecond": "koło", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "四角 (しかく, shikaku)", + "wordSecond": "kwadrat", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "正方形 (せいほうけい, seihōkei)", + "wordSecond": "kwadrat", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "三角 (さんかく, sankaku)", + "wordSecond": "trójkąt", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "三角形 (さんかっけい, sankakkei)", + "wordSecond": "trójkąt", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "長方形 (ちょうほうけい, chōhōkei)", + "wordSecond": "prostokąt", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "楕円 (だえん, daen)", + "wordSecond": "elipsa", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "星 (ほし, hoshi)", + "wordSecond": "gwiazda", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ハート (はーと, hāto)", + "wordSecond": "serce", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ダイヤモンド (だいやもんど, daiyamondo)", + "wordSecond": "romb", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "十字 (じゅうじ, jūji)", + "wordSecond": "krzyż", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "月 (つき, tsuki)", + "wordSecond": "księżyc", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "太陽 (たいよう, taiyō)", + "wordSecond": "słońce", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "雲 (くも, kumo)", + "wordSecond": "chmura", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "波 (なみ, nami)", + "wordSecond": "fala", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "線 (せん, sen)", + "wordSecond": "linia", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "点 (てん, ten)", + "wordSecond": "kropka", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "曲線 (きょくせん, kyokusen)", + "wordSecond": "krzywa", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "直線 (ちょくせん, chokusen)", + "wordSecond": "prosta", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "縦 (たて, tate)", + "wordSecond": "pion", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "横 (よこ, yoko)", + "wordSecond": "poziom", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "大きい (おおきい, ōkii)", + "wordSecond": "duży", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "小さい (ちいさい, chīsai)", + "wordSecond": "mały", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "長い (ながい, nagai)", + "wordSecond": "długi", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "短い (みじかい, mijikai)", + "wordSecond": "krótki", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "広い (ひろい, hiroi)", + "wordSecond": "szeroki", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "狭い (せまい, semai)", + "wordSecond": "wąski", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "高い (たかい, takai)", + "wordSecond": "wysoki", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "低い (ひくい, hikui)", + "wordSecond": "niski", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "太い (ふとい, futoi)", + "wordSecond": "gruby", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "細い (ほそい, hosoi)", + "wordSecond": "cienki", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "角 (かど, kado)", + "wordSecond": "róg", + "createdAt": "2026-02-19T13:13:00.133Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_ja_zh_A1.json b/output/2026_02_19_colors_shapes_ja_zh_A1.json new file mode 100644 index 0000000..8553ea3 --- /dev/null +++ b/output/2026_02_19_colors_shapes_ja_zh_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:12:21.862Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "赤 (あか, aka)", + "wordSecond": "红色 (hóngsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "青 (あお, ao)", + "wordSecond": "蓝色 (lánsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "緑 (みどり, midori)", + "wordSecond": "绿色 (lǜsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "黄色 (きいろ, kiiro)", + "wordSecond": "黄色 (huángsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "黒 (くろ, kuro)", + "wordSecond": "黑色 (hēisè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "白 (しろ, shiro)", + "wordSecond": "白色 (báisè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "茶色 (ちゃいろ, chairo)", + "wordSecond": "棕色 (zōngsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "灰色 (はいいろ, haiiro)", + "wordSecond": "灰色 (huīsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "紫 (むらさき, murasaki)", + "wordSecond": "紫色 (zǐsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "オレンジ (おれんじ, orenji)", + "wordSecond": "橙色 (chéngsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ピンク (ぴんく, pinku)", + "wordSecond": "粉色 (fěnsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "金色 (きんいろ, kiniro)", + "wordSecond": "金色 (jīnsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "銀色 (ぎんいろ, giniro)", + "wordSecond": "银色 (yínsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "明るい (あかるい, akarui)", + "wordSecond": "浅色 (qiǎnsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "暗い (くらい, kurai)", + "wordSecond": "深色 (shēnsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "薄い (うすい, usui)", + "wordSecond": "淡色 (dànsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "濃い (こい, koi)", + "wordSecond": "浓色 (nóngsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "丸 (まる, maru)", + "wordSecond": "圆形 (yuánxíng)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "円 (えん, en)", + "wordSecond": "圆 (yuán)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "四角 (しかく, shikaku)", + "wordSecond": "方形 (fāngxíng)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "正方形 (せいほうけい, seihoukei)", + "wordSecond": "正方形 (zhèngfāngxíng)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "長方形 (ちょうほうけい, chouhoukei)", + "wordSecond": "长方形 (chángfāngxíng)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "三角 (さんかく, sankaku)", + "wordSecond": "三角形 (sānjiǎoxíng)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "楕円 (だえん, daen)", + "wordSecond": "椭圆形 (tuǒyuánxíng)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "星 (ほし, hoshi)", + "wordSecond": "星形 (xīngxíng)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ハート (はーと, haato)", + "wordSecond": "心形 (xīnxíng)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ダイヤモンド (だいやもんど, daiyamondo)", + "wordSecond": "菱形 (língxíng)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "十字 (じゅうじ, juuji)", + "wordSecond": "十字形 (shízìxíng)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "線 (せん, sen)", + "wordSecond": "线 (xiàn)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "点 (てん, ten)", + "wordSecond": "点 (diǎn)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "曲線 (きょくせん, kyokusen)", + "wordSecond": "曲线 (qūxiàn)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "直線 (ちょくせん, chokusen)", + "wordSecond": "直线 (zhíxiàn)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "太い (ふとい, futoi)", + "wordSecond": "粗 (cū)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "細い (ほそい, hosoi)", + "wordSecond": "细 (xì)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "大きい (おおきい, ookii)", + "wordSecond": "大 (dà)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "小さい (ちいさい, chiisai)", + "wordSecond": "小 (xiǎo)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "長い (ながい, nagai)", + "wordSecond": "长 (cháng)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "短い (みじかい, mijikai)", + "wordSecond": "短 (duǎn)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "広い (ひろい, hiroi)", + "wordSecond": "宽 (kuān)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "狭い (せまい, semai)", + "wordSecond": "窄 (zhǎi)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "高い (たかい, takai)", + "wordSecond": "高 (gāo)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "低い (ひくい, hikui)", + "wordSecond": "低 (dī)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "平ら (たいら, taira)", + "wordSecond": "平 (píng)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "丸い (まるい, marui)", + "wordSecond": "圆 (yuán)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "四角い (しかくい, shikakui)", + "wordSecond": "方 (fāng)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "三角の (さんかくの, sankaku no)", + "wordSecond": "三角的 (sānjiǎo de)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "色 (いろ, iro)", + "wordSecond": "颜色 (yánsè)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "形 (かたち, katachi)", + "wordSecond": "形状 (xíngzhuàng)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "模様 (もよう, moyou)", + "wordSecond": "图案 (tú'àn)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "透明 (とうめい, toumei)", + "wordSecond": "透明 (tòumíng)", + "createdAt": "2026-02-19T13:12:21.862Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_ko_pl_A1.json b/output/2026_02_19_colors_shapes_ko_pl_A1.json new file mode 100644 index 0000000..1e6be48 --- /dev/null +++ b/output/2026_02_19_colors_shapes_ko_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:13:52.176Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "빨간색 (ppalgansaek)", + "wordSecond": "czerwony", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "파란색 (paransaek)", + "wordSecond": "niebieski", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "초록색 (choroksaek)", + "wordSecond": "zielony", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "노란색 (noransaek)", + "wordSecond": "żółty", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "검정색 (geomjeongsaek)", + "wordSecond": "czarny", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "하얀색 (hayansaek)", + "wordSecond": "biały", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "주황색 (juhwangsaek)", + "wordSecond": "pomarańczowy", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "보라색 (borasaek)", + "wordSecond": "fioletowy", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "분홍색 (bunhongsaek)", + "wordSecond": "różowy", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "갈색 (galsaek)", + "wordSecond": "brązowy", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "회색 (hoesaek)", + "wordSecond": "szary", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "은색 (eunsaek)", + "wordSecond": "srebrny", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "금색 (geumsaek)", + "wordSecond": "złoty", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "밝은 (balgeun)", + "wordSecond": "jasny", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "어두운 (eoduun)", + "wordSecond": "ciemny", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "연한 (yeonhan)", + "wordSecond": "blady", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "진한 (jinhan)", + "wordSecond": "intensywny", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "투명한 (tumyeonghan)", + "wordSecond": "przezroczysty", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "색 (saek)", + "wordSecond": "kolor", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "색깔 (saekkkal)", + "wordSecond": "barwa", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "원 (won)", + "wordSecond": "koło", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "동그라미 (donggeurami)", + "wordSecond": "okrąg", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "사각형 (sagakhyeong)", + "wordSecond": "kwadrat", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "정사각형 (jeongsagakhyeong)", + "wordSecond": "kwadrat (foremny)", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "직사각형 (jiksagakhyeong)", + "wordSecond": "prostokąt", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "삼각형 (samgakhyeong)", + "wordSecond": "trójkąt", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "타원형 (tawonhyeong)", + "wordSecond": "owal", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "마름모 (mareummo)", + "wordSecond": "romb", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "별모양 (byeolmoyang)", + "wordSecond": "gwiazda", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "하트 (hateu)", + "wordSecond": "serce", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "달 (dal)", + "wordSecond": "księżyc (kształt)", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "별 (byeol)", + "wordSecond": "gwiazda (kształt)", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "세모 (semo)", + "wordSecond": "trójkąt (potocznie)", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "네모 (nemo)", + "wordSecond": "kwadrat (potocznie)", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "동그랗다 (donggeurata)", + "wordSecond": "okrągły", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "네모나다 (nemonada)", + "wordSecond": "kwadratowy", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "세모나다 (semonada)", + "wordSecond": "trójkątny", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "길쭉하다 (giljjukada)", + "wordSecond": "podłużny", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "납작하다 (napjakada)", + "wordSecond": "płaski", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "뾰족하다 (ppyojokada)", + "wordSecond": "spiczasty", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "둥글다 (dunggeulda)", + "wordSecond": "okrągły", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "곡선 (gokseon)", + "wordSecond": "krzywa", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "직선 (jikseon)", + "wordSecond": "linia prosta", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "점 (jeom)", + "wordSecond": "kropka", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "선 (seon)", + "wordSecond": "linia", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "무지개 (mujigae)", + "wordSecond": "tęcza", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "무늬 (munui)", + "wordSecond": "wzór", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "줄무늬 (julmunui)", + "wordSecond": "paski", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "점무늬 (jeommunui)", + "wordSecond": "kropki", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "격자무늬 (gyeokjamunui)", + "wordSecond": "kratka", + "createdAt": "2026-02-19T13:13:52.176Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_pt_de_A1.json b/output/2026_02_19_colors_shapes_pt_de_A1.json new file mode 100644 index 0000000..6513755 --- /dev/null +++ b/output/2026_02_19_colors_shapes_pt_de_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:07:22.762Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vermelho", + "wordSecond": "rot", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "azul", + "wordSecond": "blau", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "verde", + "wordSecond": "grün", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "amarelo", + "wordSecond": "gelb", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "preto", + "wordSecond": "schwarz", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "branco", + "wordSecond": "weiß", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cinza", + "wordSecond": "grau", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "marrom", + "wordSecond": "braun", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "laranja", + "wordSecond": "orange", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "rosa", + "wordSecond": "rosa", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "roxo", + "wordSecond": "lila", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "bege", + "wordSecond": "beige", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "claro", + "wordSecond": "hell", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escuro", + "wordSecond": "dunkel", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pálido", + "wordSecond": "blass", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vivo", + "wordSecond": "knallig", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "círculo", + "wordSecond": "Kreis", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quadrado", + "wordSecond": "Quadrat", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "triângulo", + "wordSecond": "Dreieck", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "retângulo", + "wordSecond": "Rechteck", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "oval", + "wordSecond": "oval", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "coração", + "wordSecond": "Herz", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "estrela", + "wordSecond": "Stern", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "losango", + "wordSecond": "Raute", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cubo", + "wordSecond": "Würfel", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "esfera", + "wordSecond": "Kugel", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pirâmide", + "wordSecond": "Pyramide", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cone", + "wordSecond": "Kegel", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cilindro", + "wordSecond": "Zylinder", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "linha", + "wordSecond": "Linie", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ponto", + "wordSecond": "Punkt", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "curva", + "wordSecond": "Kurve", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ângulo", + "wordSecond": "Winkel", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "arco", + "wordSecond": "Bogen", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sólido", + "wordSecond": "massiv", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "transparente", + "wordSecond": "durchsichtig", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "opaco", + "wordSecond": "undurchsichtig", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "brilhante", + "wordSecond": "glänzend", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fosco", + "wordSecond": "matt", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "colorido", + "wordSecond": "bunt", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "monocromático", + "wordSecond": "einfarbig", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "listrado", + "wordSecond": "gestreift", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pontilhado", + "wordSecond": "gepunktet", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "xadrez", + "wordSecond": "kariert", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dourado", + "wordSecond": "golden", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "prateado", + "wordSecond": "silbern", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "turquesa", + "wordSecond": "türkis", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "violeta", + "wordSecond": "violett", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "magenta", + "wordSecond": "magenta", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "índigo", + "wordSecond": "indigo", + "createdAt": "2026-02-19T13:07:22.762Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_pt_fr_A1.json b/output/2026_02_19_colors_shapes_pt_fr_A1.json new file mode 100644 index 0000000..13f4aff --- /dev/null +++ b/output/2026_02_19_colors_shapes_pt_fr_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:07:31.928Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vermelho", + "wordSecond": "rouge", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "azul", + "wordSecond": "bleu", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "verde", + "wordSecond": "vert", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "amarelo", + "wordSecond": "jaune", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "preto", + "wordSecond": "noir", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "branco", + "wordSecond": "blanc", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cinza", + "wordSecond": "gris", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "marrom", + "wordSecond": "marron", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "rosa", + "wordSecond": "rose", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "laranja", + "wordSecond": "orange", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "roxo", + "wordSecond": "violet", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "bege", + "wordSecond": "beige", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "claro", + "wordSecond": "clair", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "escuro", + "wordSecond": "foncé", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pálido", + "wordSecond": "pâle", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "brilhante", + "wordSecond": "brillant", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "círculo", + "wordSecond": "cercle", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quadrado", + "wordSecond": "carré", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "triângulo", + "wordSecond": "triangle", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "retângulo", + "wordSecond": "rectangle", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "oval", + "wordSecond": "ovale", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "coração", + "wordSecond": "cœur", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estrela", + "wordSecond": "étoile", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "losango", + "wordSecond": "losange", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cubo", + "wordSecond": "cube", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "esfera", + "wordSecond": "sphère", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pirâmide", + "wordSecond": "pyramide", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "linha", + "wordSecond": "ligne", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ponto", + "wordSecond": "point", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "curva", + "wordSecond": "courbe", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ângulo", + "wordSecond": "angle", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "grande", + "wordSecond": "grand", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pequeno", + "wordSecond": "petit", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "longo", + "wordSecond": "long", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "curto", + "wordSecond": "court", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "largo", + "wordSecond": "large", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estreito", + "wordSecond": "étroit", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cheio", + "wordSecond": "plein", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vazio", + "wordSecond": "vide", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "redondo", + "wordSecond": "rond", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "plano", + "wordSecond": "plat", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sólido", + "wordSecond": "solide", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "transparente", + "wordSecond": "transparent", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "opaco", + "wordSecond": "opaque", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "colorido", + "wordSecond": "coloré", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "monocromático", + "wordSecond": "monochrome", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "listrado", + "wordSecond": "rayé", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pontilhado", + "wordSecond": "pointillé", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "xadrez", + "wordSecond": "à carreaux", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "geométrico", + "wordSecond": "géométrique", + "createdAt": "2026-02-19T13:07:31.928Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_pt_it_A1.json b/output/2026_02_19_colors_shapes_pt_it_A1.json new file mode 100644 index 0000000..8b8c162 --- /dev/null +++ b/output/2026_02_19_colors_shapes_pt_it_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:07:41.422Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vermelho", + "wordSecond": "rosso", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "azul", + "wordSecond": "blu", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "verde", + "wordSecond": "verde", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "amarelo", + "wordSecond": "giallo", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "preto", + "wordSecond": "nero", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "branco", + "wordSecond": "bianco", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cinza", + "wordSecond": "grigio", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "marrom", + "wordSecond": "marrone", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "rosa", + "wordSecond": "rosa", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "laranja", + "wordSecond": "arancione", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "roxo", + "wordSecond": "viola", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bege", + "wordSecond": "beige", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "claro", + "wordSecond": "chiaro", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "escuro", + "wordSecond": "scuro", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pálido", + "wordSecond": "pallido", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "círculo", + "wordSecond": "cerchio", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quadrado", + "wordSecond": "quadrato", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "triângulo", + "wordSecond": "triangolo", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "retângulo", + "wordSecond": "rettangolo", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "oval", + "wordSecond": "ovale", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "coração", + "wordSecond": "cuore", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estrela", + "wordSecond": "stella", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cubo", + "wordSecond": "cubo", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "esfera", + "wordSecond": "sfera", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "linha", + "wordSecond": "linea", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ponto", + "wordSecond": "punto", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "curva", + "wordSecond": "curva", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ângulo", + "wordSecond": "angolo", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lado", + "wordSecond": "lato", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "forma", + "wordSecond": "forma", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tamanho", + "wordSecond": "dimensione", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "grande", + "wordSecond": "grande", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pequeno", + "wordSecond": "piccolo", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "longo", + "wordSecond": "lungo", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "curto", + "wordSecond": "corto", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "largo", + "wordSecond": "largo", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estreito", + "wordSecond": "stretto", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cheio", + "wordSecond": "pieno", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vazio", + "wordSecond": "vuoto", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "redondo", + "wordSecond": "rotondo", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "plano", + "wordSecond": "piatto", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sólido", + "wordSecond": "solido", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "transparente", + "wordSecond": "trasparente", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "brilhante", + "wordSecond": "brillante", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fosco", + "wordSecond": "opaco", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "colorido", + "wordSecond": "colorato", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "monocromático", + "wordSecond": "monocromatico", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "padrão", + "wordSecond": "modello", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "simples", + "wordSecond": "semplice", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "complexo", + "wordSecond": "complesso", + "createdAt": "2026-02-19T13:07:41.422Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_pt_ja_A1.json b/output/2026_02_19_colors_shapes_pt_ja_A1.json new file mode 100644 index 0000000..f81ee93 --- /dev/null +++ b/output/2026_02_19_colors_shapes_pt_ja_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:07:58.487Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "vermelho", + "wordSecond": "赤 (あか, aka)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "azul", + "wordSecond": "青 (あお, ao)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "verde", + "wordSecond": "緑 (みどり, midori)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "amarelo", + "wordSecond": "黄色 (きいろ, kiiro)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "preto", + "wordSecond": "黒 (くろ, kuro)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "branco", + "wordSecond": "白 (しろ, shiro)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "rosa", + "wordSecond": "ピンク (ぴんく, pinku)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "laranja", + "wordSecond": "オレンジ (おれんじ, orenji)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "roxo", + "wordSecond": "紫 (むらさき, murasaki)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "marrom", + "wordSecond": "茶色 (ちゃいろ, chairo)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cinza", + "wordSecond": "灰色 (はいいろ, haiiro)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "claro", + "wordSecond": "明るい (あかるい, akarui)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "escuro", + "wordSecond": "暗い (くらい, kurai)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pálido", + "wordSecond": "薄い (うすい, usui)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "vivo", + "wordSecond": "鮮やか (あざやか, azayaka)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "círculo", + "wordSecond": "丸 (まる, maru)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "quadrado", + "wordSecond": "四角 (しかく, shikaku)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "triângulo", + "wordSecond": "三角 (さんかく, sankaku)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "retângulo", + "wordSecond": "長方形 (ちょうほうけい, chouhoukei)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "oval", + "wordSecond": "楕円 (だえん, daen)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "estrela", + "wordSecond": "星 (ほし, hoshi)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "coração", + "wordSecond": "ハート (はーと, haato)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "losango", + "wordSecond": "菱形 (ひしがた, hishigata)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cubo", + "wordSecond": "立方体 (りっぽうたい, rippoutai)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "esfera", + "wordSecond": "球 (きゅう, kyuu)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "prisma", + "wordSecond": "角柱 (かくちゅう, kakuchuu)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pirâmide", + "wordSecond": "角錐 (かくすい, kakusui)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "linha", + "wordSecond": "線 (せん, sen)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ponto", + "wordSecond": "点 (てん, ten)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "curva", + "wordSecond": "曲線 (きょくせん, kyokusen)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ângulo", + "wordSecond": "角 (かく, kaku)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "arco", + "wordSecond": "弧 (こ, ko)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "espiral", + "wordSecond": "螺旋 (らせん, rasen)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cruz", + "wordSecond": "十字 (じゅうじ, juuji)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "seta", + "wordSecond": "矢印 (やじるし, yajirushi)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dourado", + "wordSecond": "金色 (きんいろ, kiniro)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "prateado", + "wordSecond": "銀色 (ぎんいろ, gin'iro)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "bronze", + "wordSecond": "銅色 (どういろ, douiro)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "turquesa", + "wordSecond": "ターコイズ (たーこいず, taakoizu)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "índigo", + "wordSecond": "藍色 (あいいろ, aiiro)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "magenta", + "wordSecond": "マゼンタ (まぜんた, mazenta)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ciano", + "wordSecond": "シアン (しあん, shian)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "bege", + "wordSecond": "ベージュ (べーじゅ, beeju)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "carmim", + "wordSecond": "深紅 (しんく, shinku)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "salmão", + "wordSecond": "サーモン (さーもん, saamon)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "lilás", + "wordSecond": "ライラック (らいらっく, rairakku)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "âmbar", + "wordSecond": "琥珀色 (こはくいろ, kohakuiro)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "oliva", + "wordSecond": "オリーブ色 (おりーぶいろ, oriibuiro)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "coral", + "wordSecond": "コーラル (こーらる, kooraru)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pêssego", + "wordSecond": "桃色 (ももいろ, momoiro)", + "createdAt": "2026-02-19T13:07:58.487Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_pt_ko_A1.json b/output/2026_02_19_colors_shapes_pt_ko_A1.json new file mode 100644 index 0000000..24f1e8c --- /dev/null +++ b/output/2026_02_19_colors_shapes_pt_ko_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:08:28.100Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "vermelho", + "wordSecond": "빨간색 (ppalgansaek)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "azul", + "wordSecond": "파란색 (paransaek)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "verde", + "wordSecond": "초록색 (choroksaek)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "amarelo", + "wordSecond": "노란색 (noransaek)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "preto", + "wordSecond": "검은색 (geomeunsaek)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "branco", + "wordSecond": "흰색 (hinsaek)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cinza", + "wordSecond": "회색 (hoesaek)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "marrom", + "wordSecond": "갈색 (galsaek)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "rosa", + "wordSecond": "분홍색 (bunhongsaek)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "roxo", + "wordSecond": "보라색 (borasaek)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "laranja", + "wordSecond": "주황색 (juhwangsaek)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "claro", + "wordSecond": "밝은 (balgeun)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "escuro", + "wordSecond": "어두운 (eoduun)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pálido", + "wordSecond": "연한 (yeonhan)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "círculo", + "wordSecond": "원 (won)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "quadrado", + "wordSecond": "사각형 (sagakhyeong)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "triângulo", + "wordSecond": "삼각형 (samgakhyeong)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "retângulo", + "wordSecond": "직사각형 (jiksagakhyeong)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "oval", + "wordSecond": "타원형 (tawonhyeong)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "coração", + "wordSecond": "하트 (hateu)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "estrela", + "wordSecond": "별 (byeol)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cubo", + "wordSecond": "정육면체 (jeongyungmyeonche)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "esfera", + "wordSecond": "구 (gu)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "linha", + "wordSecond": "선 (seon)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ponto", + "wordSecond": "점 (jeom)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "arco", + "wordSecond": "호 (ho)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "seta", + "wordSecond": "화살표 (hwasalpyo)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cruz", + "wordSecond": "십자가 (sipjaga)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "losango", + "wordSecond": "마름모 (mareummo)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pentágono", + "wordSecond": "오각형 (ogakhyeong)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "hexágono", + "wordSecond": "육각형 (yukgakhyeong)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cor", + "wordSecond": "색 (saek)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "forma", + "wordSecond": "모양 (moyang)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tamanho", + "wordSecond": "크기 (keugi)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "grande", + "wordSecond": "큰 (keun)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pequeno", + "wordSecond": "작은 (jageun)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "longo", + "wordSecond": "긴 (gin)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "curto", + "wordSecond": "짧은 (jjalbeun)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "largo", + "wordSecond": "넓은 (neolbeun)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "estreito", + "wordSecond": "좁은 (jobeun)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cheio", + "wordSecond": "가득한 (gadeukan)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "vazio", + "wordSecond": "빈 (bin)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "redondo", + "wordSecond": "둥근 (dunggeun)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "quadrado", + "wordSecond": "네모난 (nemonan)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pontudo", + "wordSecond": "뾰족한 (ppyojokan)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "suave", + "wordSecond": "부드러운 (budeureoun)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "duro", + "wordSecond": "딱딱한 (ttakttakan)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "brilhante", + "wordSecond": "빛나는 (binnaneun)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "fosco", + "wordSecond": "무광택의 (mugwangtaegui)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "transparente", + "wordSecond": "투명한 (tumyeonghan)", + "createdAt": "2026-02-19T13:08:28.100Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_pt_pl_A1.json b/output/2026_02_19_colors_shapes_pt_pl_A1.json new file mode 100644 index 0000000..7e0aa0d --- /dev/null +++ b/output/2026_02_19_colors_shapes_pt_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:08:39.045Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "vermelho", + "wordSecond": "czerwony", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "azul", + "wordSecond": "niebieski", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "verde", + "wordSecond": "zielony", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "amarelo", + "wordSecond": "żółty", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "preto", + "wordSecond": "czarny", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "branco", + "wordSecond": "biały", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cinza", + "wordSecond": "szary", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "marrom", + "wordSecond": "brązowy", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "laranja", + "wordSecond": "pomarańczowy", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "rosa", + "wordSecond": "różowy", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "roxo", + "wordSecond": "fioletowy", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "claro", + "wordSecond": "jasny", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "escuro", + "wordSecond": "ciemny", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pálido", + "wordSecond": "blady", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "brilhante", + "wordSecond": "jasny", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "círculo", + "wordSecond": "koło", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "quadrado", + "wordSecond": "kwadrat", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "triângulo", + "wordSecond": "trójkąt", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "retângulo", + "wordSecond": "prostokąt", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "oval", + "wordSecond": "owal", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "coração", + "wordSecond": "serce", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "estrela", + "wordSecond": "gwiazda", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cubo", + "wordSecond": "sześcian", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "esfera", + "wordSecond": "kula", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pirâmide", + "wordSecond": "piramida", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "linha", + "wordSecond": "linia", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ponto", + "wordSecond": "kropka", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "curva", + "wordSecond": "krzywa", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ângulo", + "wordSecond": "kąt", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "lado", + "wordSecond": "bok", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tamanho", + "wordSecond": "rozmiar", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "grande", + "wordSecond": "duży", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pequeno", + "wordSecond": "mały", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "longo", + "wordSecond": "długi", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "curto", + "wordSecond": "krótki", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "largo", + "wordSecond": "szeroki", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "estreito", + "wordSecond": "wąski", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cheio", + "wordSecond": "pełny", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "vazio", + "wordSecond": "pusty", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "redondo", + "wordSecond": "okrągły", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "quadrado", + "wordSecond": "kwadratowy", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "retangular", + "wordSecond": "prostokątny", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "triangular", + "wordSecond": "trójkątny", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "arredondado", + "wordSecond": "zaokrąglony", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pontiagudo", + "wordSecond": "spiczasty", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "simples", + "wordSecond": "prosty", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "complexo", + "wordSecond": "złożony", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sólido", + "wordSecond": "stały", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "plano", + "wordSecond": "płaski", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "grosso", + "wordSecond": "gruby", + "createdAt": "2026-02-19T13:08:39.045Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_pt_zh_A1.json b/output/2026_02_19_colors_shapes_pt_zh_A1.json new file mode 100644 index 0000000..b3914ba --- /dev/null +++ b/output/2026_02_19_colors_shapes_pt_zh_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:08:13.109Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "vermelho", + "wordSecond": "红色 (hóngsè)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "azul", + "wordSecond": "蓝色 (lánsè)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "verde", + "wordSecond": "绿色 (lǜsè)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "amarelo", + "wordSecond": "黄色 (huángsè)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "preto", + "wordSecond": "黑色 (hēisè)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "branco", + "wordSecond": "白色 (báisè)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "laranja", + "wordSecond": "橙色 (chéngsè)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "rosa", + "wordSecond": "粉色 (fěnsè)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "roxo", + "wordSecond": "紫色 (zǐsè)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "marrom", + "wordSecond": "棕色 (zōngsè)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cinza", + "wordSecond": "灰色 (huīsè)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "claro", + "wordSecond": "浅 (qiǎn)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "escuro", + "wordSecond": "深 (shēn)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pálido", + "wordSecond": "淡 (dàn)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "círculo", + "wordSecond": "圆形 (yuánxíng)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "quadrado", + "wordSecond": "正方形 (zhèngfāngxíng)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "triângulo", + "wordSecond": "三角形 (sānjiǎoxíng)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "retângulo", + "wordSecond": "长方形 (chángfāngxíng)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "oval", + "wordSecond": "椭圆形 (tuǒyuánxíng)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "coração", + "wordSecond": "心形 (xīnxíng)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "estrela", + "wordSecond": "星形 (xīngxíng)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cubo", + "wordSecond": "立方体 (lìfāngtǐ)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "esfera", + "wordSecond": "球体 (qiútǐ)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pirâmide", + "wordSecond": "金字塔形 (jīnzìtǎxíng)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "linha", + "wordSecond": "线 (xiàn)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ponto", + "wordSecond": "点 (diǎn)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "curva", + "wordSecond": "曲线 (qūxiàn)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ângulo", + "wordSecond": "角 (jiǎo)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "grande", + "wordSecond": "大 (dà)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pequeno", + "wordSecond": "小 (xiǎo)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "longo", + "wordSecond": "长 (cháng)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "curto", + "wordSecond": "短 (duǎn)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "largo", + "wordSecond": "宽 (kuān)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "estreito", + "wordSecond": "窄 (zhǎi)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "redondo", + "wordSecond": "圆的 (yuánde)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "quadrado", + "wordSecond": "方的 (fāngde)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pontudo", + "wordSecond": "尖的 (jiānde)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cheio", + "wordSecond": "满 (mǎn)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "vazio", + "wordSecond": "空 (kōng)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "brilhante", + "wordSecond": "亮 (liàng)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fosco", + "wordSecond": "暗 (àn)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "transparente", + "wordSecond": "透明 (tòumíng)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sólido", + "wordSecond": "实心 (shíxīn)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "listrado", + "wordSecond": "条纹 (tiáowén)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "xadrez", + "wordSecond": "格子 (gézi)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "manchado", + "wordSecond": "斑点 (bāndiǎn)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dourado", + "wordSecond": "金色 (jīnsè)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "prateado", + "wordSecond": "银色 (yínsè)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "colorido", + "wordSecond": "彩色 (cǎisè)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "monocromático", + "wordSecond": "单色 (dānsè)", + "createdAt": "2026-02-19T13:08:13.109Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_zh_ko_A1.json b/output/2026_02_19_colors_shapes_zh_ko_A1.json new file mode 100644 index 0000000..6c991c6 --- /dev/null +++ b/output/2026_02_19_colors_shapes_zh_ko_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:13:20.649Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "红色 (hóngsè)", + "wordSecond": "빨간색 (ppalgansaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "蓝色 (lánsè)", + "wordSecond": "파란색 (paransaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "绿色 (lǜsè)", + "wordSecond": "초록색 (choroksaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "黄色 (huángsè)", + "wordSecond": "노란색 (noransaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "黑色 (hēisè)", + "wordSecond": "검정색 (geomjeongsaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "白色 (báisè)", + "wordSecond": "하얀색 (hayansaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "紫色 (zǐsè)", + "wordSecond": "보라색 (borasaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "橙色 (chéngsè)", + "wordSecond": "주황색 (juhwangsaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "粉色 (fěnsè)", + "wordSecond": "분홍색 (bunhongsaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "棕色 (zōngsè)", + "wordSecond": "갈색 (galsaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "灰色 (huīsè)", + "wordSecond": "회색 (hoesaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "金色 (jīnsè)", + "wordSecond": "금색 (geumsaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "银色 (yínsè)", + "wordSecond": "은색 (eunsaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "浅色 (qiǎnsè)", + "wordSecond": "밝은 색 (balgeun saek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "深色 (shēnsè)", + "wordSecond": "어두운 색 (eoduun saek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "亮 (liàng)", + "wordSecond": "밝은 (balgeun)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "暗 (àn)", + "wordSecond": "어두운 (eoduun)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "浅蓝 (qiǎn lán)", + "wordSecond": "밝은 파란색 (balgeun paransaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "深蓝 (shēn lán)", + "wordSecond": "진한 파란색 (jinhan paransaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "浅绿 (qiǎn lǜ)", + "wordSecond": "밝은 초록색 (balgeun choroksaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "深绿 (shēn lǜ)", + "wordSecond": "진한 초록색 (jinhan choroksaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "浅红 (qiǎn hóng)", + "wordSecond": "밝은 빨간색 (balgeun ppalgansaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "深红 (shēn hóng)", + "wordSecond": "진한 빨간색 (jinhan ppalgansaek)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "圆形 (yuánxíng)", + "wordSecond": "원형 (wonhyeong)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "正方形 (zhèngfāngxíng)", + "wordSecond": "정사각형 (jeongsagakhyeong)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "三角形 (sānjiǎoxíng)", + "wordSecond": "삼각형 (samgakhyeong)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "长方形 (chángfāngxíng)", + "wordSecond": "직사각형 (jiksagakhyeong)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "椭圆形 (tuǒyuánxíng)", + "wordSecond": "타원형 (tawonhyeong)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "星形 (xīngxíng)", + "wordSecond": "별 모양 (byeol moyang)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "心形 (xīnxíng)", + "wordSecond": "하트 모양 (hateu moyang)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "菱形 (língxíng)", + "wordSecond": "마름모꼴 (mareummokkol)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "圆形 (yuán)", + "wordSecond": "원 (won)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "方形 (fāng)", + "wordSecond": "사각형 (sagakhyeong)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "三角 (sānjiǎo)", + "wordSecond": "삼각 (samgak)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "矩形 (jǔxíng)", + "wordSecond": "직사각형 (jiksagakhyeong)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "大 (dà)", + "wordSecond": "큰 (keun)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "小 (xiǎo)", + "wordSecond": "작은 (jageun)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "长 (cháng)", + "wordSecond": "긴 (gin)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "短 (duǎn)", + "wordSecond": "짧은 (jjalbeun)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "宽 (kuān)", + "wordSecond": "넓은 (neolbeun)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "窄 (zhǎi)", + "wordSecond": "좁은 (jobeun)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "高 (gāo)", + "wordSecond": "높은 (nopeun)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "矮 (ǎi)", + "wordSecond": "낮은 (najeun)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "直 (zhí)", + "wordSecond": "직선 (jikseon)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "弯 (wān)", + "wordSecond": "곡선 (gokseon)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "颜色 (yánsè)", + "wordSecond": "색깔 (saekkkal)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "形状 (xíngzhuàng)", + "wordSecond": "모양 (moyang)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "多彩的 (duōcǎi de)", + "wordSecond": "다채로운 (dachaeroun)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "单色的 (dānsè de)", + "wordSecond": "단색의 (dansaegui)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "条纹的 (tiáowén de)", + "wordSecond": "줄무늬의 (julmunuiui)", + "createdAt": "2026-02-19T13:13:20.649Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_colors_shapes_zh_pl_A1.json b/output/2026_02_19_colors_shapes_zh_pl_A1.json new file mode 100644 index 0000000..b3aef2f --- /dev/null +++ b/output/2026_02_19_colors_shapes_zh_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:13:36.238Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Colors & Shapes" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Colors & Shapes" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "红色 (hóngsè)", + "wordSecond": "czerwony", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蓝色 (lánsè)", + "wordSecond": "niebieski", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "绿色 (lǜsè)", + "wordSecond": "zielony", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "黄色 (huángsè)", + "wordSecond": "żółty", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "黑色 (hēisè)", + "wordSecond": "czarny", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "白色 (báisè)", + "wordSecond": "biały", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "橙色 (chéngsè)", + "wordSecond": "pomarańczowy", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "紫色 (zǐsè)", + "wordSecond": "fioletowy", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "粉色 (fěnsè)", + "wordSecond": "różowy", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "棕色 (zōngsè)", + "wordSecond": "brązowy", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "灰色 (huīsè)", + "wordSecond": "szary", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "金色 (jīnsè)", + "wordSecond": "złoty", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "银色 (yínsè)", + "wordSecond": "srebrny", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "浅色 (qiǎnsè)", + "wordSecond": "jasny", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "深色 (shēnsè)", + "wordSecond": "ciemny", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "亮色 (liàngsè)", + "wordSecond": "jaskrawy", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "暗色 (ànsè)", + "wordSecond": "ciemny", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "浅蓝 (qiǎnlán)", + "wordSecond": "jasnoniebieski", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "深蓝 (shēnlán)", + "wordSecond": "ciemnoniebieski", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "浅绿 (qiǎnlǜ)", + "wordSecond": "jasnozielony", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "深绿 (shēnlǜ)", + "wordSecond": "ciemnozielony", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "浅红 (qiǎnhóng)", + "wordSecond": "jasnoczerwony", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "深红 (shēnhóng)", + "wordSecond": "ciemnoczerwony", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "浅黄 (qiǎnhuáng)", + "wordSecond": "jasnożółty", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "深黄 (shēnhuáng)", + "wordSecond": "ciemnożółty", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "圆形 (yuánxíng)", + "wordSecond": "koło", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "正方形 (zhèngfāngxíng)", + "wordSecond": "kwadrat", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "三角形 (sānjiǎoxíng)", + "wordSecond": "trójkąt", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "长方形 (chángfāngxíng)", + "wordSecond": "prostokąt", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "椭圆形 (tuǒyuánxíng)", + "wordSecond": "owal", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "星形 (xīngxíng)", + "wordSecond": "gwiazda", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "心形 (xīnxíng)", + "wordSecond": "serce", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "菱形 (língxíng)", + "wordSecond": "romb", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "半圆形 (bànyuánxíng)", + "wordSecond": "półkole", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "立方体 (lìfāngtǐ)", + "wordSecond": "sześcian", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "球形 (qiúxíng)", + "wordSecond": "kula", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "圆柱体 (yuánzhùtǐ)", + "wordSecond": "walec", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "圆锥体 (yuánzhuītǐ)", + "wordSecond": "stożek", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "矩形 (jǔxíng)", + "wordSecond": "prostokąt", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "多边形 (duōbiānxíng)", + "wordSecond": "wielokąt", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "直线 (zhíxiàn)", + "wordSecond": "linia prosta", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "曲线 (qūxiàn)", + "wordSecond": "krzywa", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "点 (diǎn)", + "wordSecond": "kropka", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "条纹 (tiáowén)", + "wordSecond": "pasek", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "斑点 (bāndiǎn)", + "wordSecond": "kropka", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "格子 (gézi)", + "wordSecond": "kratka", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "图案 (tú'àn)", + "wordSecond": "wzór", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "形状 (xíngzhuàng)", + "wordSecond": "kształt", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "颜色 (yánsè)", + "wordSecond": "kolor", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "阴影 (yīnyǐng)", + "wordSecond": "cień", + "createdAt": "2026-02-19T13:13:36.238Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_de_fr_A2.json b/output/2026_02_19_daily_routines_de_fr_A2.json new file mode 100644 index 0000000..6575243 --- /dev/null +++ b/output/2026_02_19_daily_routines_de_fr_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:48:15.537Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "aufwachen", + "wordSecond": "se réveiller", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "duschen", + "wordSecond": "se doucher", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "sich anziehen", + "wordSecond": "s'habiller", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "frühstücken", + "wordSecond": "prendre le petit déjeuner", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Zähne putzen", + "wordSecond": "se brosser les dents", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kaffee trinken", + "wordSecond": "boire du café", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tee trinken", + "wordSecond": "boire du thé", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "zur Arbeit gehen", + "wordSecond": "aller au travail", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "zur Schule gehen", + "wordSecond": "aller à l'école", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "arbeiten", + "wordSecond": "travailler", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "lernen", + "wordSecond": "étudier", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "eine Pause machen", + "wordSecond": "faire une pause", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Mittagessen", + "wordSecond": "déjeuner", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "zu Mittag essen", + "wordSecond": "déjeuner", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Freunde treffen", + "wordSecond": "rencontrer des amis", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "nach Hause gehen", + "wordSecond": "rentrer à la maison", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "kochen", + "wordSecond": "cuisiner", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Abendessen", + "wordSecond": "dîner", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "zu Abend essen", + "wordSecond": "dîner", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "fernsehen", + "wordSecond": "regarder la télévision", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "lesen", + "wordSecond": "lire", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Musik hören", + "wordSecond": "écouter de la musique", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "spazieren gehen", + "wordSecond": "se promener", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "sport treiben", + "wordSecond": "faire du sport", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "entspannen", + "wordSecond": "se détendre", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schlafen gehen", + "wordSecond": "aller se coucher", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schlafen", + "wordSecond": "dormir", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "aufstehen", + "wordSecond": "se lever", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "früh", + "wordSecond": "tôt", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "spät", + "wordSecond": "tard", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "morgens", + "wordSecond": "le matin", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "vormittags", + "wordSecond": "dans la matinée", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "mittags", + "wordSecond": "à midi", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "nachmittags", + "wordSecond": "l'après-midi", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "abends", + "wordSecond": "le soir", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "nachts", + "wordSecond": "la nuit", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "immer", + "wordSecond": "toujours", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "oft", + "wordSecond": "souvent", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "manchmal", + "wordSecond": "parfois", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "selten", + "wordSecond": "rarement", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "nie", + "wordSecond": "jamais", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "täglich", + "wordSecond": "quotidiennement", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "wöchentlich", + "wordSecond": "hebdomadairement", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "montags", + "wordSecond": "le lundi", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "dienstags", + "wordSecond": "le mardi", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "mittwochs", + "wordSecond": "le mercredi", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "donnerstags", + "wordSecond": "le jeudi", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "freitags", + "wordSecond": "le vendredi", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "waschen", + "wordSecond": "se laver", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "kämmen", + "wordSecond": "se peigner", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "frühstück", + "wordSecond": "petit déjeuner", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Brot", + "wordSecond": "pain", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Butter", + "wordSecond": "beurre", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Marmelade", + "wordSecond": "confiture", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bus", + "wordSecond": "bus", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Zug", + "wordSecond": "train", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Auto", + "wordSecond": "voiture", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hausaufgaben", + "wordSecond": "devoirs", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Buch", + "wordSecond": "livre", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Zeitung", + "wordSecond": "journal", + "createdAt": "2026-02-19T14:48:15.537Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_de_it_A2.json b/output/2026_02_19_daily_routines_de_it_A2.json new file mode 100644 index 0000000..efc8864 --- /dev/null +++ b/output/2026_02_19_daily_routines_de_it_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:48:28.347Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "aufwachen", + "wordSecond": "svegliarsi", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "duschen", + "wordSecond": "farsi la doccia", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "sich anziehen", + "wordSecond": "vestirsi", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "frühstücken", + "wordSecond": "fare colazione", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zähne putzen", + "wordSecond": "lavarsi i denti", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kaffee trinken", + "wordSecond": "bere il caffè", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zur Arbeit gehen", + "wordSecond": "andare al lavoro", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zur Schule gehen", + "wordSecond": "andare a scuola", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "arbeiten", + "wordSecond": "lavorare", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "studieren", + "wordSecond": "studiare", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "lernen", + "wordSecond": "imparare", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "eine Pause machen", + "wordSecond": "fare una pausa", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mittagessen", + "wordSecond": "pranzo", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zu Mittag essen", + "wordSecond": "pranzare", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Freunde treffen", + "wordSecond": "incontrare amici", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "nach Hause gehen", + "wordSecond": "andare a casa", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "einkaufen", + "wordSecond": "fare la spesa", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "kochen", + "wordSecond": "cucinare", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Abendessen", + "wordSecond": "cena", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zu Abend essen", + "wordSecond": "cenare", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "fernsehen", + "wordSecond": "guardare la televisione", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "lesen", + "wordSecond": "leggere", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Musik hören", + "wordSecond": "ascoltare musica", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "sich entspannen", + "wordSecond": "rilassarsi", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "spazieren gehen", + "wordSecond": "fare una passeggiata", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sport treiben", + "wordSecond": "fare sport", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "ins Bett gehen", + "wordSecond": "andare a letto", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "schlafen", + "wordSecond": "dormire", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Morgen", + "wordSecond": "mattina", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Vormittag", + "wordSecond": "mattinata", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mittag", + "wordSecond": "mezzogiorno", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nachmittag", + "wordSecond": "pomeriggio", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Abend", + "wordSecond": "sera", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nacht", + "wordSecond": "notte", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "heute", + "wordSecond": "oggi", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "gestern", + "wordSecond": "ieri", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "morgen", + "wordSecond": "domani", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Woche", + "wordSecond": "settimana", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wochenende", + "wordSecond": "fine settimana", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "immer", + "wordSecond": "sempre", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "oft", + "wordSecond": "spesso", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "manchmal", + "wordSecond": "a volte", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "selten", + "wordSecond": "raramente", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "nie", + "wordSecond": "mai", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "früh", + "wordSecond": "presto", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "spät", + "wordSecond": "tardi", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "schnell", + "wordSecond": "veloce", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "langsam", + "wordSecond": "lento", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wecker", + "wordSecond": "sveglia", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bett", + "wordSecond": "letto", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bad", + "wordSecond": "bagno", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Küche", + "wordSecond": "cucina", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wohnzimmer", + "wordSecond": "soggiorno", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Büro", + "wordSecond": "ufficio", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schule", + "wordSecond": "scuola", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bus", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zug", + "wordSecond": "treno", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Auto", + "wordSecond": "macchina", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zeitung", + "wordSecond": "giornale", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Buch", + "wordSecond": "libro", + "createdAt": "2026-02-19T14:48:28.347Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_de_ja_A2.json b/output/2026_02_19_daily_routines_de_ja_A2.json new file mode 100644 index 0000000..c7ab241 --- /dev/null +++ b/output/2026_02_19_daily_routines_de_ja_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:48:51.597Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "aufstehen", + "wordSecond": "起きる (おきる, okiru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "sich waschen", + "wordSecond": "洗う (あらう, arau)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "duschen", + "wordSecond": "シャワーを浴びる (シャワーをあびる, shawā o abiru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "sich anziehen", + "wordSecond": "着る (きる, kiru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "frühstücken", + "wordSecond": "朝ごはんを食べる (あさごはんをたべる, asagohan o taberu)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Zähne putzen", + "wordSecond": "歯を磨く (はをみがく, ha o migaku)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kaffee trinken", + "wordSecond": "コーヒーを飲む (コーヒーをのむ, kōhī o nomu)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tee trinken", + "wordSecond": "お茶を飲む (おちゃをのむ, ocha o nomu)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "zur Arbeit gehen", + "wordSecond": "仕事に行く (しごとにいく, shigoto ni iku)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "zur Schule gehen", + "wordSecond": "学校に行く (がっこうにいく, gakkō ni iku)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "arbeiten", + "wordSecond": "働く (はたらく, hataraku)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "studieren", + "wordSecond": "勉強する (べんきょうする, benkyō suru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "lesen", + "wordSecond": "読む (よむ, yomu)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "schreiben", + "wordSecond": "書く (かく, kaku)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "treffen", + "wordSecond": "会う (あう, au)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Mittagessen", + "wordSecond": "昼ごはん (ひるごはん, hirugohan)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "zu Mittag essen", + "wordSecond": "昼ごはんを食べる (ひるごはんをたべる, hirugohan o taberu)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Pause machen", + "wordSecond": "休憩する (きゅうけいする, kyūkei suru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "nach Hause gehen", + "wordSecond": "家に帰る (いえにかえる, ie ni kaeru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "einkaufen", + "wordSecond": "買い物する (かいものする, kaimono suru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "kochen", + "wordSecond": "料理する (りょうりする, ryōri suru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Abendessen", + "wordSecond": "晩ごはん (ばんごはん, bangohan)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "zu Abend essen", + "wordSecond": "晩ごはんを食べる (ばんごはんをたべる, bangohan o taberu)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "fernsehen", + "wordSecond": "テレビを見る (テレビをみる, terebi o miru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Musik hören", + "wordSecond": "音楽を聞く (おんがくをきく, ongaku o kiku)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "lesen", + "wordSecond": "本を読む (ほんをよむ, hon o yomu)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "sich entspannen", + "wordSecond": "リラックスする (リラックスする, rirakkusu suru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "spazieren gehen", + "wordSecond": "散歩する (さんぽする, sanpo suru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "schlafen gehen", + "wordSecond": "寝る (ねる, neru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "schwimmen", + "wordSecond": "泳ぐ (およぐ, oyogu)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "trainieren", + "wordSecond": "運動する (うんどうする, undō suru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "aufräumen", + "wordSecond": "片付ける (かたづける, katazukeru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "waschen", + "wordSecond": "洗濯する (せんたくする, sentaku suru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "bügeln", + "wordSecond": "アイロンをかける (アイロンをかける, airon o kakeru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "putzen", + "wordSecond": "掃除する (そうじする, sōji suru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "früh", + "wordSecond": "早い (はやい, hayai)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "spät", + "wordSecond": "遅い (おそい, osoi)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "morgens", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "mittags", + "wordSecond": "昼 (ひる, hiru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "abends", + "wordSecond": "晩 (ばん, ban)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "nachts", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "heute", + "wordSecond": "今日 (きょう, kyō)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "morgen", + "wordSecond": "明日 (あした, ashita)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "gestern", + "wordSecond": "昨日 (きのう, kinō)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "immer", + "wordSecond": "いつも (itsumo)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "oft", + "wordSecond": "よく (yoku)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "manchmal", + "wordSecond": "時々 (ときどき, tokidoki)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "selten", + "wordSecond": "めったに (mettani)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "nie", + "wordSecond": "決して (けっして, kesshite)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "täglich", + "wordSecond": "毎日 (まいにち, mainichi)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "wöchentlich", + "wordSecond": "毎週 (まいしゅう, maishū)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "monatlich", + "wordSecond": "毎月 (まいつき, maitsuki)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "jährlich", + "wordSecond": "毎年 (まいとし, maitoshi)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Woche", + "wordSecond": "週 (しゅう, shū)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Monat", + "wordSecond": "月 (つき, tsuki)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Jahr", + "wordSecond": "年 (ねん, nen)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tag", + "wordSecond": "日 (ひ, hi)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Stunde", + "wordSecond": "時間 (じかん, jikan)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Minute", + "wordSecond": "分 (ふん, fun)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Sekunde", + "wordSecond": "秒 (びょう, byō)", + "createdAt": "2026-02-19T14:48:51.597Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_de_ko_A2.json b/output/2026_02_19_daily_routines_de_ko_A2.json new file mode 100644 index 0000000..c55dfa3 --- /dev/null +++ b/output/2026_02_19_daily_routines_de_ko_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:49:28.721Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "aufwachen", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "aufstehen", + "wordSecond": "일어서다 (ireoseoda)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "sich waschen", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "duschen", + "wordSecond": "샤워하다 (syawohada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "sich anziehen", + "wordSecond": "옷을 입다 (oseul ipda)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "frühstücken", + "wordSecond": "아침을 먹다 (achimeul meokda)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zähne putzen", + "wordSecond": "양치하다 (yangchihada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "kämmen", + "wordSecond": "빗다 (bitda)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "zur Arbeit gehen", + "wordSecond": "출근하다 (chulgeunhada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "zur Schule gehen", + "wordSecond": "등교하다 (deunggyohada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "arbeiten", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "studieren", + "wordSecond": "공부하다 (gongbuhada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "lernen", + "wordSecond": "배우다 (baeuda)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "treffen", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Mittagessen", + "wordSecond": "점심 (jeomsim)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "zu Mittag essen", + "wordSecond": "점심을 먹다 (jeomsimeul meokda)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Pause machen", + "wordSecond": "휴식하다 (hyusikada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "nach Hause gehen", + "wordSecond": "집에 가다 (jibe gada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "kochen", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Abendessen", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "zu Abend essen", + "wordSecond": "저녁을 먹다 (jeonyeogeul meokda)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "fernsehen", + "wordSecond": "텔레비전을 보다 (tellebijeoneul boda)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "lesen", + "wordSecond": "읽다 (ikda)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Musik hören", + "wordSecond": "음악을 듣다 (eumageul deutda)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "sich entspannen", + "wordSecond": "휴식하다 (hyusikada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "schlafen gehen", + "wordSecond": "잠자리에 들다 (jamjariae deulda)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "schlafen", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "träumen", + "wordSecond": "꿈을 꾸다 (kkumeul kkuda)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "wecken", + "wordSecond": "깨우다 (kkaeuda)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "aufräumen", + "wordSecond": "정리하다 (jeongnihada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "putzen", + "wordSecond": "청소하다 (cheongsohada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "waschen", + "wordSecond": "빨래하다 (ppallaehada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "einkaufen gehen", + "wordSecond": "쇼핑하다 (syopinghada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "spazieren gehen", + "wordSecond": "산책하다 (sanchaekada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "trainieren", + "wordSecond": "운동하다 (undonghada)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Morgen", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Vormittag", + "wordSecond": "오전 (ojeon)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Mittag", + "wordSecond": "정오 (jeongo)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Nachmittag", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Abend", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Nacht", + "wordSecond": "밤 (bam)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "heute", + "wordSecond": "오늘 (oneul)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "gestern", + "wordSecond": "어제 (eoje)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "morgen", + "wordSecond": "내일 (naeil)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Woche", + "wordSecond": "주 (ju)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Montag", + "wordSecond": "월요일 (woryoil)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Dienstag", + "wordSecond": "화요일 (hwayoil)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Mittwoch", + "wordSecond": "수요일 (suyoil)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Donnerstag", + "wordSecond": "목요일 (mogyoil)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Freitag", + "wordSecond": "금요일 (geumyoil)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Samstag", + "wordSecond": "토요일 (toyoil)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Sonntag", + "wordSecond": "일요일 (iryoil)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "immer", + "wordSecond": "항상 (hangsang)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "oft", + "wordSecond": "자주 (jaju)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "manchmal", + "wordSecond": "가끔 (gakkeum)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "selten", + "wordSecond": "드물게 (deumulge)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "nie", + "wordSecond": "절대 (jeoldae)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "normalerweise", + "wordSecond": "보통 (botong)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "täglich", + "wordSecond": "매일 (maeil)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "wöchentlich", + "wordSecond": "매주 (maeju)", + "createdAt": "2026-02-19T14:49:28.721Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_de_pl_A2.json b/output/2026_02_19_daily_routines_de_pl_A2.json new file mode 100644 index 0000000..b0d135c --- /dev/null +++ b/output/2026_02_19_daily_routines_de_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:49:43.277Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "aufwachen", + "wordSecond": "budzić się", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "duschen", + "wordSecond": "brać prysznic", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "sich anziehen", + "wordSecond": "ubierać się", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "frühstücken", + "wordSecond": "jeść śniadanie", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Zähne putzen", + "wordSecond": "myć zęby", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Haare kämmen", + "wordSecond": "czesać włosy", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Rasieren", + "wordSecond": "golić się", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Make-up auftragen", + "wordSecond": "nakładać makijaż", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zur Arbeit gehen", + "wordSecond": "iść do pracy", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zur Schule gehen", + "wordSecond": "iść do szkoły", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "arbeiten", + "wordSecond": "pracować", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "lernen", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Unterricht haben", + "wordSecond": "mieć lekcje", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Mittagessen", + "wordSecond": "obiad", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zu Mittag essen", + "wordSecond": "jeść obiad", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Pause machen", + "wordSecond": "robić przerwę", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "nach Hause gehen", + "wordSecond": "wracać do domu", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "kochen", + "wordSecond": "gotować", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Abendessen", + "wordSecond": "kolacja", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zu Abend essen", + "wordSecond": "jeść kolację", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "fernsehen", + "wordSecond": "oglądać telewizję", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "lesen", + "wordSecond": "czytać", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Musik hören", + "wordSecond": "słuchać muzyki", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "sich entspannen", + "wordSecond": "odpoczywać", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "schlafen gehen", + "wordSecond": "iść spać", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "einschlafen", + "wordSecond": "zasypiać", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "aufstehen", + "wordSecond": "wstawać", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bett machen", + "wordSecond": "ścielić łóżko", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Frühstück", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kaffee trinken", + "wordSecond": "pić kawę", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Tee trinken", + "wordSecond": "pić herbatę", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Brot essen", + "wordSecond": "jeść chleb", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Eier essen", + "wordSecond": "jeść jajka", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bus fahren", + "wordSecond": "jechać autobusem", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Auto fahren", + "wordSecond": "jechać samochodem", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fahrrad fahren", + "wordSecond": "jechać rowerem", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zu Fuß gehen", + "wordSecond": "iść pieszo", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Freunde treffen", + "wordSecond": "spotykać przyjaciół", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "einkaufen gehen", + "wordSecond": "iść na zakupy", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "putzen", + "wordSecond": "sprzątać", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "waschen", + "wordSecond": "prać", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "bügeln", + "wordSecond": "prasować", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hausaufgaben machen", + "wordSecond": "robić lekcje", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Computer spielen", + "wordSecond": "grać na komputerze", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "spazieren gehen", + "wordSecond": "iść na spacer", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Sport treiben", + "wordSecond": "uprawiać sport", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "duschen", + "wordSecond": "brać prysznic", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "bad gehen", + "wordSecond": "iść do łazienki", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Morgen", + "wordSecond": "rano", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Vormittag", + "wordSecond": "przedpołudnie", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Mittag", + "wordSecond": "południe", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Nachmittag", + "wordSecond": "popołudnie", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Abend", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Nacht", + "wordSecond": "noc", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "immer", + "wordSecond": "zawsze", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "oft", + "wordSecond": "często", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "manchmal", + "wordSecond": "czasami", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "selten", + "wordSecond": "rzadko", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "nie", + "wordSecond": "nigdy", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "täglich", + "wordSecond": "codziennie", + "createdAt": "2026-02-19T14:49:43.277Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_de_zh_A2.json b/output/2026_02_19_daily_routines_de_zh_A2.json new file mode 100644 index 0000000..bae7f7d --- /dev/null +++ b/output/2026_02_19_daily_routines_de_zh_A2.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:49:08.678Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "aufwachen", + "wordSecond": "起床 (qi chuang)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "aufstehen", + "wordSecond": "起来 (qi lai)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "sich duschen", + "wordSecond": "洗澡 (xi zao)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "sich anziehen", + "wordSecond": "穿衣服 (chuan yi fu)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "frühstücken", + "wordSecond": "吃早饭 (chi zao fan)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Zähne putzen", + "wordSecond": "刷牙 (shua ya)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "sich kämmen", + "wordSecond": "梳头 (shu tou)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "zur Arbeit gehen", + "wordSecond": "去上班 (qu shang ban)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "zur Schule gehen", + "wordSecond": "去上学 (qu shang xue)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "arbeiten", + "wordSecond": "工作 (gong zuo)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "lernen", + "wordSecond": "学习 (xue xi)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "unterrichten", + "wordSecond": "教 (jiao)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "eine Pause machen", + "wordSecond": "休息 (xiu xi)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Mittagessen", + "wordSecond": "午饭 (wu fan)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "zu Mittag essen", + "wordSecond": "吃午饭 (chi wu fan)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Freunde treffen", + "wordSecond": "见朋友 (jian peng you)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "nach Hause gehen", + "wordSecond": "回家 (hui jia)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "kochen", + "wordSecond": "做饭 (zuo fan)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Abendessen", + "wordSecond": "晚饭 (wan fan)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "zu Abend essen", + "wordSecond": "吃晚饭 (chi wan fan)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "fernsehen", + "wordSecond": "看电视 (kan dian shi)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Musik hören", + "wordSecond": "听音乐 (ting yin yue)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "lesen", + "wordSecond": "看书 (kan shu)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "sich entspannen", + "wordSecond": "放松 (fang song)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "schlafen gehen", + "wordSecond": "去睡觉 (qu shui jiao)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "einschlafen", + "wordSecond": "睡着 (shui zhao)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "träumen", + "wordSecond": "做梦 (zuo meng)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "wecken", + "wordSecond": "叫醒 (jiao xing)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "waschen", + "wordSecond": "洗 (xi)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "trocknen", + "wordSecond": "擦干 (ca gan)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "früh", + "wordSecond": "早 (zao)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "spät", + "wordSecond": "晚 (wan)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "morgens", + "wordSecond": "早上 (zao shang)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "vormittags", + "wordSecond": "上午 (shang wu)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "mittags", + "wordSecond": "中午 (zhong wu)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "nachmittags", + "wordSecond": "下午 (xia wu)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "abends", + "wordSecond": "晚上 (wan shang)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "nachts", + "wordSecond": "夜里 (ye li)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "heute", + "wordSecond": "今天 (jin tian)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "morgen", + "wordSecond": "明天 (ming tian)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "gestern", + "wordSecond": "昨天 (zuo tian)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "immer", + "wordSecond": "总是 (zong shi)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "oft", + "wordSecond": "经常 (jing chang)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "manchmal", + "wordSecond": "有时候 (you shi hou)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "selten", + "wordSecond": "很少 (hen shao)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "nie", + "wordSecond": "从不 (cong bu)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "täglich", + "wordSecond": "每天 (mei tian)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "wöchentlich", + "wordSecond": "每周 (mei zhou)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wasser trinken", + "wordSecond": "喝水 (he shui)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kaffee trinken", + "wordSecond": "喝咖啡 (he ka fei)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tee trinken", + "wordSecond": "喝茶 (he cha)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "einkaufen", + "wordSecond": "买东西 (mai dong xi)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "aufräumen", + "wordSecond": "收拾 (shou shi)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "putzen", + "wordSecond": "打扫 (da sao)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "spazieren gehen", + "wordSecond": "散步 (san bu)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Sport treiben", + "wordSecond": "做运动 (zuo yun dong)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "trainieren", + "wordSecond": "锻炼 (duan lian)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "schnell", + "wordSecond": "快 (kuai)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "langsam", + "wordSecond": "慢 (man)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "pünktlich", + "wordSecond": "准时 (zhun shi)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "beschäftigt", + "wordSecond": "忙 (mang)", + "createdAt": "2026-02-19T14:49:08.678Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_en_de_A2.json b/output/2026_02_19_daily_routines_en_de_A2.json new file mode 100644 index 0000000..f93ce79 --- /dev/null +++ b/output/2026_02_19_daily_routines_en_de_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:42:24.448Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wake up", + "wordSecond": "aufwachen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "get up", + "wordSecond": "aufstehen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shower", + "wordSecond": "duschen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wash", + "wordSecond": "waschen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "brush teeth", + "wordSecond": "Zähne putzen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "get dressed", + "wordSecond": "anziehen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "eat breakfast", + "wordSecond": "frühstücken", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "drink coffee", + "wordSecond": "Kaffee trinken", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "go to work", + "wordSecond": "zur Arbeit gehen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "go to school", + "wordSecond": "zur Schule gehen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "work", + "wordSecond": "arbeiten", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "study", + "wordSecond": "lernen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "read", + "wordSecond": "lesen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "write", + "wordSecond": "schreiben", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "meet", + "wordSecond": "treffen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "talk", + "wordSecond": "sprechen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "have lunch", + "wordSecond": "Mittagessen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "eat lunch", + "wordSecond": "zu Mittag essen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "finish work", + "wordSecond": "Feierabend machen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "go home", + "wordSecond": "nach Hause gehen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cook", + "wordSecond": "kochen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "prepare dinner", + "wordSecond": "Abendessen vorbereiten", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "eat dinner", + "wordSecond": "zu Abend essen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "set the table", + "wordSecond": "den Tisch decken", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wash dishes", + "wordSecond": "abwaschen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "relax", + "wordSecond": "entspannen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "watch TV", + "wordSecond": "fernsehen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "listen to music", + "wordSecond": "Musik hören", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "read a book", + "wordSecond": "ein Buch lesen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "go for a walk", + "wordSecond": "spazieren gehen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sleep", + "wordSecond": "schlafen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "go to bed", + "wordSecond": "ins Bett gehen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "morning", + "wordSecond": "Morgen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "afternoon", + "wordSecond": "Nachmittag", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "evening", + "wordSecond": "Abend", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "night", + "wordSecond": "Nacht", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "today", + "wordSecond": "heute", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tomorrow", + "wordSecond": "morgen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "yesterday", + "wordSecond": "gestern", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "day", + "wordSecond": "Tag", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "week", + "wordSecond": "Woche", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "weekend", + "wordSecond": "Wochenende", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "always", + "wordSecond": "immer", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "often", + "wordSecond": "oft", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sometimes", + "wordSecond": "manchmal", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "usually", + "wordSecond": "normalerweise", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "never", + "wordSecond": "nie", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "early", + "wordSecond": "früh", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "late", + "wordSecond": "spät", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "quickly", + "wordSecond": "schnell", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "slowly", + "wordSecond": "langsam", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "breakfast", + "wordSecond": "Frühstück", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lunch", + "wordSecond": "Mittagessen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "dinner", + "wordSecond": "Abendessen", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "snack", + "wordSecond": "Snack", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "homework", + "wordSecond": "Hausaufgaben", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bus", + "wordSecond": "Bus", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "train", + "wordSecond": "Zug", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bicycle", + "wordSecond": "Fahrrad", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "car", + "wordSecond": "Auto", + "createdAt": "2026-02-19T14:42:24.448Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_en_es_A2.json b/output/2026_02_19_daily_routines_en_es_A2.json new file mode 100644 index 0000000..099014d --- /dev/null +++ b/output/2026_02_19_daily_routines_en_es_A2.json @@ -0,0 +1,786 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:42:00.245Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wake up", + "wordSecond": "despertarse", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "get up", + "wordSecond": "levantarse", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shower", + "wordSecond": "ducharse", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "brush teeth", + "wordSecond": "cepillarse los dientes", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wash face", + "wordSecond": "lavarse la cara", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "get dressed", + "wordSecond": "vestirse", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "eat breakfast", + "wordSecond": "desayunar", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "drink coffee", + "wordSecond": "tomar café", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "go to work", + "wordSecond": "ir al trabajo", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "go to school", + "wordSecond": "ir a la escuela", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "start work", + "wordSecond": "empezar a trabajar", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "study", + "wordSecond": "estudiar", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "have a class", + "wordSecond": "tener una clase", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "work", + "wordSecond": "trabajar", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "read", + "wordSecond": "leer", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "write", + "wordSecond": "escribir", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "meet friends", + "wordSecond": "encontrarse con amigos", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "have lunch", + "wordSecond": "almorzar", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "take a break", + "wordSecond": "tomar un descanso", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "finish work", + "wordSecond": "terminar de trabajar", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "leave school", + "wordSecond": "salir de la escuela", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "go home", + "wordSecond": "ir a casa", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rest", + "wordSecond": "descansar", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cook dinner", + "wordSecond": "cocinar la cena", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "eat dinner", + "wordSecond": "cenar", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "set the table", + "wordSecond": "poner la mesa", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wash dishes", + "wordSecond": "lavar los platos", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "watch TV", + "wordSecond": "ver la televisión", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "listen to music", + "wordSecond": "escuchar música", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "read a book", + "wordSecond": "leer un libro", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "relax", + "wordSecond": "relajarse", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "take a walk", + "wordSecond": "dar un paseo", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "exercise", + "wordSecond": "hacer ejercicio", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "take a bath", + "wordSecond": "bañarse", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "brush hair", + "wordSecond": "cepillarse el pelo", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "go to bed", + "wordSecond": "acostarse", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sleep", + "wordSecond": "dormir", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "morning", + "wordSecond": "mañana", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "afternoon", + "wordSecond": "tarde", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "evening", + "wordSecond": "noche", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "night", + "wordSecond": "noche", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "today", + "wordSecond": "hoy", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tomorrow", + "wordSecond": "mañana", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "yesterday", + "wordSecond": "ayer", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "day", + "wordSecond": "día", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "week", + "wordSecond": "semana", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "weekend", + "wordSecond": "fin de semana", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "always", + "wordSecond": "siempre", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "often", + "wordSecond": "a menudo", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "usually", + "wordSecond": "normalmente", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sometimes", + "wordSecond": "a veces", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rarely", + "wordSecond": "raramente", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "never", + "wordSecond": "nunca", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "early", + "wordSecond": "temprano", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "late", + "wordSecond": "tarde", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "quickly", + "wordSecond": "rápidamente", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "slowly", + "wordSecond": "despacio", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "well", + "wordSecond": "bien", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "badly", + "wordSecond": "mal", + "createdAt": "2026-02-19T14:42:00.245Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_en_fr_A2.json b/output/2026_02_19_daily_routines_en_fr_A2.json new file mode 100644 index 0000000..d69b9bd --- /dev/null +++ b/output/2026_02_19_daily_routines_en_fr_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:42:37.014Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wake up", + "wordSecond": "se réveiller", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "get up", + "wordSecond": "se lever", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shower", + "wordSecond": "se doucher", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wash", + "wordSecond": "se laver", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "brush teeth", + "wordSecond": "se brosser les dents", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "get dressed", + "wordSecond": "s'habiller", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "eat breakfast", + "wordSecond": "prendre le petit déjeuner", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "drink coffee", + "wordSecond": "boire du café", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "go to work", + "wordSecond": "aller au travail", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "go to school", + "wordSecond": "aller à l'école", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "start work", + "wordSecond": "commencer le travail", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "study", + "wordSecond": "étudier", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "work", + "wordSecond": "travailler", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "have a meeting", + "wordSecond": "avoir une réunion", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "meet", + "wordSecond": "rencontrer", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "write", + "wordSecond": "écrire", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "read", + "wordSecond": "lire", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "call", + "wordSecond": "appeler", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "send an email", + "wordSecond": "envoyer un email", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "take a break", + "wordSecond": "faire une pause", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "eat lunch", + "wordSecond": "déjeuner", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "finish work", + "wordSecond": "finir le travail", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "leave work", + "wordSecond": "quitter le travail", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "go home", + "wordSecond": "rentrer à la maison", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cook", + "wordSecond": "cuisiner", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "prepare dinner", + "wordSecond": "préparer le dîner", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "eat dinner", + "wordSecond": "dîner", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "set the table", + "wordSecond": "mettre la table", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wash dishes", + "wordSecond": "faire la vaisselle", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "clean", + "wordSecond": "nettoyer", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "relax", + "wordSecond": "se détendre", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "watch TV", + "wordSecond": "regarder la télévision", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "listen to music", + "wordSecond": "écouter de la musique", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "read a book", + "wordSecond": "lire un livre", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "take a walk", + "wordSecond": "faire une promenade", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "exercise", + "wordSecond": "faire de l'exercice", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "take a bath", + "wordSecond": "prendre un bain", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "brush hair", + "wordSecond": "se brosser les cheveux", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "go to bed", + "wordSecond": "se coucher", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sleep", + "wordSecond": "dormir", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "morning", + "wordSecond": "le matin", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "afternoon", + "wordSecond": "l'après-midi", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "evening", + "wordSecond": "le soir", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "night", + "wordSecond": "la nuit", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "today", + "wordSecond": "aujourd'hui", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tomorrow", + "wordSecond": "demain", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "yesterday", + "wordSecond": "hier", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "always", + "wordSecond": "toujours", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "often", + "wordSecond": "souvent", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sometimes", + "wordSecond": "parfois", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "never", + "wordSecond": "jamais", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "usually", + "wordSecond": "d'habitude", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "every day", + "wordSecond": "tous les jours", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "every morning", + "wordSecond": "tous les matins", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "every evening", + "wordSecond": "tous les soirs", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "weekday", + "wordSecond": "un jour de semaine", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "weekend", + "wordSecond": "le week-end", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "early", + "wordSecond": "tôt", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "late", + "wordSecond": "tard", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "quickly", + "wordSecond": "vite", + "createdAt": "2026-02-19T14:42:37.014Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_en_it_A2.json b/output/2026_02_19_daily_routines_en_it_A2.json new file mode 100644 index 0000000..6779340 --- /dev/null +++ b/output/2026_02_19_daily_routines_en_it_A2.json @@ -0,0 +1,786 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:42:49.464Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wake up", + "wordSecond": "svegliarsi", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "get up", + "wordSecond": "alzarsi", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shower", + "wordSecond": "fare la doccia", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wash", + "wordSecond": "lavarsi", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "brush teeth", + "wordSecond": "lavarsi i denti", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "get dressed", + "wordSecond": "vestirsi", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "put on clothes", + "wordSecond": "mettersi i vestiti", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "eat breakfast", + "wordSecond": "fare colazione", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "have breakfast", + "wordSecond": "prendere la colazione", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "drink coffee", + "wordSecond": "bere il caffè", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "go to work", + "wordSecond": "andare al lavoro", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "go to school", + "wordSecond": "andare a scuola", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "start work", + "wordSecond": "iniziare a lavorare", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "start school", + "wordSecond": "iniziare la scuola", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "work", + "wordSecond": "lavorare", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "study", + "wordSecond": "studiare", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "read", + "wordSecond": "leggere", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "write", + "wordSecond": "scrivere", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "meet", + "wordSecond": "incontrare", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "talk", + "wordSecond": "parlare", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "have lunch", + "wordSecond": "pranzare", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "eat lunch", + "wordSecond": "mangiare a pranzo", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "finish work", + "wordSecond": "finire di lavorare", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "finish school", + "wordSecond": "finire la scuola", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "go home", + "wordSecond": "andare a casa", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "arrive home", + "wordSecond": "arrivare a casa", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cook", + "wordSecond": "cucinare", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "prepare dinner", + "wordSecond": "preparare la cena", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "eat dinner", + "wordSecond": "cenare", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "have dinner", + "wordSecond": "mangiare a cena", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wash dishes", + "wordSecond": "lavare i piatti", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "clean", + "wordSecond": "pulire", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "watch TV", + "wordSecond": "guardare la TV", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "listen to music", + "wordSecond": "ascoltare la musica", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "read a book", + "wordSecond": "leggere un libro", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "relax", + "wordSecond": "rilassarsi", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "take a walk", + "wordSecond": "fare una passeggiata", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "call a friend", + "wordSecond": "chiamare un amico", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "go to bed", + "wordSecond": "andare a letto", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sleep", + "wordSecond": "dormire", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "morning", + "wordSecond": "mattina", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "afternoon", + "wordSecond": "pomeriggio", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "evening", + "wordSecond": "sera", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "night", + "wordSecond": "notte", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "early", + "wordSecond": "presto", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "late", + "wordSecond": "tardi", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "always", + "wordSecond": "sempre", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "often", + "wordSecond": "spesso", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sometimes", + "wordSecond": "qualche volta", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "rarely", + "wordSecond": "raramente", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "never", + "wordSecond": "mai", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "every day", + "wordSecond": "ogni giorno", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "every morning", + "wordSecond": "ogni mattina", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "every evening", + "wordSecond": "ogni sera", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "on weekdays", + "wordSecond": "nei giorni feriali", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "on weekends", + "wordSecond": "nei fine settimana", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "at home", + "wordSecond": "a casa", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "at work", + "wordSecond": "al lavoro", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "at school", + "wordSecond": "a scuola", + "createdAt": "2026-02-19T14:42:49.464Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_en_ja_A2.json b/output/2026_02_19_daily_routines_en_ja_A2.json new file mode 100644 index 0000000..4281e27 --- /dev/null +++ b/output/2026_02_19_daily_routines_en_ja_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:43:11.885Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "wake up", + "wordSecond": "起きる (おきる, okiru)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "get up", + "wordSecond": "起き上がる (おきあがる, okiagaru)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "shower", + "wordSecond": "シャワーを浴びる (シャワーをあびる, shawā o abiru)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "wash face", + "wordSecond": "顔を洗う (かおをあらう, kao o arau)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "brush teeth", + "wordSecond": "歯を磨く (はをみがく, ha o migaku)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "get dressed", + "wordSecond": "服を着る (ふくをきる, fuku o kiru)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "eat breakfast", + "wordSecond": "朝ごはんを食べる (あさごはんをたべる, asagohan o taberu)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "drink coffee", + "wordSecond": "コーヒーを飲む (コーヒーをのむ, kōhī o nomu)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "go to work", + "wordSecond": "仕事に行く (しごとにいく, shigoto ni iku)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "go to school", + "wordSecond": "学校に行く (がっこうにいく, gakkō ni iku)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "work", + "wordSecond": "働く (はたらく, hataraku)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "study", + "wordSecond": "勉強する (べんきょうする, benkyō suru)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "read", + "wordSecond": "読む (よむ, yomu)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "write", + "wordSecond": "書く (かく, kaku)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "meet", + "wordSecond": "会う (あう, au)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "talk", + "wordSecond": "話す (はなす, hanasu)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "listen", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "lunch", + "wordSecond": "昼ごはんを食べる (ひるごはんをたべる, hirugohan o taberu)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "take a break", + "wordSecond": "休憩する (きゅうけいする, kyūkei suru)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "finish work", + "wordSecond": "仕事を終える (しごとをおえる, shigoto o oeru)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "go home", + "wordSecond": "家に帰る (いえにかえる, ie ni kaeru)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cook", + "wordSecond": "料理する (りょうりする, ryōri suru)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "eat dinner", + "wordSecond": "晩ごはんを食べる (ばんごはんをたべる, bangohan o taberu)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "wash dishes", + "wordSecond": "皿を洗う (さらをあらう, sara o arau)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "watch TV", + "wordSecond": "テレビを見る (テレビをみる, terebi o miru)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "relax", + "wordSecond": "リラックスする (リラックスする, rirakkusu suru)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "read a book", + "wordSecond": "本を読む (ほんをよむ, hon o yomu)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "take a bath", + "wordSecond": "お風呂に入る (おふろにはいる, ofuro ni hairu)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "go to bed", + "wordSecond": "寝る (ねる, neru)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sleep", + "wordSecond": "眠る (ねむる, nemuru)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "morning", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "afternoon", + "wordSecond": "午後 (ごご, gogo)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "evening", + "wordSecond": "夕方 (ゆうがた, yūgata)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "night", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "today", + "wordSecond": "今日 (きょう, kyō)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "tomorrow", + "wordSecond": "明日 (あした, ashita)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "yesterday", + "wordSecond": "昨日 (きのう, kinō)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "always", + "wordSecond": "いつも (いつも, itsumo)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "often", + "wordSecond": "よく (よく, yoku)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sometimes", + "wordSecond": "時々 (ときどき, tokidoki)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "never", + "wordSecond": "決して~ない (けっして~ない, kesshite ~ nai)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "usually", + "wordSecond": "普通 (ふつう, futsū)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "early", + "wordSecond": "早く (はやく, hayaku)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "late", + "wordSecond": "遅く (おそく, osoku)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "fast", + "wordSecond": "速く (はやく, hayaku)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "slow", + "wordSecond": "ゆっくり (ゆっくり, yukkuri)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "breakfast", + "wordSecond": "朝ごはん (あさごはん, asagohan)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "lunch", + "wordSecond": "昼ごはん (ひるごはん, hirugohan)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "dinner", + "wordSecond": "晩ごはん (ばんごはん, bangohan)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "snack", + "wordSecond": "おやつ (おやつ, oyatsu)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "water", + "wordSecond": "水 (みず, mizu)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "tea", + "wordSecond": "お茶 (おちゃ, ocha)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "milk", + "wordSecond": "牛乳 (ぎゅうにゅう, gyūnyū)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bread", + "wordSecond": "パン (パン, pan)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "rice", + "wordSecond": "ご飯 (ごはん, gohan)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "fruit", + "wordSecond": "果物 (くだもの, kudamono)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "vegetables", + "wordSecond": "野菜 (やさい, yasai)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "meat", + "wordSecond": "肉 (にく, niku)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "fish", + "wordSecond": "魚 (さかな, sakana)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "egg", + "wordSecond": "卵 (たまご, tamago)", + "createdAt": "2026-02-19T14:43:11.885Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_en_ko_A2.json b/output/2026_02_19_daily_routines_en_ko_A2.json new file mode 100644 index 0000000..a0b8a1b --- /dev/null +++ b/output/2026_02_19_daily_routines_en_ko_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:43:44.764Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "wake up", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "get up", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "shower", + "wordSecond": "샤워하다 (syawohada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "wash face", + "wordSecond": "세수하다 (sesuhada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "brush teeth", + "wordSecond": "양치하다 (yangchihada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "get dressed", + "wordSecond": "옷을 입다 (oseul ipda)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "eat breakfast", + "wordSecond": "아침을 먹다 (achimeul meokda)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "drink coffee", + "wordSecond": "커피를 마시다 (keopireul masida)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "go to work", + "wordSecond": "출근하다 (chulgeunhada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "go to school", + "wordSecond": "학교에 가다 (hakgyoe gada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "work", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "study", + "wordSecond": "공부하다 (gongbuhada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "meet", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "have lunch", + "wordSecond": "점심을 먹다 (jeomsimeul meokda)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "take a break", + "wordSecond": "휴식하다 (hyusikada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "finish work", + "wordSecond": "퇴근하다 (toegeunhada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "go home", + "wordSecond": "집에 가다 (jibe gada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cook", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "eat dinner", + "wordSecond": "저녁을 먹다 (jeonyeogeul meokda)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "wash dishes", + "wordSecond": "설거지하다 (seolgeojihada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "watch TV", + "wordSecond": "TV를 보다 (TVreul boda)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "read a book", + "wordSecond": "책을 읽다 (chaegeul ikda)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "listen to music", + "wordSecond": "음악을 듣다 (eumageul deutda)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "relax", + "wordSecond": "휴식하다 (hyusikada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "take a bath", + "wordSecond": "목욕하다 (mogyokada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "go to bed", + "wordSecond": "잠자리에 들다 (jamjariae deulda)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sleep", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "morning", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "afternoon", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "evening", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "night", + "wordSecond": "밤 (bam)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "today", + "wordSecond": "오늘 (oneul)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "tomorrow", + "wordSecond": "내일 (naeil)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "yesterday", + "wordSecond": "어제 (eoje)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "week", + "wordSecond": "주 (ju)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "weekend", + "wordSecond": "주말 (jumal)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "always", + "wordSecond": "항상 (hangsang)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "often", + "wordSecond": "자주 (jaju)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sometimes", + "wordSecond": "가끔 (gakkeum)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "never", + "wordSecond": "절대 (jeoldae)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "usually", + "wordSecond": "보통 (botong)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "early", + "wordSecond": "일찍 (iljjik)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "late", + "wordSecond": "늦게 (neutge)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "fast", + "wordSecond": "빨리 (ppalli)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "slowly", + "wordSecond": "천천히 (cheoncheonhi)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "breakfast", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "lunch", + "wordSecond": "점심 (jeomsim)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "dinner", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "snack", + "wordSecond": "간식 (gansik)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "water", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "tea", + "wordSecond": "차 (cha)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "milk", + "wordSecond": "우유 (uyu)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bread", + "wordSecond": "빵 (ppang)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "rice", + "wordSecond": "밥 (bap)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "fruit", + "wordSecond": "과일 (gwail)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "vegetable", + "wordSecond": "야채 (yachae)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "newspaper", + "wordSecond": "신문 (sinmun)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "phone", + "wordSecond": "전화 (jeonhwa)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "computer", + "wordSecond": "컴퓨터 (keompyuteo)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "exercise", + "wordSecond": "운동하다 (undonghada)", + "createdAt": "2026-02-19T14:43:44.764Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_en_pl_A2.json b/output/2026_02_19_daily_routines_en_pl_A2.json new file mode 100644 index 0000000..874defa --- /dev/null +++ b/output/2026_02_19_daily_routines_en_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:43:58.711Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "wake up", + "wordSecond": "budzić się", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "get up", + "wordSecond": "wstawać", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "shower", + "wordSecond": "brać prysznic", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "wash face", + "wordSecond": "myć twarz", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "brush teeth", + "wordSecond": "myć zęby", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "comb hair", + "wordSecond": "czesać włosy", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "dress", + "wordSecond": "ubierać się", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "put on clothes", + "wordSecond": "zakładać ubrania", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "eat breakfast", + "wordSecond": "jeść śniadanie", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "drink coffee", + "wordSecond": "pić kawę", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "drink tea", + "wordSecond": "pić herbatę", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "go to work", + "wordSecond": "iść do pracy", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "go to school", + "wordSecond": "iść do szkoły", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "start work", + "wordSecond": "zaczynać pracę", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "start class", + "wordSecond": "zaczynać lekcje", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "work", + "wordSecond": "pracować", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "study", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "read", + "wordSecond": "czytać", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "write", + "wordSecond": "pisać", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "meet friends", + "wordSecond": "spotykać przyjaciół", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "meet colleagues", + "wordSecond": "spotykać kolegów", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "have lunch", + "wordSecond": "jeść obiad", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "eat a sandwich", + "wordSecond": "jeść kanapkę", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "drink water", + "wordSecond": "pić wodę", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "take a break", + "wordSecond": "robić przerwę", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "finish work", + "wordSecond": "kończyć pracę", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "finish school", + "wordSecond": "kończyć szkołę", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "go home", + "wordSecond": "iść do domu", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cook dinner", + "wordSecond": "gotować obiad", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "prepare food", + "wordSecond": "przygotowywać jedzenie", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "eat dinner", + "wordSecond": "jeść kolację", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "set the table", + "wordSecond": "nakrywać do stołu", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "wash dishes", + "wordSecond": "myć naczynia", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "watch TV", + "wordSecond": "oglądać telewizję", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "listen to music", + "wordSecond": "słuchać muzyki", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "read a book", + "wordSecond": "czytać książkę", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "relax", + "wordSecond": "odpoczywać", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "take a walk", + "wordSecond": "iść na spacer", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "exercise", + "wordSecond": "ćwiczyć", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "take a bath", + "wordSecond": "brać kąpiel", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "brush teeth (evening)", + "wordSecond": "myć zęby (wieczorem)", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "put on pajamas", + "wordSecond": "zakładać piżamę", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "go to bed", + "wordSecond": "iść spać", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sleep", + "wordSecond": "spać", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "morning", + "wordSecond": "rano", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "afternoon", + "wordSecond": "popołudnie", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "evening", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "night", + "wordSecond": "noc", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "today", + "wordSecond": "dziś", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "tomorrow", + "wordSecond": "jutro", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "yesterday", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "always", + "wordSecond": "zawsze", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "often", + "wordSecond": "często", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "usually", + "wordSecond": "zwykle", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sometimes", + "wordSecond": "czasami", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "rarely", + "wordSecond": "rzadko", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "never", + "wordSecond": "nigdy", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "every day", + "wordSecond": "codziennie", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "every morning", + "wordSecond": "każdego ranka", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "every evening", + "wordSecond": "każdego wieczoru", + "createdAt": "2026-02-19T14:43:58.711Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_en_pt_A2.json b/output/2026_02_19_daily_routines_en_pt_A2.json new file mode 100644 index 0000000..0ef4132 --- /dev/null +++ b/output/2026_02_19_daily_routines_en_pt_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:42:12.931Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wake up", + "wordSecond": "acordar", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "get up", + "wordSecond": "levantar", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shower", + "wordSecond": "tomar banho", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "brush teeth", + "wordSecond": "escovar os dentes", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wash face", + "wordSecond": "lavar o rosto", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "get dressed", + "wordSecond": "vestir-se", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "eat breakfast", + "wordSecond": "tomar café da manhã", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "drink coffee", + "wordSecond": "tomar café", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "go to work", + "wordSecond": "ir para o trabalho", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "go to school", + "wordSecond": "ir para a escola", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "start work", + "wordSecond": "começar a trabalhar", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "study", + "wordSecond": "estudar", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "work", + "wordSecond": "trabalhar", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "have a meeting", + "wordSecond": "ter uma reunião", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "meet friends", + "wordSecond": "encontrar amigos", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "have lunch", + "wordSecond": "almoçar", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "take a break", + "wordSecond": "fazer uma pausa", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "finish work", + "wordSecond": "terminar o trabalho", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "leave work", + "wordSecond": "sair do trabalho", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "go home", + "wordSecond": "ir para casa", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cook dinner", + "wordSecond": "preparar o jantar", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "eat dinner", + "wordSecond": "jantar", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "set the table", + "wordSecond": "pôr a mesa", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wash dishes", + "wordSecond": "lavar a louça", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "watch TV", + "wordSecond": "assistir TV", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "read a book", + "wordSecond": "ler um livro", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "listen to music", + "wordSecond": "ouvir música", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "relax", + "wordSecond": "relaxar", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "take a walk", + "wordSecond": "dar um passeio", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "exercise", + "wordSecond": "fazer exercício", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "take a bath", + "wordSecond": "tomar banho", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "brush hair", + "wordSecond": "pentear o cabelo", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "put on pajamas", + "wordSecond": "colocar o pijama", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "go to bed", + "wordSecond": "ir para a cama", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sleep", + "wordSecond": "dormir", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "morning", + "wordSecond": "manhã", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "afternoon", + "wordSecond": "tarde", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "evening", + "wordSecond": "noite", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "night", + "wordSecond": "noite", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "today", + "wordSecond": "hoje", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tomorrow", + "wordSecond": "amanhã", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "yesterday", + "wordSecond": "ontem", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "weekday", + "wordSecond": "dia de semana", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "weekend", + "wordSecond": "fim de semana", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "always", + "wordSecond": "sempre", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "often", + "wordSecond": "frequentemente", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sometimes", + "wordSecond": "às vezes", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "never", + "wordSecond": "nunca", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "usually", + "wordSecond": "geralmente", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "early", + "wordSecond": "cedo", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "late", + "wordSecond": "tarde", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "quickly", + "wordSecond": "rapidamente", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "slowly", + "wordSecond": "devagar", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "breakfast", + "wordSecond": "café da manhã", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lunch", + "wordSecond": "almoço", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dinner", + "wordSecond": "jantar", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "snack", + "wordSecond": "lanche", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "homework", + "wordSecond": "lição de casa", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bus", + "wordSecond": "ônibus", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "car", + "wordSecond": "carro", + "createdAt": "2026-02-19T14:42:12.931Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_en_zh_A2.json b/output/2026_02_19_daily_routines_en_zh_A2.json new file mode 100644 index 0000000..3e226f7 --- /dev/null +++ b/output/2026_02_19_daily_routines_en_zh_A2.json @@ -0,0 +1,786 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:43:27.135Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "wake up", + "wordSecond": "起床 (qi chuang)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "get up", + "wordSecond": "起来 (qi lai)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "shower", + "wordSecond": "洗澡 (xi zao)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "brush teeth", + "wordSecond": "刷牙 (shua ya)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "wash face", + "wordSecond": "洗脸 (xi lian)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "get dressed", + "wordSecond": "穿衣服 (chuan yi fu)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "eat breakfast", + "wordSecond": "吃早饭 (chi zao fan)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "drink coffee", + "wordSecond": "喝咖啡 (he ka fei)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "drink tea", + "wordSecond": "喝茶 (he cha)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "go to work", + "wordSecond": "去上班 (qu shang ban)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "go to school", + "wordSecond": "去上学 (qu shang xue)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "work", + "wordSecond": "工作 (gong zuo)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "study", + "wordSecond": "学习 (xue xi)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "read", + "wordSecond": "读 (du)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "write", + "wordSecond": "写 (xie)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "meet friends", + "wordSecond": "见朋友 (jian peng you)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "have a meeting", + "wordSecond": "开会 (kai hui)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "eat lunch", + "wordSecond": "吃午饭 (chi wu fan)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "take a break", + "wordSecond": "休息 (xiu xi)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "finish work", + "wordSecond": "下班 (xia ban)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "finish school", + "wordSecond": "放学 (fang xue)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "go home", + "wordSecond": "回家 (hui jia)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cook", + "wordSecond": "做饭 (zuo fan)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "eat dinner", + "wordSecond": "吃晚饭 (chi wan fan)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "watch TV", + "wordSecond": "看电视 (kan dian shi)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "listen to music", + "wordSecond": "听音乐 (ting yin yue)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "read a book", + "wordSecond": "看书 (kan shu)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "relax", + "wordSecond": "放松 (fang song)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "exercise", + "wordSecond": "锻炼 (duan lian)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "walk", + "wordSecond": "散步 (san bu)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "take a bath", + "wordSecond": "洗澡 (xi zao)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "go to bed", + "wordSecond": "上床睡觉 (shang chuang shui jiao)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sleep", + "wordSecond": "睡觉 (shui jiao)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "morning", + "wordSecond": "早上 (zao shang)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "afternoon", + "wordSecond": "下午 (xia wu)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "evening", + "wordSecond": "晚上 (wan shang)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "night", + "wordSecond": "晚上 (wan shang)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "today", + "wordSecond": "今天 (jin tian)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "tomorrow", + "wordSecond": "明天 (ming tian)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "yesterday", + "wordSecond": "昨天 (zuo tian)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "weekday", + "wordSecond": "工作日 (gong zuo ri)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "weekend", + "wordSecond": "周末 (zhou mo)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "always", + "wordSecond": "总是 (zong shi)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "often", + "wordSecond": "经常 (jing chang)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sometimes", + "wordSecond": "有时候 (you shi hou)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "never", + "wordSecond": "从不 (cong bu)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "usually", + "wordSecond": "通常 (tong chang)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "every day", + "wordSecond": "每天 (mei tian)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "every morning", + "wordSecond": "每天早上 (mei tian zao shang)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "every evening", + "wordSecond": "每天晚上 (mei tian wan shang)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "early", + "wordSecond": "早 (zao)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "late", + "wordSecond": "晚 (wan)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "quickly", + "wordSecond": "快 (kuai)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "slowly", + "wordSecond": "慢 (man)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hungry", + "wordSecond": "饿 (e)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "thirsty", + "wordSecond": "渴 (ke)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "tired", + "wordSecond": "累 (lei)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "busy", + "wordSecond": "忙 (mang)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "free", + "wordSecond": "有空 (you kong)", + "createdAt": "2026-02-19T14:43:27.135Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_es_de_A2.json b/output/2026_02_19_daily_routines_es_de_A2.json new file mode 100644 index 0000000..9e0750c --- /dev/null +++ b/output/2026_02_19_daily_routines_es_de_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:44:24.779Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "despertarse", + "wordSecond": "aufwachen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "levantarse", + "wordSecond": "aufstehen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ducharse", + "wordSecond": "duschen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lavarse", + "wordSecond": "waschen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cepillarse los dientes", + "wordSecond": "Zähne putzen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "peinarse", + "wordSecond": "kämmen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "vestirse", + "wordSecond": "anziehen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "desayunar", + "wordSecond": "frühstücken", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tomar café", + "wordSecond": "Kaffee trinken", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ir al trabajo", + "wordSecond": "zur Arbeit gehen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ir a la escuela", + "wordSecond": "zur Schule gehen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "estudiar", + "wordSecond": "lernen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "trabajar", + "wordSecond": "arbeiten", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "leer", + "wordSecond": "lesen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "escribir", + "wordSecond": "schreiben", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "almorzar", + "wordSecond": "zu Mittag essen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "comer", + "wordSecond": "essen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "beber", + "wordSecond": "trinken", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cocinar", + "wordSecond": "kochen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cenar", + "wordSecond": "zu Abend essen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lavar los platos", + "wordSecond": "Geschirr spülen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "limpiar", + "wordSecond": "putzen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hacer la cama", + "wordSecond": "das Bett machen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ver la televisión", + "wordSecond": "fernsehen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "escuchar música", + "wordSecond": "Musik hören", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "relajarse", + "wordSecond": "sich entspannen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dormir", + "wordSecond": "schlafen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "acostarse", + "wordSecond": "ins Bett gehen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la mañana", + "wordSecond": "der Morgen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la tarde", + "wordSecond": "der Nachmittag", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la noche", + "wordSecond": "der Abend", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la medianoche", + "wordSecond": "die Mitternacht", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "temprano", + "wordSecond": "früh", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tarde", + "wordSecond": "spät", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "siempre", + "wordSecond": "immer", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "a menudo", + "wordSecond": "oft", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "a veces", + "wordSecond": "manchmal", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "nunca", + "wordSecond": "nie", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "todos los días", + "wordSecond": "jeden Tag", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "de lunes a viernes", + "wordSecond": "von Montag bis Freitag", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el fin de semana", + "wordSecond": "das Wochenende", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el desayuno", + "wordSecond": "das Frühstück", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el almuerzo", + "wordSecond": "das Mittagessen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cena", + "wordSecond": "das Abendessen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el café", + "wordSecond": "der Kaffee", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el té", + "wordSecond": "der Tee", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pan", + "wordSecond": "das Brot", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la leche", + "wordSecond": "die Milch", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el agua", + "wordSecond": "das Wasser", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el autobús", + "wordSecond": "der Bus", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el coche", + "wordSecond": "das Auto", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la bicicleta", + "wordSecond": "das Fahrrad", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "caminar", + "wordSecond": "zu Fuß gehen", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la oficina", + "wordSecond": "das Büro", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la casa", + "wordSecond": "das Haus", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el baño", + "wordSecond": "das Badezimmer", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cocina", + "wordSecond": "die Küche", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el dormitorio", + "wordSecond": "das Schlafzimmer", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el reloj", + "wordSecond": "die Uhr", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el despertador", + "wordSecond": "der Wecker", + "createdAt": "2026-02-19T14:44:24.779Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_es_fr_A2.json b/output/2026_02_19_daily_routines_es_fr_A2.json new file mode 100644 index 0000000..3adb81a --- /dev/null +++ b/output/2026_02_19_daily_routines_es_fr_A2.json @@ -0,0 +1,786 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:44:38.303Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "despertarse", + "wordSecond": "se réveiller", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "levantarse", + "wordSecond": "se lever", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ducharse", + "wordSecond": "se doucher", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lavarse la cara", + "wordSecond": "se laver le visage", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cepillarse los dientes", + "wordSecond": "se brosser les dents", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "peinarse", + "wordSecond": "se coiffer", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vestirse", + "wordSecond": "s'habiller", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "desayunar", + "wordSecond": "prendre le petit déjeuner", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "beber café", + "wordSecond": "boire du café", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ir al trabajo", + "wordSecond": "aller au travail", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ir a la escuela", + "wordSecond": "aller à l'école", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "estudiar", + "wordSecond": "étudier", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "trabajar", + "wordSecond": "travailler", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "leer", + "wordSecond": "lire", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "escribir", + "wordSecond": "écrire", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "almorzar", + "wordSecond": "déjeuner", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "comer", + "wordSecond": "manger", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "beber", + "wordSecond": "boire", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "descansar", + "wordSecond": "se reposer", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "volver a casa", + "wordSecond": "rentrer à la maison", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cocinar", + "wordSecond": "cuisiner", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "preparar la cena", + "wordSecond": "préparer le dîner", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cenar", + "wordSecond": "dîner", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ver la televisión", + "wordSecond": "regarder la télévision", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "escuchar música", + "wordSecond": "écouter de la musique", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "llamar por teléfono", + "wordSecond": "téléphoner", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lavar los platos", + "wordSecond": "faire la vaisselle", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "limpiar", + "wordSecond": "nettoyer", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hacer la cama", + "wordSecond": "faire le lit", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "acostarse", + "wordSecond": "se coucher", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dormir", + "wordSecond": "dormir", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "por la mañana", + "wordSecond": "le matin", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "por la tarde", + "wordSecond": "l'après-midi", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "por la noche", + "wordSecond": "le soir", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "temprano", + "wordSecond": "tôt", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tarde", + "wordSecond": "tard", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "siempre", + "wordSecond": "toujours", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "a menudo", + "wordSecond": "souvent", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "a veces", + "wordSecond": "parfois", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nunca", + "wordSecond": "jamais", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "todos los días", + "wordSecond": "tous les jours", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "de lunes a viernes", + "wordSecond": "du lundi au vendredi", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el fin de semana", + "wordSecond": "le week-end", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hoy", + "wordSecond": "aujourd'hui", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mañana", + "wordSecond": "demain", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ayer", + "wordSecond": "hier", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ahora", + "wordSecond": "maintenant", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "luego", + "wordSecond": "ensuite", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "después", + "wordSecond": "après", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "antes", + "wordSecond": "avant", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "rápido", + "wordSecond": "vite", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lento", + "wordSecond": "lentement", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fácil", + "wordSecond": "facile", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "difícil", + "wordSecond": "difficile", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cansado", + "wordSecond": "fatigué", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ocupado", + "wordSecond": "occupé", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "libre", + "wordSecond": "libre", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "feliz", + "wordSecond": "heureux", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "listo", + "wordSecond": "prêt", + "createdAt": "2026-02-19T14:44:38.303Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_es_it_A2.json b/output/2026_02_19_daily_routines_es_it_A2.json new file mode 100644 index 0000000..614295b --- /dev/null +++ b/output/2026_02_19_daily_routines_es_it_A2.json @@ -0,0 +1,786 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:44:51.067Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "despertarse", + "wordSecond": "svegliarsi", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "levantarse", + "wordSecond": "alzarsi", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ducharse", + "wordSecond": "farsi la doccia", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lavarse", + "wordSecond": "lavarsi", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cepillarse los dientes", + "wordSecond": "lavarsi i denti", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "peinarse", + "wordSecond": "pettinarsi", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vestirse", + "wordSecond": "vestirsi", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "desayunar", + "wordSecond": "fare colazione", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tomar café", + "wordSecond": "prendere il caffè", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ir al trabajo", + "wordSecond": "andare al lavoro", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ir a la escuela", + "wordSecond": "andare a scuola", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estudiar", + "wordSecond": "studiare", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "trabajar", + "wordSecond": "lavorare", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "leer", + "wordSecond": "leggere", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "escribir", + "wordSecond": "scrivere", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "almorzar", + "wordSecond": "pranzare", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "comer", + "wordSecond": "mangiare", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "beber", + "wordSecond": "bere", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "regresar a casa", + "wordSecond": "tornare a casa", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cocinar", + "wordSecond": "cucinare", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "preparar la cena", + "wordSecond": "preparare la cena", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cenar", + "wordSecond": "cenare", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lavar los platos", + "wordSecond": "lavare i piatti", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "limpiar", + "wordSecond": "pulire", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ordenar", + "wordSecond": "riordinare", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "relajarse", + "wordSecond": "rilassarsi", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ver la televisión", + "wordSecond": "guardare la televisione", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "escuchar música", + "wordSecond": "ascoltare la musica", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "leer un libro", + "wordSecond": "leggere un libro", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "llamar por teléfono", + "wordSecond": "telefonare", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "acostarse", + "wordSecond": "andare a letto", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dormir", + "wordSecond": "dormire", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mañana", + "wordSecond": "mattina", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tarde", + "wordSecond": "pomeriggio", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "noche", + "wordSecond": "sera", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mediodía", + "wordSecond": "mezzogiorno", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "medianoche", + "wordSecond": "mezzanotte", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "temprano", + "wordSecond": "presto", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tarde", + "wordSecond": "tardi", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "siempre", + "wordSecond": "sempre", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "a menudo", + "wordSecond": "spesso", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "a veces", + "wordSecond": "a volte", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nunca", + "wordSecond": "mai", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "todos los días", + "wordSecond": "ogni giorno", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "de lunes a viernes", + "wordSecond": "da lunedì a venerdì", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "el fin de semana", + "wordSecond": "il fine settimana", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hoy", + "wordSecond": "oggi", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ayer", + "wordSecond": "ieri", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mañana", + "wordSecond": "domani", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ahora", + "wordSecond": "adesso", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "luego", + "wordSecond": "poi", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "después", + "wordSecond": "dopo", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "antes", + "wordSecond": "prima", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "rápido", + "wordSecond": "veloce", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lento", + "wordSecond": "lento", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "fácil", + "wordSecond": "facile", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "difícil", + "wordSecond": "difficile", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cansado", + "wordSecond": "stanco", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "listo", + "wordSecond": "pronto", + "createdAt": "2026-02-19T14:44:51.067Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_es_ja_A2.json b/output/2026_02_19_daily_routines_es_ja_A2.json new file mode 100644 index 0000000..a805b8f --- /dev/null +++ b/output/2026_02_19_daily_routines_es_ja_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:45:15.576Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "despertarse", + "wordSecond": "起きる (おきる, okiru)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "levantarse", + "wordSecond": "起き上がる (おきあがる, okiagaru)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ducharse", + "wordSecond": "シャワーを浴びる (シャワーをあびる, shawā o abiru)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lavarse la cara", + "wordSecond": "顔を洗う (かおをあらう, kao o arau)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cepillarse los dientes", + "wordSecond": "歯を磨く (はをみがく, ha o migaku)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "vestirse", + "wordSecond": "服を着る (ふくをきる, fuku o kiru)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "desayunar", + "wordSecond": "朝ごはんを食べる (あさごはんをたべる, asagohan o taberu)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "beber café", + "wordSecond": "コーヒーを飲む (コーヒーをのむ, kōhī o nomu)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ir al trabajo", + "wordSecond": "仕事に行く (しごとにいく, shigoto ni iku)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ir a la escuela", + "wordSecond": "学校に行く (がっこうにいく, gakkō ni iku)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "trabajar", + "wordSecond": "働く (はたらく, hataraku)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "estudiar", + "wordSecond": "勉強する (べんきょうする, benkyō suru)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "leer", + "wordSecond": "読む (よむ, yomu)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "escribir", + "wordSecond": "書く (かく, kaku)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "escuchar", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hablar", + "wordSecond": "話す (はなす, hanasu)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "encontrarse con amigos", + "wordSecond": "友達に会う (ともだちにあう, tomodachi ni au)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "almorzar", + "wordSecond": "昼ごはんを食べる (ひるごはんをたべる, hirugohan o taberu)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "descansar", + "wordSecond": "休む (やすむ, yasumu)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "volver a casa", + "wordSecond": "家に帰る (いえにかえる, ie ni kaeru)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cocinar", + "wordSecond": "料理する (りょうりする, ryōri suru)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "preparar la cena", + "wordSecond": "晩ごはんを作る (ばんごはんをつくる, bangohan o tsukuru)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cenar", + "wordSecond": "晩ごはんを食べる (ばんごはんをたべる, bangohan o taberu)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ver la televisión", + "wordSecond": "テレビを見る (テレビをみる, terebi o miru)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "relajarse", + "wordSecond": "リラックスする (リラックスする, rirakkusu suru)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "leer un libro", + "wordSecond": "本を読む (ほんをよむ, hon o yomu)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dormir", + "wordSecond": "寝る (ねる, neru)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "acostarse", + "wordSecond": "寝る (ねる, neru)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mañana", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tarde", + "wordSecond": "昼 (ひる, hiru)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "noche", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mediodía", + "wordSecond": "正午 (しょうご, shōgo)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "medianoche", + "wordSecond": "真夜中 (まよなか, mayonaka)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "temprano", + "wordSecond": "早く (はやく, hayaku)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tarde (hora)", + "wordSecond": "遅く (おそく, osoku)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "siempre", + "wordSecond": "いつも (いつも, itsumo)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "a menudo", + "wordSecond": "よく (よく, yoku)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "a veces", + "wordSecond": "時々 (ときどき, tokidoki)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "nunca", + "wordSecond": "決して~ない (けっして~ない, kesshite ~ nai)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "rara vez", + "wordSecond": "めったに~ない (めったに~ない, mettani ~ nai)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "todos los días", + "wordSecond": "毎日 (まいにち, mainichi)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cada semana", + "wordSecond": "毎週 (まいしゅう, maishū)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cada mes", + "wordSecond": "毎月 (まいつき, maitsuki)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cada año", + "wordSecond": "毎年 (まいとし, maitoshi)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lunes", + "wordSecond": "月曜日 (げつようび, getsuyōbi)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "martes", + "wordSecond": "火曜日 (かようび, kayōbi)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "miércoles", + "wordSecond": "水曜日 (すいようび, suiyōbi)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "jueves", + "wordSecond": "木曜日 (もくようび, mokuyōbi)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "viernes", + "wordSecond": "金曜日 (きんようび, kinyōbi)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sábado", + "wordSecond": "土曜日 (どようび, doyōbi)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "domingo", + "wordSecond": "日曜日 (にちようび, nichiyōbi)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "fin de semana", + "wordSecond": "週末 (しゅうまつ, shūmatsu)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hoy", + "wordSecond": "今日 (きょう, kyō)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mañana (día siguiente)", + "wordSecond": "明日 (あした, ashita)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ayer", + "wordSecond": "昨日 (きのう, kinō)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ahora", + "wordSecond": "今 (いま, ima)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "después", + "wordSecond": "後で (あとで, ato de)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "antes", + "wordSecond": "前に (まえに, mae ni)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "rápidamente", + "wordSecond": "速く (はやく, hayaku)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lentamente", + "wordSecond": "ゆっくり (ゆっくり, yukkuri)", + "createdAt": "2026-02-19T14:45:15.576Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_es_ko_A2.json b/output/2026_02_19_daily_routines_es_ko_A2.json new file mode 100644 index 0000000..3fdcfa0 --- /dev/null +++ b/output/2026_02_19_daily_routines_es_ko_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:45:52.564Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "despertarse", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "levantarse", + "wordSecond": "일어서다 (ireoseoda)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ducharse", + "wordSecond": "샤워하다 (syawohada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "bañarse", + "wordSecond": "목욕하다 (mogyokada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lavarse la cara", + "wordSecond": "세수하다 (sesuhada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cepillarse los dientes", + "wordSecond": "양치하다 (yangchihada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "peinarse", + "wordSecond": "머리를 빗다 (meorireul bitda)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "vestirse", + "wordSecond": "옷을 입다 (oseul ipda)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "desayunar", + "wordSecond": "아침을 먹다 (achimeul meokda)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "beber café", + "wordSecond": "커피를 마시다 (keopireul masida)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ir al trabajo", + "wordSecond": "출근하다 (chulgeunhada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ir a la escuela", + "wordSecond": "등교하다 (deunggyohada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "trabajar", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "estudiar", + "wordSecond": "공부하다 (gongbuhada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "leer", + "wordSecond": "읽다 (ikda)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "escribir", + "wordSecond": "쓰다 (sseuda)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "escuchar", + "wordSecond": "듣다 (deutda)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hablar", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "reunirse", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "almorzar", + "wordSecond": "점심을 먹다 (jeomsimeul meokda)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tomar un descanso", + "wordSecond": "휴식하다 (hyusikada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "terminar el trabajo", + "wordSecond": "퇴근하다 (toegeunhada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "regresar a casa", + "wordSecond": "집에 돌아가다 (jibe doragada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "comprar", + "wordSecond": "사다 (sada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cocinar", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "preparar la cena", + "wordSecond": "저녁을 준비하다 (jeonyeogeul junbihada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cenar", + "wordSecond": "저녁을 먹다 (jeonyeogeul meokda)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lavar los platos", + "wordSecond": "설거지하다 (seolgeojihada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "limpiar", + "wordSecond": "청소하다 (cheongsohada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ver televisión", + "wordSecond": "텔레비전을 보다 (tellebijeoneul boda)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "escuchar música", + "wordSecond": "음악을 듣다 (eumageul deutda)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "leer un libro", + "wordSecond": "책을 읽다 (chaegeul ikda)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "relajarse", + "wordSecond": "휴식하다 (hyusikada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dormir", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "acostarse", + "wordSecond": "잠자리에 들다 (jamjarie deulda)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mañana", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tarde", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "noche", + "wordSecond": "밤 (bam)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "medianoche", + "wordSecond": "자정 (jajeong)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mediodía", + "wordSecond": "정오 (jeongo)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hoy", + "wordSecond": "오늘 (oneul)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mañana (día siguiente)", + "wordSecond": "내일 (naeil)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ayer", + "wordSecond": "어제 (eoje)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ahora", + "wordSecond": "지금 (jigeum)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "luego", + "wordSecond": "나중에 (najunge)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "temprano", + "wordSecond": "일찍 (iljjik)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tarde (hora)", + "wordSecond": "늦게 (neutge)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "siempre", + "wordSecond": "항상 (hangsang)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "a menudo", + "wordSecond": "자주 (jaju)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "a veces", + "wordSecond": "가끔 (gakkeum)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "nunca", + "wordSecond": "절대 (jeoldae)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "rápidamente", + "wordSecond": "빨리 (ppalli)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "despacio", + "wordSecond": "천천히 (cheoncheonhi)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "temprano en la mañana", + "wordSecond": "이른 아침 (ireun achim)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "por la tarde", + "wordSecond": "오후에 (ohue)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "por la noche", + "wordSecond": "밤에 (bame)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "antes de", + "wordSecond": "전에 (jeone)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "después de", + "wordSecond": "후에 (hue)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "durante", + "wordSecond": "동안 (dongan)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "todos los días", + "wordSecond": "매일 (maeil)", + "createdAt": "2026-02-19T14:45:52.564Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_es_pl_A2.json b/output/2026_02_19_daily_routines_es_pl_A2.json new file mode 100644 index 0000000..948e71c --- /dev/null +++ b/output/2026_02_19_daily_routines_es_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:46:06.703Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "despertarse", + "wordSecond": "budzić się", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "levantarse", + "wordSecond": "wstawać", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ducharse", + "wordSecond": "brać prysznic", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "lavarse", + "wordSecond": "myć się", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cepillarse los dientes", + "wordSecond": "myć zęby", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "peinarse", + "wordSecond": "czesać się", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "vestirse", + "wordSecond": "ubierać się", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "desayunar", + "wordSecond": "jeść śniadanie", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "beber café", + "wordSecond": "pić kawę", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ir al trabajo", + "wordSecond": "iść do pracy", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ir a la escuela", + "wordSecond": "iść do szkoły", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "trabajar", + "wordSecond": "pracować", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "estudiar", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "leer", + "wordSecond": "czytać", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "escribir", + "wordSecond": "pisać", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "encontrarse con amigos", + "wordSecond": "spotykać się z przyjaciółmi", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "almorzar", + "wordSecond": "jeść obiad", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "comer", + "wordSecond": "jeść", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "beber", + "wordSecond": "pić", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "regresar a casa", + "wordSecond": "wracać do domu", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cocinar", + "wordSecond": "gotować", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "preparar la cena", + "wordSecond": "przygotowywać kolację", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cenar", + "wordSecond": "jeść kolację", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "lavar los platos", + "wordSecond": "myć naczynia", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "limpiar", + "wordSecond": "sprzątać", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ver la televisión", + "wordSecond": "oglądać telewizję", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "escuchar música", + "wordSecond": "słuchać muzyki", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "leer un libro", + "wordSecond": "czytać książkę", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "relajarse", + "wordSecond": "odpoczywać", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "acostarse", + "wordSecond": "kłaść się spać", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dormir", + "wordSecond": "spać", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mañana", + "wordSecond": "rano", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tarde", + "wordSecond": "po południu", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "noche", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "medianoche", + "wordSecond": "północ", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mediodía", + "wordSecond": "południe", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "temprano", + "wordSecond": "wcześnie", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tarde", + "wordSecond": "późno", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "siempre", + "wordSecond": "zawsze", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "a menudo", + "wordSecond": "często", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "a veces", + "wordSecond": "czasami", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "nunca", + "wordSecond": "nigdy", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "todos los días", + "wordSecond": "codziennie", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "de lunes a viernes", + "wordSecond": "od poniedziałku do piątku", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "el fin de semana", + "wordSecond": "weekend", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "después", + "wordSecond": "potem", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "antes", + "wordSecond": "przed", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "luego", + "wordSecond": "później", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ahora", + "wordSecond": "teraz", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pronto", + "wordSecond": "wkrótce", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "rápidamente", + "wordSecond": "szybko", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "lentamente", + "wordSecond": "powoli", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "caminar", + "wordSecond": "chodzić", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "correr", + "wordSecond": "biegać", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hacer ejercicio", + "wordSecond": "ćwiczyć", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "desayuno", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "almuerzo", + "wordSecond": "obiad", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cena", + "wordSecond": "kolacja", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "merienda", + "wordSecond": "przekąska", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "agua", + "wordSecond": "woda", + "createdAt": "2026-02-19T14:46:06.703Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_es_pt_A2.json b/output/2026_02_19_daily_routines_es_pt_A2.json new file mode 100644 index 0000000..01cfe6d --- /dev/null +++ b/output/2026_02_19_daily_routines_es_pt_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:44:11.680Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "despertarse", + "wordSecond": "acordar", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "levantarse", + "wordSecond": "levantar", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ducharse", + "wordSecond": "tomar banho", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lavarse", + "wordSecond": "lavar", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cepillarse los dientes", + "wordSecond": "escovar os dentes", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "peinarse", + "wordSecond": "pentear", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vestirse", + "wordSecond": "vestir", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desayunar", + "wordSecond": "tomar café da manhã", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "comer", + "wordSecond": "comer", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "beber", + "wordSecond": "beber", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ir", + "wordSecond": "ir", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "trabajar", + "wordSecond": "trabalhar", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estudiar", + "wordSecond": "estudar", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "leer", + "wordSecond": "ler", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escribir", + "wordSecond": "escrever", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "almorzar", + "wordSecond": "almoçar", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "regresar", + "wordSecond": "voltar", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cocinar", + "wordSecond": "cozinhar", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cenar", + "wordSecond": "jantar", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lavar los platos", + "wordSecond": "lavar a louça", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "limpiar", + "wordSecond": "limpar", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "relajarse", + "wordSecond": "relaxar", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ver televisión", + "wordSecond": "assistir televisão", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escuchar música", + "wordSecond": "ouvir música", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "llamar por teléfono", + "wordSecond": "telefonar", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dormir", + "wordSecond": "dormir", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "acostarse", + "wordSecond": "deitar", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mañana", + "wordSecond": "manhã", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tarde", + "wordSecond": "tarde", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "noche", + "wordSecond": "noite", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mediodía", + "wordSecond": "meio-dia", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "medianoche", + "wordSecond": "meia-noite", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hoy", + "wordSecond": "hoje", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ayer", + "wordSecond": "ontem", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mañana (día siguiente)", + "wordSecond": "amanhã", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "siempre", + "wordSecond": "sempre", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "a menudo", + "wordSecond": "frequentemente", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "a veces", + "wordSecond": "às vezes", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nunca", + "wordSecond": "nunca", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "temprano", + "wordSecond": "cedo", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tarde (hora)", + "wordSecond": "tarde", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rápido", + "wordSecond": "rápido", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lento", + "wordSecond": "devagar", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "primero", + "wordSecond": "primeiro", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "después", + "wordSecond": "depois", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "entonces", + "wordSecond": "então", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "finalmente", + "wordSecond": "finalmente", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cama", + "wordSecond": "cama", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "baño", + "wordSecond": "banheiro", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cocina", + "wordSecond": "cozinha", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sala", + "wordSecond": "sala", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "oficina", + "wordSecond": "escritório", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escuela", + "wordSecond": "escola", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "autobús", + "wordSecond": "ônibus", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "coche", + "wordSecond": "carro", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "despertador", + "wordSecond": "despertador", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cepillo de dientes", + "wordSecond": "escova de dentes", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pasta de dientes", + "wordSecond": "pasta de dente", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "jabón", + "wordSecond": "sabonete", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "toalla", + "wordSecond": "toalha", + "createdAt": "2026-02-19T14:44:11.680Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_es_zh_A2.json b/output/2026_02_19_daily_routines_es_zh_A2.json new file mode 100644 index 0000000..ee0d368 --- /dev/null +++ b/output/2026_02_19_daily_routines_es_zh_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:45:32.600Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "despertarse", + "wordSecond": "起床 (qi chuang)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "levantarse", + "wordSecond": "起来 (qi lai)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ducharse", + "wordSecond": "洗澡 (xi zao)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "lavarse la cara", + "wordSecond": "洗脸 (xi lian)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cepillarse los dientes", + "wordSecond": "刷牙 (shua ya)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "vestirse", + "wordSecond": "穿衣服 (chuan yi fu)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "peinarse", + "wordSecond": "梳头 (shu tou)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "desayunar", + "wordSecond": "吃早饭 (chi zao fan)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "beber café", + "wordSecond": "喝咖啡 (he ka fei)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ir al trabajo", + "wordSecond": "去上班 (qu shang ban)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ir a la escuela", + "wordSecond": "去上学 (qu shang xue)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "trabajar", + "wordSecond": "工作 (gong zuo)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "estudiar", + "wordSecond": "学习 (xue xi)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "leer", + "wordSecond": "读 (du)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "escribir", + "wordSecond": "写 (xie)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tener una reunión", + "wordSecond": "开会 (kai hui)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "encontrarse con amigos", + "wordSecond": "见朋友 (jian peng you)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "almorzar", + "wordSecond": "吃午饭 (chi wu fan)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "descansar", + "wordSecond": "休息 (xiu xi)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "terminar el trabajo", + "wordSecond": "下班 (xia ban)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "terminar la escuela", + "wordSecond": "放学 (fang xue)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ir de compras", + "wordSecond": "买东西 (mai dong xi)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cocinar", + "wordSecond": "做饭 (zuo fan)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "preparar la cena", + "wordSecond": "准备晚饭 (zhun bei wan fan)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cenar", + "wordSecond": "吃晚饭 (chi wan fan)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "lavar los platos", + "wordSecond": "洗碗 (xi wan)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "limpiar", + "wordSecond": "打扫 (da sao)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ver la televisión", + "wordSecond": "看电视 (kan dian shi)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "escuchar música", + "wordSecond": "听音乐 (ting yin yue)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "leer un libro", + "wordSecond": "看书 (kan shu)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "relajarse", + "wordSecond": "放松 (fang song)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pasear", + "wordSecond": "散步 (san bu)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hacer ejercicio", + "wordSecond": "做运动 (zuo yun dong)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "llamar por teléfono", + "wordSecond": "打电话 (da dian hua)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "acostarse", + "wordSecond": "睡觉 (shui jiao)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "dormir", + "wordSecond": "睡 (shui)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mañana", + "wordSecond": "早上 (zao shang)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mediodía", + "wordSecond": "中午 (zhong wu)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tarde", + "wordSecond": "下午 (xia wu)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "noche", + "wordSecond": "晚上 (wan shang)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "medianoche", + "wordSecond": "半夜 (ban ye)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "temprano", + "wordSecond": "早 (zao)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tarde", + "wordSecond": "晚 (wan)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "siempre", + "wordSecond": "总是 (zong shi)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "a menudo", + "wordSecond": "经常 (jing chang)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "a veces", + "wordSecond": "有时候 (you shi hou)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nunca", + "wordSecond": "从不 (cong bu)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "rápidamente", + "wordSecond": "快 (kuai)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "despacio", + "wordSecond": "慢 (man)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "primero", + "wordSecond": "先 (xian)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "después", + "wordSecond": "然后 (ran hou)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "finalmente", + "wordSecond": "最后 (zui hou)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "temprano por la mañana", + "wordSecond": "清晨 (qing chen)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "antes del trabajo", + "wordSecond": "上班前 (shang ban qian)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "después del trabajo", + "wordSecond": "下班后 (xia ban hou)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "antes de dormir", + "wordSecond": "睡觉前 (shui jiao qian)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "todos los días", + "wordSecond": "每天 (mei tian)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "entre semana", + "wordSecond": "工作日 (gong zuo ri)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "fin de semana", + "wordSecond": "周末 (zhou mo)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hoy", + "wordSecond": "今天 (jin tian)", + "createdAt": "2026-02-19T14:45:32.600Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_fr_it_A2.json b/output/2026_02_19_daily_routines_fr_it_A2.json new file mode 100644 index 0000000..8a162b8 --- /dev/null +++ b/output/2026_02_19_daily_routines_fr_it_A2.json @@ -0,0 +1,786 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:49:57.417Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "se réveiller", + "wordSecond": "svegliarsi", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "se lever", + "wordSecond": "alzarsi", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "prendre une douche", + "wordSecond": "fare la doccia", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "se laver", + "wordSecond": "lavarsi", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "se brosser les dents", + "wordSecond": "lavarsi i dents", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "se coiffer", + "wordSecond": "pettinarsi", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "s'habiller", + "wordSecond": "vestirsi", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "prendre le petit déjeuner", + "wordSecond": "fare colazione", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "manger", + "wordSecond": "mangiare", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "boire", + "wordSecond": "bere", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "aller au travail", + "wordSecond": "andare al lavoro", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "aller à l'école", + "wordSecond": "andare a scuola", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "travailler", + "wordSecond": "lavorare", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "étudier", + "wordSecond": "studiare", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "lire", + "wordSecond": "leggere", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "écrire", + "wordSecond": "scrivere", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rencontrer", + "wordSecond": "incontrare", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "parler", + "wordSecond": "parlare", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "écouter", + "wordSecond": "ascoltare", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "déjeuner", + "wordSecond": "pranzare", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "manger le déjeuner", + "wordSecond": "mangiare il pranzo", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rentrer à la maison", + "wordSecond": "tornare a casa", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "faire les courses", + "wordSecond": "fare la spesa", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cuisiner", + "wordSecond": "cucinare", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "préparer le dîner", + "wordSecond": "preparare la cena", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dîner", + "wordSecond": "cenare", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "manger le dîner", + "wordSecond": "mangiare la cena", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "laver la vaisselle", + "wordSecond": "lavare i piatti", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "nettoyer", + "wordSecond": "pulire", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "se détendre", + "wordSecond": "rilassarsi", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "regarder la télévision", + "wordSecond": "guardare la televisione", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "écouter de la musique", + "wordSecond": "ascoltare la musica", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "lire un livre", + "wordSecond": "leggere un libro", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "se promener", + "wordSecond": "fare una passeggiata", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "téléphoner", + "wordSecond": "telefonare", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "envoyer un message", + "wordSecond": "mandare un messaggio", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "se coucher", + "wordSecond": "andare a letto", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dormir", + "wordSecond": "dormire", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le matin", + "wordSecond": "la mattina", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'après-midi", + "wordSecond": "il pomeriggio", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le soir", + "wordSecond": "la sera", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la nuit", + "wordSecond": "la notte", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tôt", + "wordSecond": "presto", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tard", + "wordSecond": "tardi", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "toujours", + "wordSecond": "sempre", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "souvent", + "wordSecond": "spesso", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "parfois", + "wordSecond": "a volte", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "quelquefois", + "wordSecond": "qualche volta", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rarement", + "wordSecond": "raramente", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "jamais", + "wordSecond": "mai", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chaque jour", + "wordSecond": "ogni giorno", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tous les jours", + "wordSecond": "tutti i giorni", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le lundi", + "wordSecond": "il lunedì", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le week-end", + "wordSecond": "il fine settimana", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "se préparer", + "wordSecond": "prepararsi", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "faire le lit", + "wordSecond": "fare il letto", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sortir", + "wordSecond": "uscire", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rentrer", + "wordSecond": "rientrare", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "se reposer", + "wordSecond": "riposarsi", + "createdAt": "2026-02-19T14:49:57.417Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_fr_ja_A2.json b/output/2026_02_19_daily_routines_fr_ja_A2.json new file mode 100644 index 0000000..edeac1a --- /dev/null +++ b/output/2026_02_19_daily_routines_fr_ja_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:50:22.241Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "se réveiller", + "wordSecond": "起きる (おきる, okiru)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "se lever", + "wordSecond": "起き上がる (おきあがる, okiagaru)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "se doucher", + "wordSecond": "シャワーを浴びる (しゃわーをあびる, shawā o abiru)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "prendre une douche", + "wordSecond": "シャワーを浴びる (しゃわーをあびる, shawā o abiru)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "se laver", + "wordSecond": "洗う (あらう, arau)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "se brosser les dents", + "wordSecond": "歯を磨く (はをみがく, ha o migaku)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "se coiffer", + "wordSecond": "髪をとかす (かみをとかす, kami o tokasu)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "s'habiller", + "wordSecond": "服を着る (ふくをきる, fuku o kiru)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mettre ses chaussures", + "wordSecond": "靴を履く (くつをはく, kutsu o haku)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "prendre le petit déjeuner", + "wordSecond": "朝ごはんを食べる (あさごはんをたべる, asagohan o taberu)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "manger", + "wordSecond": "食べる (たべる, taberu)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "boire", + "wordSecond": "飲む (のむ, nomu)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "aller au travail", + "wordSecond": "仕事に行く (しごとにいく, shigoto ni iku)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "aller à l'école", + "wordSecond": "学校に行く (がっこうにいく, gakkō ni iku)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "travailler", + "wordSecond": "働く (はたらく, hataraku)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "étudier", + "wordSecond": "勉強する (べんきょうする, benkyō suru)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "lire", + "wordSecond": "読む (よむ, yomu)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "écrire", + "wordSecond": "書く (かく, kaku)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rencontrer", + "wordSecond": "会う (あう, au)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "parler", + "wordSecond": "話す (はなす, hanasu)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "écouter", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "déjeuner", + "wordSecond": "昼ごはんを食べる (ひるごはんをたべる, hirugohan o taberu)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "manger le déjeuner", + "wordSecond": "昼ごはんを食べる (ひるごはんをたべる, hirugohan o taberu)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rentrer à la maison", + "wordSecond": "家に帰る (いえにかえる, ie ni kaeru)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cuisiner", + "wordSecond": "料理する (りょうりする, ryōri suru)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "préparer le dîner", + "wordSecond": "晩ごはんを作る (ばんごはんをつくる, bangohan o tsukuru)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "manger le dîner", + "wordSecond": "晩ごはんを食べる (ばんごはんをたべる, bangohan o taberu)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "laver la vaisselle", + "wordSecond": "皿を洗う (さらをあらう, sara o arau)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "regarder la télévision", + "wordSecond": "テレビを見る (てれびをみる, terebi o miru)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "écouter de la musique", + "wordSecond": "音楽を聞く (おんがくをきく, ongaku o kiku)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "lire un livre", + "wordSecond": "本を読む (ほんをよむ, hon o yomu)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "se détendre", + "wordSecond": "リラックスする (りらっくすする, rirakkusu suru)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "se reposer", + "wordSecond": "休む (やすむ, yasumu)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "se coucher", + "wordSecond": "寝る (ねる, neru)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "dormir", + "wordSecond": "眠る (ねむる, nemuru)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le matin", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "l'après-midi", + "wordSecond": "午後 (ごご, gogo)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le soir", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "la nuit", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "aujourd'hui", + "wordSecond": "今日 (きょう, kyō)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "demain", + "wordSecond": "明日 (あした, ashita)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "hier", + "wordSecond": "昨日 (きのう, kinō)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "maintenant", + "wordSecond": "今 (いま, ima)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "plus tard", + "wordSecond": "後で (あとで, ato de)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tôt", + "wordSecond": "早く (はやく, hayaku)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tard", + "wordSecond": "遅く (おそく, osoku)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "toujours", + "wordSecond": "いつも (itsumo)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "souvent", + "wordSecond": "よく (yoku)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "parfois", + "wordSecond": "時々 (ときどき, tokidoki)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "quelquefois", + "wordSecond": "時々 (ときどき, tokidoki)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rarement", + "wordSecond": "めったに (mettani)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "jamais", + "wordSecond": "決して (けっして, kesshite)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ne...jamais", + "wordSecond": "決して...ない (けっして...ない, kesshite...nai)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tous les jours", + "wordSecond": "毎日 (まいにち, mainichi)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chaque semaine", + "wordSecond": "毎週 (まいしゅう, maishū)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chaque mois", + "wordSecond": "毎月 (まいつき, maitsuki)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chaque année", + "wordSecond": "毎年 (まいとし, maitoshi)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le lundi", + "wordSecond": "月曜日 (げつようび, getsuyōbi)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le mardi", + "wordSecond": "火曜日 (かようび, kayōbi)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le mercredi", + "wordSecond": "水曜日 (すいようび, suiyōbi)", + "createdAt": "2026-02-19T14:50:22.241Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_fr_ko_A2.json b/output/2026_02_19_daily_routines_fr_ko_A2.json new file mode 100644 index 0000000..32bc4ec --- /dev/null +++ b/output/2026_02_19_daily_routines_fr_ko_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:51:00.798Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "se réveiller", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "se lever", + "wordSecond": "일어서다 (ireoseoda)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "se laver", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "prendre une douche", + "wordSecond": "샤워하다 (syawohada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "se brosser les dents", + "wordSecond": "양치하다 (yangchihada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "se coiffer", + "wordSecond": "머리를 빗다 (meorireul bitda)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "s'habiller", + "wordSecond": "옷을 입다 (oseul ipda)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "prendre le petit déjeuner", + "wordSecond": "아침을 먹다 (achimeul meokda)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "boire du café", + "wordSecond": "커피를 마시다 (keopireul masida)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "aller au travail", + "wordSecond": "출근하다 (chulgeunhada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "aller à l'école", + "wordSecond": "학교에 가다 (hakgyoe gada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "travailler", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "étudier", + "wordSecond": "공부하다 (gongbuhada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "lire", + "wordSecond": "읽다 (ikda)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "écrire", + "wordSecond": "쓰다 (sseuda)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "rencontrer", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "parler", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "écouter", + "wordSecond": "듣다 (deutda)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "déjeuner", + "wordSecond": "점심을 먹다 (jeomsimeul meokda)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "prendre une pause", + "wordSecond": "휴식을 취하다 (hyusigeul chwihada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "rentrer à la maison", + "wordSecond": "집에 돌아가다 (jibe doragada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cuisiner", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "préparer le dîner", + "wordSecond": "저녁을 준비하다 (jeonyeogeul junbihada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dîner", + "wordSecond": "저녁을 먹다 (jeonyeogeul meokda)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "laver la vaisselle", + "wordSecond": "설거지하다 (seolgeojihada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "regarder la télévision", + "wordSecond": "텔레비전을 보다 (tellebijeoneul boda)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "se détendre", + "wordSecond": "휴식하다 (hyusikhada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "lire un livre", + "wordSecond": "책을 읽다 (chaegeul ikda)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "écouter de la musique", + "wordSecond": "음악을 듣다 (eumageul deutda)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "se promener", + "wordSecond": "산책하다 (sanchaekhada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "se coucher", + "wordSecond": "잠자리에 들다 (jamjariae deulda)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dormir", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "le matin", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "l'après-midi", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "le soir", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "la nuit", + "wordSecond": "밤 (bam)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tôt", + "wordSecond": "일찍 (iljjik)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tard", + "wordSecond": "늦게 (neutge)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "maintenant", + "wordSecond": "지금 (jigeum)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "plus tard", + "wordSecond": "나중에 (najunge)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "toujours", + "wordSecond": "항상 (hangsang)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "souvent", + "wordSecond": "자주 (jaju)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "parfois", + "wordSecond": "가끔 (gakkeum)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "quelquefois", + "wordSecond": "때때로 (ttaettaero)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "rarement", + "wordSecond": "드물게 (deumulge)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "jamais", + "wordSecond": "절대 (jeoldae)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chaque jour", + "wordSecond": "매일 (maeil)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chaque semaine", + "wordSecond": "매주 (maeju)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "le lundi", + "wordSecond": "월요일 (woryoil)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "le week-end", + "wordSecond": "주말 (jumal)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "le petit déjeuner", + "wordSecond": "아침 식사 (achim siksa)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "le déjeuner", + "wordSecond": "점심 식사 (jeomsim siksa)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "le dîner", + "wordSecond": "저녁 식사 (jeonyeok siksa)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "le travail", + "wordSecond": "일 (il)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "l'école", + "wordSecond": "학교 (hakgyo)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "la maison", + "wordSecond": "집 (jip)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "le lit", + "wordSecond": "침대 (chimdae)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "la salle de bain", + "wordSecond": "욕실 (yoksil)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "la cuisine", + "wordSecond": "부엌 (bueok)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "le salon", + "wordSecond": "거실 (geosil)", + "createdAt": "2026-02-19T14:51:00.798Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_fr_pl_A2.json b/output/2026_02_19_daily_routines_fr_pl_A2.json new file mode 100644 index 0000000..b5d041f --- /dev/null +++ b/output/2026_02_19_daily_routines_fr_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:51:15.262Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "se réveiller", + "wordSecond": "budzić się", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "se lever", + "wordSecond": "wstawać", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "prendre une douche", + "wordSecond": "brać prysznic", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "se laver", + "wordSecond": "myć się", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "se brosser les dents", + "wordSecond": "myć zęby", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "se coiffer", + "wordSecond": "czesać się", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "s'habiller", + "wordSecond": "ubierać się", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "prendre le petit déjeuner", + "wordSecond": "jeść śniadanie", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "boire du café", + "wordSecond": "pić kawę", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "aller au travail", + "wordSecond": "iść do pracy", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "aller à l'école", + "wordSecond": "iść do szkoły", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "travailler", + "wordSecond": "pracować", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "étudier", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "lire", + "wordSecond": "czytać", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "écrire", + "wordSecond": "pisać", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rencontrer des amis", + "wordSecond": "spotykać się z przyjaciółmi", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "parler", + "wordSecond": "rozmawiać", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "manger le déjeuner", + "wordSecond": "jeść obiad", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rentrer à la maison", + "wordSecond": "wracać do domu", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "faire les courses", + "wordSecond": "robić zakupy", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cuisiner", + "wordSecond": "gotować", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "préparer le dîner", + "wordSecond": "przygotowywać kolację", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "manger le dîner", + "wordSecond": "jeść kolację", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "regarder la télévision", + "wordSecond": "oglądać telewizję", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "écouter de la musique", + "wordSecond": "słuchać muzyki", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "lire un livre", + "wordSecond": "czytać książkę", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "se promener", + "wordSecond": "spacerować", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "se détendre", + "wordSecond": "odpoczywać", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "prendre un bain", + "wordSecond": "brać kąpiel", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "se coucher", + "wordSecond": "kłaść się spać", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dormir", + "wordSecond": "spać", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le matin", + "wordSecond": "rano", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'après-midi", + "wordSecond": "po południu", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le soir", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la nuit", + "wordSecond": "noc", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "tôt", + "wordSecond": "wcześnie", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "tard", + "wordSecond": "późno", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "maintenant", + "wordSecond": "teraz", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "plus tard", + "wordSecond": "później", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "toujours", + "wordSecond": "zawsze", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "souvent", + "wordSecond": "często", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "parfois", + "wordSecond": "czasami", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rarement", + "wordSecond": "rzadko", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "jamais", + "wordSecond": "nigdy", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chaque jour", + "wordSecond": "codziennie", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la semaine", + "wordSecond": "tydzień", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le week-end", + "wordSecond": "weekend", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "lundi", + "wordSecond": "poniedziałek", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "mardi", + "wordSecond": "wtorek", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "mercredi", + "wordSecond": "środa", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "jeudi", + "wordSecond": "czwartek", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "vendredi", + "wordSecond": "piątek", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "samedi", + "wordSecond": "sobota", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dimanche", + "wordSecond": "niedziela", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le réveil", + "wordSecond": "budzik", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le petit déjeuner", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le déjeuner", + "wordSecond": "obiad", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le dîner", + "wordSecond": "kolacja", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le lit", + "wordSecond": "łóżko", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la salle de bain", + "wordSecond": "łazienka", + "createdAt": "2026-02-19T14:51:15.262Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_fr_zh_A2.json b/output/2026_02_19_daily_routines_fr_zh_A2.json new file mode 100644 index 0000000..57b48b4 --- /dev/null +++ b/output/2026_02_19_daily_routines_fr_zh_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:50:39.540Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "se réveiller", + "wordSecond": "起床 (qǐ chuáng)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "se lever", + "wordSecond": "起来 (qǐ lái)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "prendre une douche", + "wordSecond": "洗澡 (xǐ zǎo)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "se laver", + "wordSecond": "洗 (xǐ)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "se brosser les dents", + "wordSecond": "刷牙 (shuā yá)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "se coiffer", + "wordSecond": "梳头 (shū tóu)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "s'habiller", + "wordSecond": "穿衣服 (chuān yī fu)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "prendre le petit déjeuner", + "wordSecond": "吃早饭 (chī zǎo fàn)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "boire du café", + "wordSecond": "喝咖啡 (hē kā fēi)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "aller au travail", + "wordSecond": "去上班 (qù shàng bān)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "aller à l'école", + "wordSecond": "去上学 (qù shàng xué)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "travailler", + "wordSecond": "工作 (gōng zuò)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "étudier", + "wordSecond": "学习 (xué xí)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lire", + "wordSecond": "读 (dú)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "écrire", + "wordSecond": "写 (xiě)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "rencontrer", + "wordSecond": "见面 (jiàn miàn)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "parler", + "wordSecond": "说话 (shuō huà)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "écouter", + "wordSecond": "听 (tīng)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "prendre le déjeuner", + "wordSecond": "吃午饭 (chī wǔ fàn)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "manger", + "wordSecond": "吃 (chī)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "boire", + "wordSecond": "喝 (hē)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "rentrer à la maison", + "wordSecond": "回家 (huí jiā)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cuisiner", + "wordSecond": "做饭 (zuò fàn)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "préparer le dîner", + "wordSecond": "准备晚饭 (zhǔn bèi wǎn fàn)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "manger le dîner", + "wordSecond": "吃晚饭 (chī wǎn fàn)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "regarder la télévision", + "wordSecond": "看电视 (kàn diàn shì)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "se détendre", + "wordSecond": "放松 (fàng sōng)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lire un livre", + "wordSecond": "看书 (kàn shū)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "écouter de la musique", + "wordSecond": "听音乐 (tīng yīn yuè)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "se promener", + "wordSecond": "散步 (sàn bù)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "se coucher", + "wordSecond": "睡觉 (shuì jiào)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "dormir", + "wordSecond": "睡 (shuì)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "matin", + "wordSecond": "早上 (zǎo shang)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "après-midi", + "wordSecond": "下午 (xià wǔ)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "soir", + "wordSecond": "晚上 (wǎn shang)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "nuit", + "wordSecond": "晚上 (wǎn shang)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "aujourd'hui", + "wordSecond": "今天 (jīn tiān)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "demain", + "wordSecond": "明天 (míng tiān)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "hier", + "wordSecond": "昨天 (zuó tiān)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "maintenant", + "wordSecond": "现在 (xiàn zài)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "toujours", + "wordSecond": "总是 (zǒng shì)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "souvent", + "wordSecond": "经常 (jīng cháng)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "parfois", + "wordSecond": "有时候 (yǒu shí hou)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "jamais", + "wordSecond": "从不 (cóng bù)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tôt", + "wordSecond": "早 (zǎo)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tard", + "wordSecond": "晚 (wǎn)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vite", + "wordSecond": "快 (kuài)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lentement", + "wordSecond": "慢 (màn)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "bien", + "wordSecond": "好 (hǎo)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mal", + "wordSecond": "不好 (bù hǎo)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "facile", + "wordSecond": "容易 (róng yì)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "difficile", + "wordSecond": "难 (nán)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "occupé", + "wordSecond": "忙 (máng)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "libre", + "wordSecond": "有空 (yǒu kòng)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fatigué", + "wordSecond": "累 (lèi)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "heureux", + "wordSecond": "高兴 (gāo xìng)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "triste", + "wordSecond": "难过 (nán guò)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "faim", + "wordSecond": "饿 (è)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "soif", + "wordSecond": "渴 (kě)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "propre", + "wordSecond": "干净 (gān jìng)", + "createdAt": "2026-02-19T14:50:39.540Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_it_ja_A2.json b/output/2026_02_19_daily_routines_it_ja_A2.json new file mode 100644 index 0000000..94c5cd0 --- /dev/null +++ b/output/2026_02_19_daily_routines_it_ja_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:51:38.434Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "svegliarsi", + "wordSecond": "起きる (おきる, okiru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "alzarsi", + "wordSecond": "起き上がる (おきあがる, okiagaru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fare la doccia", + "wordSecond": "シャワーを浴びる (シャワーをあびる, shawā o abiru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lavarsi", + "wordSecond": "洗う (あらう, arau)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "vestirsi", + "wordSecond": "着る (きる, kiru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fare colazione", + "wordSecond": "朝ごはんを食べる (あさごはんをたべる, asagohan o taberu)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mangiare", + "wordSecond": "食べる (たべる, taberu)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "bere", + "wordSecond": "飲む (のむ, nomu)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lavarsi i denti", + "wordSecond": "歯を磨く (はをみがく, ha o migaku)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pettinarsi", + "wordSecond": "髪をとかす (かみをとかす, kami o tokasu)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "andare a scuola", + "wordSecond": "学校に行く (がっこうにいく, gakkō ni iku)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "andare al lavoro", + "wordSecond": "仕事に行く (しごとにいく, shigoto ni iku)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "studiare", + "wordSecond": "勉強する (べんきょうする, benkyō suru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lavorare", + "wordSecond": "働く (はたらく, hataraku)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "incontrare", + "wordSecond": "会う (あう, au)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "parlare", + "wordSecond": "話す (はなす, hanasu)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "scrivere", + "wordSecond": "書く (かく, kaku)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "leggere", + "wordSecond": "読む (よむ, yomu)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ascoltare", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pranzare", + "wordSecond": "昼ごはんを食べる (ひるごはんをたべる, hirugohan o taberu)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fare una pausa", + "wordSecond": "休憩する (きゅうけいする, kyūkei suru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "finire", + "wordSecond": "終わる (おわる, owaru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tornare a casa", + "wordSecond": "家に帰る (いえにかえる, ie ni kaeru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cucinare", + "wordSecond": "料理する (りょうりする, ryōri suru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "preparare la cena", + "wordSecond": "晩ごはんを作る (ばんごはんをつくる, bangohan o tsukuru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cenare", + "wordSecond": "晩ごはんを食べる (ばんごはんをたべる, bangohan o taberu)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "guardare la TV", + "wordSecond": "テレビを見る (テレビをみる, terebi o miru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "rilassarsi", + "wordSecond": "リラックスする (リラックスする, rirakkusu suru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "giocare", + "wordSecond": "遊ぶ (あそぶ, asobu)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fare una passeggiata", + "wordSecond": "散歩する (さんぽする, sanpo suru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fare sport", + "wordSecond": "スポーツする (スポーツする, supōtsu suru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fare le faccende", + "wordSecond": "家事をする (かじをする, kaji o suru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lavare i piatti", + "wordSecond": "皿を洗う (さらをあらう, sara o arau)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fare la spesa", + "wordSecond": "買い物する (かいものする, kaimono suru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "andare a letto", + "wordSecond": "寝る (ねる, neru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dormire", + "wordSecond": "眠る (ねむる, nemuru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mattina", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mezzogiorno", + "wordSecond": "昼 (ひる, hiru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pomeriggio", + "wordSecond": "午後 (ごご, gogo)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sera", + "wordSecond": "晩 (ばん, ban)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "notte", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "oggi", + "wordSecond": "今日 (きょう, kyō)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "domani", + "wordSecond": "明日 (あした, ashita)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ieri", + "wordSecond": "昨日 (きのう, kinō)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "settimana", + "wordSecond": "週 (しゅう, shū)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "giorno", + "wordSecond": "日 (ひ, hi)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ora", + "wordSecond": "時 (じ, ji)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "minuto", + "wordSecond": "分 (ふん, fun)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sempre", + "wordSecond": "いつも (itsumo)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "spesso", + "wordSecond": "よく (yoku)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "qualche volta", + "wordSecond": "時々 (ときどき, tokidoki)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "raramente", + "wordSecond": "めったに (mettani)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mai", + "wordSecond": "決して (けっして, kesshite)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "presto", + "wordSecond": "早く (はやく, hayaku)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tardi", + "wordSecond": "遅く (おそく, osoku)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "prima", + "wordSecond": "前に (まえに, mae ni)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dopo", + "wordSecond": "後に (あとに, ato ni)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "subito", + "wordSecond": "すぐに (sugu ni)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lentamente", + "wordSecond": "ゆっくり (yukkuri)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "velocemente", + "wordSecond": "速く (はやく, hayaku)", + "createdAt": "2026-02-19T14:51:38.434Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_it_ko_A2.json b/output/2026_02_19_daily_routines_it_ko_A2.json new file mode 100644 index 0000000..89b9a24 --- /dev/null +++ b/output/2026_02_19_daily_routines_it_ko_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:52:16.159Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "svegliarsi", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "alzarsi", + "wordSecond": "일어서다 (ireoseoda)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "fare la doccia", + "wordSecond": "샤워하다 (syawohada)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lavarsi", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "vestirsi", + "wordSecond": "옷을 입다 (oseul ipda)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "fare colazione", + "wordSecond": "아침을 먹다 (achimeul meokda)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mangiare", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bere", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lavarsi i denti", + "wordSecond": "이를 닦다 (ireul dakkda)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pettinarsi", + "wordSecond": "머리를 빗다 (meorireul bitda)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "andare", + "wordSecond": "가다 (gada)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lavorare", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "studiare", + "wordSecond": "공부하다 (gongbuhada)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "incontrare", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pranzare", + "wordSecond": "점심을 먹다 (jeomsimeul meokda)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cucinare", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cenare", + "wordSecond": "저녁을 먹다 (jeonyeogeul meokda)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "rilassarsi", + "wordSecond": "쉬다 (swida)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "guardare la TV", + "wordSecond": "텔레비전을 보다 (tellebijeoneul boda)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "leggere", + "wordSecond": "읽다 (ikda)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ascoltare musica", + "wordSecond": "음악을 듣다 (eumageul deutda)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dormire", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "andare a letto", + "wordSecond": "잠자리에 들다 (jamjariae deulda)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "svegliarsi presto", + "wordSecond": "일찍 일어나다 (iljjik ireonada)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "fare esercizio", + "wordSecond": "운동하다 (undonghada)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "fare la spesa", + "wordSecond": "장보기하다 (jangbogihada)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pulire", + "wordSecond": "청소하다 (cheongsohada)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lavare i piatti", + "wordSecond": "설거지하다 (seolgeojihada)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "fare il bucato", + "wordSecond": "빨래하다 (ppallaehada)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "stirare", + "wordSecond": "다림질하다 (darimjilhada)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mattina", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pomeriggio", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sera", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "notte", + "wordSecond": "밤 (bam)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mezzogiorno", + "wordSecond": "정오 (jeongo)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mezzanotte", + "wordSecond": "자정 (jajeong)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "prima", + "wordSecond": "전에 (jeone)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dopo", + "wordSecond": "후에 (hue)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "presto", + "wordSecond": "일찍 (iljjik)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tardi", + "wordSecond": "늦게 (neutge)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sempre", + "wordSecond": "항상 (hangsang)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "spesso", + "wordSecond": "자주 (jaju)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "qualche volta", + "wordSecond": "가끔 (gakkeum)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "raramente", + "wordSecond": "드물게 (deumulge)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mai", + "wordSecond": "절대 (jeoldae)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ogni giorno", + "wordSecond": "매일 (maeil)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ogni settimana", + "wordSecond": "매주 (maeju)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ogni mese", + "wordSecond": "매달 (maedal)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ogni anno", + "wordSecond": "매년 (maenyeon)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "colazione", + "wordSecond": "아침 식사 (achim siksa)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pranzo", + "wordSecond": "점심 식사 (jeomsim siksa)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cena", + "wordSecond": "저녁 식사 (jeonyeok siksa)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "spuntino", + "wordSecond": "간식 (gansik)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "caffè", + "wordSecond": "커피 (keopi)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tè", + "wordSecond": "차 (cha)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "autobus", + "wordSecond": "버스 (beoseu)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "metro", + "wordSecond": "지하철 (jihacheol)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "macchina", + "wordSecond": "차 (cha)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bicicletta", + "wordSecond": "자전거 (jajeongeo)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "a piedi", + "wordSecond": "걸어서 (georeoseo)", + "createdAt": "2026-02-19T14:52:16.159Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_it_pl_A2.json b/output/2026_02_19_daily_routines_it_pl_A2.json new file mode 100644 index 0000000..13e3950 --- /dev/null +++ b/output/2026_02_19_daily_routines_it_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:52:29.965Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "svegliarsi", + "wordSecond": "budzić się", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "alzarsi", + "wordSecond": "wstawać", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "fare la doccia", + "wordSecond": "brać prysznic", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lavarsi", + "wordSecond": "myć się", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "asciugarsi", + "wordSecond": "wycierać się", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vestirsi", + "wordSecond": "ubierać się", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "fare colazione", + "wordSecond": "jeść śniadanie", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "bere il caffè", + "wordSecond": "pić kawę", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lavarsi i denti", + "wordSecond": "myć zęby", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pettinarsi", + "wordSecond": "czesać się", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "uscire di casa", + "wordSecond": "wychodzić z domu", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "andare al lavoro", + "wordSecond": "iść do pracy", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "andare a scuola", + "wordSecond": "iść do szkoły", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lavorare", + "wordSecond": "pracować", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "studiare", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "incontrare", + "wordSecond": "spotykać", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "parlare", + "wordSecond": "rozmawiać", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "scrivere", + "wordSecond": "pisać", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "leggere", + "wordSecond": "czytać", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "fare una pausa", + "wordSecond": "robić przerwę", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pranzare", + "wordSecond": "jeść obiad", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "bere acqua", + "wordSecond": "pić wodę", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tornare a casa", + "wordSecond": "wracać do domu", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cucinare", + "wordSecond": "gotować", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "preparare la cena", + "wordSecond": "przygotowywać kolację", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cenare", + "wordSecond": "jeść kolację", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lavare i piatti", + "wordSecond": "myć naczynia", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "guardare la TV", + "wordSecond": "oglądać telewizję", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ascoltare musica", + "wordSecond": "słuchać muzyki", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "leggere un libro", + "wordSecond": "czytać książkę", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "rilassarsi", + "wordSecond": "odpoczywać", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "fare una passeggiata", + "wordSecond": "iść na spacer", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "chiamare", + "wordSecond": "dzwonić", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "andare a letto", + "wordSecond": "iść spać", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dormire", + "wordSecond": "spać", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sognare", + "wordSecond": "śnić", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mattina", + "wordSecond": "rano", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pomeriggio", + "wordSecond": "popołudnie", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sera", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "notte", + "wordSecond": "noc", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "oggi", + "wordSecond": "dziś", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "domani", + "wordSecond": "jutro", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ieri", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sempre", + "wordSecond": "zawsze", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "spesso", + "wordSecond": "często", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "qualche volta", + "wordSecond": "czasami", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "raramente", + "wordSecond": "rzadko", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mai", + "wordSecond": "nigdy", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "presto", + "wordSecond": "wcześnie", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tardi", + "wordSecond": "późno", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "subito", + "wordSecond": "zaraz", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dopo", + "wordSecond": "potem", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "prima", + "wordSecond": "wcześniej", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "colazione", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pranzo", + "wordSecond": "obiad", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cena", + "wordSecond": "kolacja", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "spuntino", + "wordSecond": "przekąska", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "casa", + "wordSecond": "dom", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ufficio", + "wordSecond": "biuro", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "scuola", + "wordSecond": "szkoła", + "createdAt": "2026-02-19T14:52:29.965Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_it_zh_A2.json b/output/2026_02_19_daily_routines_it_zh_A2.json new file mode 100644 index 0000000..ac89f02 --- /dev/null +++ b/output/2026_02_19_daily_routines_it_zh_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:51:56.440Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "svegliarsi", + "wordSecond": "起床 (qǐ chuáng)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "alzarsi", + "wordSecond": "起来 (qǐ lái)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fare la doccia", + "wordSecond": "洗澡 (xǐ zǎo)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lavarsi", + "wordSecond": "洗 (xǐ)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "vestirsi", + "wordSecond": "穿衣服 (chuān yī fu)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fare colazione", + "wordSecond": "吃早饭 (chī zǎo fàn)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mangiare", + "wordSecond": "吃 (chī)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "bere", + "wordSecond": "喝 (hē)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lavare i denti", + "wordSecond": "刷牙 (shuā yá)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pettinarsi", + "wordSecond": "梳头 (shū tóu)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "andare al lavoro", + "wordSecond": "去上班 (qù shàng bān)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "andare a scuola", + "wordSecond": "去上学 (qù shàng xué)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lavorare", + "wordSecond": "工作 (gōng zuò)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "studiare", + "wordSecond": "学习 (xué xí)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "incontrare", + "wordSecond": "见面 (jiàn miàn)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "parlare", + "wordSecond": "说话 (shuō huà)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pranzare", + "wordSecond": "吃午饭 (chī wǔ fàn)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mangiare fuori", + "wordSecond": "在外面吃 (zài wài miàn chī)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fare una pausa", + "wordSecond": "休息 (xiū xi)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tornare a casa", + "wordSecond": "回家 (huí jiā)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cucinare", + "wordSecond": "做饭 (zuò fàn)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "preparare la cena", + "wordSecond": "准备晚饭 (zhǔn bèi wǎn fàn)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cenare", + "wordSecond": "吃晚饭 (chī wǎn fàn)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "guardare la TV", + "wordSecond": "看电视 (kàn diàn shì)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "leggere", + "wordSecond": "看书 (kàn shū)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ascoltare musica", + "wordSecond": "听音乐 (tīng yīn yuè)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "rilassarsi", + "wordSecond": "放松 (fàng sōng)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fare una passeggiata", + "wordSecond": "散步 (sàn bù)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "andare a letto", + "wordSecond": "上床睡觉 (shàng chuáng shuì jiào)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dormire", + "wordSecond": "睡觉 (shuì jiào)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mattina", + "wordSecond": "早上 (zǎo shang)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mattino", + "wordSecond": "上午 (shàng wǔ)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pomeriggio", + "wordSecond": "下午 (xià wǔ)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sera", + "wordSecond": "晚上 (wǎn shang)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "notte", + "wordSecond": "夜里 (yè lǐ)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mezzogiorno", + "wordSecond": "中午 (zhōng wǔ)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mezzanotte", + "wordSecond": "半夜 (bàn yè)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "oggi", + "wordSecond": "今天 (jīn tiān)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "domani", + "wordSecond": "明天 (míng tiān)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ieri", + "wordSecond": "昨天 (zuó tiān)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sempre", + "wordSecond": "总是 (zǒng shì)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "spesso", + "wordSecond": "经常 (jīng cháng)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "a volte", + "wordSecond": "有时候 (yǒu shí hou)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "raramente", + "wordSecond": "很少 (hěn shǎo)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mai", + "wordSecond": "从不 (cóng bù)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "presto", + "wordSecond": "早 (zǎo)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tardi", + "wordSecond": "晚 (wǎn)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "prima", + "wordSecond": "先 (xiān)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dopo", + "wordSecond": "后 (hòu)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "colazione", + "wordSecond": "早饭 (zǎo fàn)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pranzo", + "wordSecond": "午饭 (wǔ fàn)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cena", + "wordSecond": "晚饭 (wǎn fàn)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "snack", + "wordSecond": "小吃 (xiǎo chī)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "caffè", + "wordSecond": "咖啡 (kā fēi)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tè", + "wordSecond": "茶 (chá)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "acqua", + "wordSecond": "水 (shuǐ)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "autobus", + "wordSecond": "公共汽车 (gōng gòng qì chē)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "metro", + "wordSecond": "地铁 (dì tiě)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "bicicletta", + "wordSecond": "自行车 (zì xíng chē)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "a piedi", + "wordSecond": "走路 (zǒu lù)", + "createdAt": "2026-02-19T14:51:56.440Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_ja_ko_A2.json b/output/2026_02_19_daily_routines_ja_ko_A2.json new file mode 100644 index 0000000..2275407 --- /dev/null +++ b/output/2026_02_19_daily_routines_ja_ko_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:53:32.666Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "起きる (おきる, okiru)", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "目覚める (めざめる, mezameru)", + "wordSecond": "깨다 (kkaeda)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ベッドから出る (ベッドからでる, beddo kara deru)", + "wordSecond": "침대에서 나오다 (chimdaeseo naoda)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "顔を洗う (かおをあらう, kao o arau)", + "wordSecond": "세수하다 (sesuhada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "歯を磨く (はをみがく, ha o migaku)", + "wordSecond": "양치하다 (yangchihada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "シャワーを浴びる (シャワーをあびる, shawā o abiru)", + "wordSecond": "샤워하다 (syawohada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "服を着る (ふくをきる, fuku o kiru)", + "wordSecond": "옷을 입다 (oseul ipda)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "朝食を食べる (ちょうしょくをたべる, chōshoku o taberu)", + "wordSecond": "아침을 먹다 (achimeul meokda)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "コーヒーを飲む (コーヒーをのむ, kōhī o nomu)", + "wordSecond": "커피를 마시다 (keopireul masida)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "出かける (でかける, dekakeru)", + "wordSecond": "나가다 (nagada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "家を出る (いえをでる, ie o deru)", + "wordSecond": "집을 나가다 (jibeul nagada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "通勤する (つうきんする, tsūkin suru)", + "wordSecond": "출근하다 (chulgeunhada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "通学する (つうがくする, tsūgaku suru)", + "wordSecond": "등교하다 (deunggyohada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "働く (はたらく, hataraku)", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "勉強する (べんきょうする, benkyō suru)", + "wordSecond": "공부하다 (gongbuhada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "会う (あう, au)", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "友達に会う (ともだちにあう, tomodachi ni au)", + "wordSecond": "친구를 만나다 (chingureul mannada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "昼食を食べる (ちゅうしょくをたべる, chūshoku o taberu)", + "wordSecond": "점심을 먹다 (jeomsimeul meokda)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "休憩する (きゅうけいする, kyūkei suru)", + "wordSecond": "휴식하다 (hyusikada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "仕事を終える (しごとをおえる, shigoto o oeru)", + "wordSecond": "일을 끝내다 (ireul kkeunnaeda)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "学校が終わる (がっこうがおわる, gakkō ga owaru)", + "wordSecond": "학교가 끝나다 (hakgyoga kkeunnada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "帰る (かえる, kaeru)", + "wordSecond": "돌아가다 (doragada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "家に帰る (いえにかえる, ie ni kaeru)", + "wordSecond": "집에 돌아가다 (jibe doragada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "買い物する (かいものする, kaimono suru)", + "wordSecond": "쇼핑하다 (syopinghada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "料理する (りょうりする, ryōri suru)", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "夕食を食べる (ゆうしょくをたべる, yūshoku o taberu)", + "wordSecond": "저녁을 먹다 (jeonyeogeul meokda)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "テレビを見る (テレビをみる, terebi o miru)", + "wordSecond": "텔레비전을 보다 (tellebijeoneul boda)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "音楽を聴く (おんがくをきく, ongaku o kiku)", + "wordSecond": "음악을 듣다 (eumageul deutda)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "本を読む (ほんをよむ, hon o yomu)", + "wordSecond": "책을 읽다 (chaegeul ikda)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "リラックスする (リラックスする, rirakkusu suru)", + "wordSecond": "휴식을 취하다 (hyusigeul chwihada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "散歩する (さんぽする, sanpo suru)", + "wordSecond": "산책하다 (sanchaekada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "シャワーを浴びる (シャワーをあびる, shawā o abiru)", + "wordSecond": "샤워하다 (syawohada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "歯を磨く (はをみがく, ha o migaku)", + "wordSecond": "양치하다 (yangchihada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "寝る (ねる, neru)", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ベッドに入る (ベッドにはいる, beddo ni hairu)", + "wordSecond": "침대에 들어가다 (chimdaee deureogada)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "朝 (あさ, asa)", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "午前中 (ごぜんちゅう, gozenchū)", + "wordSecond": "오전 (ojeon)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "昼 (ひる, hiru)", + "wordSecond": "낮 (nat)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "午後 (ごご, gogo)", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "夕方 (ゆうがた, yūgata)", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "夜 (よる, yoru)", + "wordSecond": "밤 (bam)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "夜遅く (よるおそく, yoru osoku)", + "wordSecond": "늦은 밤 (neujeun bam)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "毎日 (まいにち, mainichi)", + "wordSecond": "매일 (maeil)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "毎朝 (まいあさ, maiasa)", + "wordSecond": "매일 아침 (maeil achim)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "毎晩 (まいばん, maiban)", + "wordSecond": "매일 밤 (maeil bam)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "いつも (itsumo)", + "wordSecond": "항상 (hangsang)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "よく (yoku)", + "wordSecond": "자주 (jaju)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "時々 (ときどき, tokidoki)", + "wordSecond": "가끔 (gakkeum)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "たまに (tamani)", + "wordSecond": "가끔 (gakkeum)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "めったに (mettani)", + "wordSecond": "거의 (geoui)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "決して (けっして, kesshite)", + "wordSecond": "절대 (jeoldae)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "朝食 (ちょうしょく, chōshoku)", + "wordSecond": "아침 식사 (achim siksa)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "昼食 (ちゅうしょく, chūshoku)", + "wordSecond": "점심 식사 (jeomsim siksa)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "夕食 (ゆうしょく, yūshoku)", + "wordSecond": "저녁 식사 (jeonyeok siksa)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "仕事 (しごと, shigoto)", + "wordSecond": "일 (il)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "学校 (がっこう, gakkō)", + "wordSecond": "학교 (hakgyo)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "家 (いえ, ie)", + "wordSecond": "집 (jip)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "オフィス (ofisu)", + "wordSecond": "사무실 (samusil)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "バス (basu)", + "wordSecond": "버스 (beoseu)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "電車 (でんしゃ, densha)", + "wordSecond": "기차 (gicha)", + "createdAt": "2026-02-19T14:53:32.666Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_ja_pl_A2.json b/output/2026_02_19_daily_routines_ja_pl_A2.json new file mode 100644 index 0000000..e1aad46 --- /dev/null +++ b/output/2026_02_19_daily_routines_ja_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:54:00.335Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "起きる (おきる, okiru)", + "wordSecond": "wstawać", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "朝食を食べる (ちょうしょくをたべる, chōshoku o taberu)", + "wordSecond": "jeść śniadanie", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "歯を磨く (はをみがく, ha o migaku)", + "wordSecond": "myć zęby", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "顔を洗う (かおをあらう, kao o arau)", + "wordSecond": "myć twarz", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "シャワーを浴びる (シャワーをあびる, shawā o abiru)", + "wordSecond": "brać prysznic", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "服を着る (ふくをきる, fuku o kiru)", + "wordSecond": "ubierać się", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "髪をとかす (かみをとかす, kami o tokasu)", + "wordSecond": "czesać włosy", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "朝 (あさ, asa)", + "wordSecond": "rano", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "午前中 (ごぜんちゅう, gozenchū)", + "wordSecond": "przed południem", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "仕事に行く (しごとにいく, shigoto ni iku)", + "wordSecond": "iść do pracy", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "学校に行く (がっこうにいく, gakkō ni iku)", + "wordSecond": "iść do szkoły", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "働く (はたらく, hataraku)", + "wordSecond": "pracować", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "勉強する (べんきょうする, benkyō suru)", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "会う (あう, au)", + "wordSecond": "spotykać się", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "昼食を食べる (ちゅうしょくをたべる, chūshoku o taberu)", + "wordSecond": "jeść obiad", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "昼休み (ひるやすみ, hiruyasumi)", + "wordSecond": "przerwa obiadowa", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "午後 (ごご, gogo)", + "wordSecond": "po południu", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "帰る (かえる, kaeru)", + "wordSecond": "wracać do domu", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "買い物する (かいものする, kaimono suru)", + "wordSecond": "robić zakupy", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "料理する (りょうりする, ryōri suru)", + "wordSecond": "gotować", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "夕食を食べる (ゆうしょくをたべる, yūshoku o taberu)", + "wordSecond": "jeść kolację", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "テレビを見る (テレビをみる, terebi o miru)", + "wordSecond": "oglądać telewizję", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "本を読む (ほんをよむ, hon o yomu)", + "wordSecond": "czytać książkę", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "音楽を聴く (おんがくをきく, ongaku o kiku)", + "wordSecond": "słuchać muzyki", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "リラックスする (リラックスする, rirakkusu suru)", + "wordSecond": "odpoczywać", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "寝る (ねる, neru)", + "wordSecond": "spać", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "夜 (よる, yoru)", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "夜中 (よなか, yonaka)", + "wordSecond": "w nocy", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "毎日 (まいにち, mainichi)", + "wordSecond": "codziennie", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "いつも (itsumo)", + "wordSecond": "zawsze", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "よく (yoku)", + "wordSecond": "często", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "時々 (ときどき, tokidoki)", + "wordSecond": "czasami", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "たまに (tamani)", + "wordSecond": "rzadko", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "決して~ない (けっして~ない, kesshite ~ nai)", + "wordSecond": "nigdy", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "朝ごはん (あさごはん, asagohan)", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "昼ごはん (ひるごはん, hirugohan)", + "wordSecond": "obiad", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "晩ごはん (ばんごはん, bangohan)", + "wordSecond": "kolacja", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "コーヒーを飲む (コーヒーをのむ, kōhī o nomu)", + "wordSecond": "pić kawę", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "お茶を飲む (おちゃをのむ, ocha o nomu)", + "wordSecond": "pić herbatę", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "水を飲む (みずをのむ, mizu o nomu)", + "wordSecond": "pić wodę", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "掃除する (そうじする, sōji suru)", + "wordSecond": "sprzątać", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "洗濯する (せんたくする, sentaku suru)", + "wordSecond": "prać", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "アイロンをかける (アイロンをかける, airon o kakeru)", + "wordSecond": "prasować", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "犬の散歩をする (いぬのさんぽをする, inu no sanpo o suru)", + "wordSecond": "spacerować z psem", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "運動する (うんどうする, undō suru)", + "wordSecond": "ćwiczyć", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "走る (はしる, hashiru)", + "wordSecond": "biegać", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "歩く (あるく, aruku)", + "wordSecond": "chodzić", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "電車に乗る (でんしゃにのる, densha ni noru)", + "wordSecond": "jeździć pociągiem", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "バスに乗る (バスにのる, basu ni noru)", + "wordSecond": "jeździć autobusem", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "自転車に乗る (じてんしゃにのる, jitensha ni noru)", + "wordSecond": "jeździć rowerem", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "車を運転する (くるまをうんてんする, kuruma o unten suru)", + "wordSecond": "prowadzić samochód", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "メールを送る (メールをおくる, mēru o okuru)", + "wordSecond": "wysyłać e-mail", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "電話をかける (でんわをかける, denwa o kakeru)", + "wordSecond": "dzwonić", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "友達と話す (ともだちとはなす, tomodachi to hanasu)", + "wordSecond": "rozmawiać z przyjaciółmi", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "家族と過ごす (かぞくとすごす, kazoku to sugosu)", + "wordSecond": "spędzać czas z rodziną", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "新聞を読む (しんぶんをよむ, shinbun o yomu)", + "wordSecond": "czytać gazetę", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "宿題をする (しゅくだいをする, shukudai o suru)", + "wordSecond": "robić zadanie domowe", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ゲームをする (ゲームをする, gēmu o suru)", + "wordSecond": "grać w gry", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "映画を見る (えいがをみる, eiga o miru)", + "wordSecond": "oglądać film", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "シャワーを浴びる (シャワーをあびる, shawā o abiru)", + "wordSecond": "brać prysznic", + "createdAt": "2026-02-19T14:54:00.335Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_ja_zh_A2.json b/output/2026_02_19_daily_routines_ja_zh_A2.json new file mode 100644 index 0000000..fa2f54c --- /dev/null +++ b/output/2026_02_19_daily_routines_ja_zh_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:53:00.862Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "起きる (おきる, okiru)", + "wordSecond": "起床 (qǐ chuáng)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "目覚める (めざめる, mezameru)", + "wordSecond": "醒来 (xǐng lái)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ベッドから出る (べっどからでる, beddo kara deru)", + "wordSecond": "起床 (qǐ chuáng)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "顔を洗う (かおをあらう, kao o arau)", + "wordSecond": "洗脸 (xǐ liǎn)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "歯を磨く (はをみがく, ha o migaku)", + "wordSecond": "刷牙 (shuā yá)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "シャワーを浴びる (しゃわーをあびる, shawā o abiru)", + "wordSecond": "洗澡 (xǐ zǎo)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "服を着る (ふくをきる, fuku o kiru)", + "wordSecond": "穿衣服 (chuān yī fu)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "朝食を食べる (ちょうしょくをたべる, chōshoku o taberu)", + "wordSecond": "吃早餐 (chī zǎo cān)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "朝ごはん (あさごはん, asagohan)", + "wordSecond": "早餐 (zǎo cān)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "コーヒーを飲む (こーひーをのむ, kōhī o nomu)", + "wordSecond": "喝咖啡 (hē kā fēi)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "出かける (でかける, dekakeru)", + "wordSecond": "出门 (chū mén)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "仕事に行く (しごとにいく, shigoto ni iku)", + "wordSecond": "去上班 (qù shàng bān)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "学校に行く (がっこうにいく, gakkō ni iku)", + "wordSecond": "去上学 (qù shàng xué)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "働く (はたらく, hataraku)", + "wordSecond": "工作 (gōng zuò)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "勉強する (べんきょうする, benkyō suru)", + "wordSecond": "学习 (xué xí)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "会議がある (かいぎがある, kaigi ga aru)", + "wordSecond": "有会议 (yǒu huì yì)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "友達に会う (ともだちにあう, tomodachi ni au)", + "wordSecond": "见朋友 (jiàn péng you)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "昼食を食べる (ちゅうしょくをたべる, chūshoku o taberu)", + "wordSecond": "吃午餐 (chī wǔ cān)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "昼ごはん (ひるごはん, hirugohan)", + "wordSecond": "午餐 (wǔ cān)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "休憩する (きゅうけいする, kyūkei suru)", + "wordSecond": "休息 (xiū xi)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "帰る (かえる, kaeru)", + "wordSecond": "回家 (huí jiā)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "買い物する (かいものする, kaimono suru)", + "wordSecond": "购物 (gòu wù)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "料理する (りょうりする, ryōri suru)", + "wordSecond": "做饭 (zuò fàn)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "夕食を食べる (ゆうしょくをたべる, yūshoku o taberu)", + "wordSecond": "吃晚餐 (chī wǎn cān)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "晩ごはん (ばんごはん, bangohan)", + "wordSecond": "晚餐 (wǎn cān)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "テレビを見る (てれびをみる, terebi o miru)", + "wordSecond": "看电视 (kàn diàn shì)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "音楽を聴く (おんがくをきく, ongaku o kiku)", + "wordSecond": "听音乐 (tīng yīn yuè)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "本を読む (ほんをよむ, hon o yomu)", + "wordSecond": "看书 (kàn shū)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "リラックスする (りらっくすする, rirakkusu suru)", + "wordSecond": "放松 (fàng sōng)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "寝る (ねる, neru)", + "wordSecond": "睡觉 (shuì jiào)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ベッドに入る (べっどにはいる, beddo ni hairu)", + "wordSecond": "上床睡觉 (shàng chuáng shuì jiào)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "朝 (あさ, asa)", + "wordSecond": "早上 (zǎo shang)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "午前 (ごぜん, gozen)", + "wordSecond": "上午 (shàng wǔ)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "昼 (ひる, hiru)", + "wordSecond": "中午 (zhōng wǔ)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "午後 (ごご, gogo)", + "wordSecond": "下午 (xià wǔ)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "夕方 (ゆうがた, yūgata)", + "wordSecond": "傍晚 (bàng wǎn)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "夜 (よる, yoru)", + "wordSecond": "晚上 (wǎn shang)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "夜中 (よなか, yonaka)", + "wordSecond": "半夜 (bàn yè)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "毎日 (まいにち, mainichi)", + "wordSecond": "每天 (měi tiān)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "毎朝 (まいあさ, maiasa)", + "wordSecond": "每天早上 (měi tiān zǎo shang)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "毎晩 (まいばん, maiban)", + "wordSecond": "每天晚上 (měi tiān wǎn shang)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "週末 (しゅうまつ, shūmatsu)", + "wordSecond": "周末 (zhōu mò)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "平日 (へいじつ, heijitsu)", + "wordSecond": "平日 (píng rì)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "いつも (itsumo)", + "wordSecond": "总是 (zǒng shì)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "よく (yoku)", + "wordSecond": "经常 (jīng cháng)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "時々 (ときどき, tokidoki)", + "wordSecond": "有时候 (yǒu shí hou)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "たまに (tamani)", + "wordSecond": "偶尔 (ǒu ěr)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "めったに (mettani)", + "wordSecond": "很少 (hěn shǎo)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "決して (けっして, kesshite)", + "wordSecond": "从不 (cóng bù)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "朝食を準備する (ちょうしょくをじゅんびする, chōshoku o junbi suru)", + "wordSecond": "准备早餐 (zhǔn bèi zǎo cān)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "新聞を読む (しんぶんをよむ, shinbun o yomu)", + "wordSecond": "看报纸 (kàn bào zhǐ)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "メールをチェックする (めーるをちぇっくする, mēru o chekku suru)", + "wordSecond": "检查邮件 (jiǎn chá yóu jiàn)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "電話をかける (でんわをかける, denwa o kakeru)", + "wordSecond": "打电话 (dǎ diàn huà)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "掃除する (そうじする, sōji suru)", + "wordSecond": "打扫 (dǎ sǎo)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "洗濯する (せんたくする, sentaku suru)", + "wordSecond": "洗衣服 (xǐ yī fu)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "散歩する (さんぽする, sanpo suru)", + "wordSecond": "散步 (sàn bù)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "運動する (うんどうする, undō suru)", + "wordSecond": "运动 (yùn dòng)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "シャワーを浴びる (しゃわーをあびる, shawā o abiru)", + "wordSecond": "冲澡 (chōng zǎo)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "歯を磨く (はをみがく, ha o migaku)", + "wordSecond": "刷牙 (shuā yá)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "顔を洗う (かおをあらう, kao o arau)", + "wordSecond": "洗脸 (xǐ liǎn)", + "createdAt": "2026-02-19T14:53:00.862Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_ko_pl_A2.json b/output/2026_02_19_daily_routines_ko_pl_A2.json new file mode 100644 index 0000000..79966c6 --- /dev/null +++ b/output/2026_02_19_daily_routines_ko_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:54:57.590Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "일어나다 (ireonada)", + "wordSecond": "wstawać", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "씻다 (ssitda)", + "wordSecond": "myć się", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "샤워하다 (syawohada)", + "wordSecond": "brać prysznic", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "옷을 입다 (oseul ipda)", + "wordSecond": "ubierać się", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "아침을 먹다 (achimeul meokda)", + "wordSecond": "jeść śniadanie", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "양치하다 (yangchihada)", + "wordSecond": "myć zęby", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "머리를 빗다 (meorireul bitda)", + "wordSecond": "czesać się", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "출근하다 (chulgeunhada)", + "wordSecond": "iść do pracy", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "등교하다 (deunggyohada)", + "wordSecond": "iść do szkoły", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "일하다 (ilhada)", + "wordSecond": "pracować", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "공부하다 (gongbuhada)", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "만나다 (mannada)", + "wordSecond": "spotykać", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "점심을 먹다 (jeomsimeul meokda)", + "wordSecond": "jeść obiad", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "휴식하다 (hyusikada)", + "wordSecond": "odpoczywać", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "커피를 마시다 (keopireul masida)", + "wordSecond": "pić kawę", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "책을 읽다 (chaegeul ikda)", + "wordSecond": "czytać książkę", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "운동하다 (undonghada)", + "wordSecond": "ćwiczyć", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "집에 가다 (jibe gada)", + "wordSecond": "iść do domu", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "저녁을 먹다 (jeonyeogeul meokda)", + "wordSecond": "jeść kolację", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "요리하다 (yorihada)", + "wordSecond": "gotować", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "설거지하다 (seolgeojihada)", + "wordSecond": "zmywać naczynia", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "TV를 보다 (TVreul boda)", + "wordSecond": "oglądać telewizję", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "음악을 듣다 (eumageul deutda)", + "wordSecond": "słuchać muzyki", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "잠자리에 들다 (jamjarie deulda)", + "wordSecond": "kłaść się spać", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "자다 (jada)", + "wordSecond": "spać", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "아침 (achim)", + "wordSecond": "rano", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "오전 (ojeon)", + "wordSecond": "przedpołudnie", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "점심 (jeomsim)", + "wordSecond": "południe", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "오후 (ohu)", + "wordSecond": "popołudnie", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "저녁 (jeonyeok)", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "밤 (bam)", + "wordSecond": "noc", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "오늘 (oneul)", + "wordSecond": "dzisiaj", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "내일 (naeil)", + "wordSecond": "jutro", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "어제 (eoje)", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "평일 (pyeongil)", + "wordSecond": "dzień powszedni", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "주말 (jumal)", + "wordSecond": "weekend", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "월요일 (woryoil)", + "wordSecond": "poniedziałek", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "금요일 (geumyoil)", + "wordSecond": "piątek", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "토요일 (toyoil)", + "wordSecond": "sobota", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "일요일 (iryoil)", + "wordSecond": "niedziela", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "항상 (hangsang)", + "wordSecond": "zawsze", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "자주 (jaju)", + "wordSecond": "często", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "가끔 (gakkeum)", + "wordSecond": "czasami", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "보통 (botong)", + "wordSecond": "zwykle", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "드물게 (deumulge)", + "wordSecond": "rzadko", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "절대 (jeoldae)", + "wordSecond": "nigdy", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "일찍 (iljjik)", + "wordSecond": "wcześnie", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "늦게 (neutge)", + "wordSecond": "późno", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "빨리 (ppalli)", + "wordSecond": "szybko", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "천천히 (cheoncheonhi)", + "wordSecond": "powoli", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "먼저 (meonjeo)", + "wordSecond": "najpierw", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "그 다음 (geu daeum)", + "wordSecond": "potem", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "마지막으로 (majimageuro)", + "wordSecond": "na końcu", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "깨우다 (kkaeuda)", + "wordSecond": "budzić", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "준비하다 (junbihada)", + "wordSecond": "przygotowywać", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "청소하다 (cheongsohada)", + "wordSecond": "sprzątać", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "씻기다 (ssitgida)", + "wordSecond": "kąpać", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "걷다 (geotda)", + "wordSecond": "chodzić", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "타다 (tada)", + "wordSecond": "jechać", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "끝내다 (kkeutnaeda)", + "wordSecond": "kończyć", + "createdAt": "2026-02-19T14:54:57.590Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_pt_de_A2.json b/output/2026_02_19_daily_routines_pt_de_A2.json new file mode 100644 index 0000000..e8444d7 --- /dev/null +++ b/output/2026_02_19_daily_routines_pt_de_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:46:20.344Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "acordar", + "wordSecond": "aufwachen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "levantar", + "wordSecond": "aufstehen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tomar banho", + "wordSecond": "duschen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lavar o rosto", + "wordSecond": "sich waschen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escovar os dentes", + "wordSecond": "Zähne putzen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pentear o cabelo", + "wordSecond": "Haare kämmen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vestir-se", + "wordSecond": "sich anziehen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tomar café da manhã", + "wordSecond": "frühstücken", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "comer", + "wordSecond": "essen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "beber", + "wordSecond": "trinken", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "preparar", + "wordSecond": "vorbereiten", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sair de casa", + "wordSecond": "das Haus verlassen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ir ao trabalho", + "wordSecond": "zur Arbeit gehen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ir à escola", + "wordSecond": "zur Schule gehen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "estudar", + "wordSecond": "lernen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "trabalhar", + "wordSecond": "arbeiten", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escrever", + "wordSecond": "schreiben", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ler", + "wordSecond": "lesen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "encontrar", + "wordSecond": "treffen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "conversar", + "wordSecond": "sprechen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "almoçar", + "wordSecond": "zu Mittag essen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fazer uma pausa", + "wordSecond": "eine Pause machen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "voltar para casa", + "wordSecond": "nach Hause kommen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cozinhar", + "wordSecond": "kochen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "preparar o jantar", + "wordSecond": "Abendessen vorbereiten", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "jantar", + "wordSecond": "zu Abend essen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lavar a louça", + "wordSecond": "abspülen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "assistir TV", + "wordSecond": "fernsehen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "relaxar", + "wordSecond": "sich entspannen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ouvir música", + "wordSecond": "Musik hören", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ler um livro", + "wordSecond": "ein Buch lesen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tomar banho", + "wordSecond": "baden", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "deitar-se", + "wordSecond": "sich hinlegen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dormir", + "wordSecond": "schlafen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sonhar", + "wordSecond": "träumen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "acordar cedo", + "wordSecond": "früh aufstehen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "acordar tarde", + "wordSecond": "spät aufstehen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "de manhã", + "wordSecond": "morgens", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "à tarde", + "wordSecond": "nachmittags", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "à noite", + "wordSecond": "abends", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "de madrugada", + "wordSecond": "nachts", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "hoje", + "wordSecond": "heute", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "amanhã", + "wordSecond": "morgen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ontem", + "wordSecond": "gestern", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sempre", + "wordSecond": "immer", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "frequentemente", + "wordSecond": "oft", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "às vezes", + "wordSecond": "manchmal", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "raramente", + "wordSecond": "selten", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nunca", + "wordSecond": "nie", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "todos os dias", + "wordSecond": "jeden Tag", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "durante a semana", + "wordSecond": "unter der Woche", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "no fim de semana", + "wordSecond": "am Wochenende", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "café da manhã", + "wordSecond": "Frühstück", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "almoço", + "wordSecond": "Mittagessen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "jantar", + "wordSecond": "Abendessen", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lanche", + "wordSecond": "Snack", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "água", + "wordSecond": "Wasser", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "café", + "wordSecond": "Kaffee", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chá", + "wordSecond": "Tee", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "roupa", + "wordSecond": "Kleidung", + "createdAt": "2026-02-19T14:46:20.344Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_pt_fr_A2.json b/output/2026_02_19_daily_routines_pt_fr_A2.json new file mode 100644 index 0000000..b577456 --- /dev/null +++ b/output/2026_02_19_daily_routines_pt_fr_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:46:33.889Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "acordar", + "wordSecond": "se réveiller", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "levantar", + "wordSecond": "se lever", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tomar banho", + "wordSecond": "se doucher", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lavar o rosto", + "wordSecond": "se laver le visage", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "escovar os dentes", + "wordSecond": "se brosser les dents", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pentear o cabelo", + "wordSecond": "se peigner les cheveux", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vestir", + "wordSecond": "s'habiller", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tomar café da manhã", + "wordSecond": "prendre le petit déjeuner", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "comer", + "wordSecond": "manger", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "beber", + "wordSecond": "boire", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ir para o trabalho", + "wordSecond": "aller au travail", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ir para a escola", + "wordSecond": "aller à l'école", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estudar", + "wordSecond": "étudier", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "trabalhar", + "wordSecond": "travailler", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ler", + "wordSecond": "lire", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "escrever", + "wordSecond": "écrire", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "encontrar", + "wordSecond": "rencontrer", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "falar", + "wordSecond": "parler", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ouvir", + "wordSecond": "écouter", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "almoçar", + "wordSecond": "déjeuner", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "voltar para casa", + "wordSecond": "rentrer à la maison", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "descansar", + "wordSecond": "se reposer", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "assistir TV", + "wordSecond": "regarder la télévision", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cozinhar", + "wordSecond": "cuisiner", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "preparar o jantar", + "wordSecond": "préparer le dîner", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "jantar", + "wordSecond": "dîner", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lavar a louça", + "wordSecond": "faire la vaisselle", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "limpar", + "wordSecond": "nettoyer", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "arrumar", + "wordSecond": "ranger", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lavar roupa", + "wordSecond": "faire la lessive", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "passear", + "wordSecond": "se promener", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "exercitar", + "wordSecond": "faire de l'exercice", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "correr", + "wordSecond": "courir", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "andar", + "wordSecond": "marcher", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "brincar", + "wordSecond": "jouer", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "relaxar", + "wordSecond": "se détendre", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tomar chá", + "wordSecond": "prendre le thé", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tomar café", + "wordSecond": "prendre un café", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dormir", + "wordSecond": "dormir", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "deitar", + "wordSecond": "se coucher", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "de manhã", + "wordSecond": "le matin", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "à tarde", + "wordSecond": "l'après-midi", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "à noite", + "wordSecond": "le soir", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "de madrugada", + "wordSecond": "tôt le matin", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "meio-dia", + "wordSecond": "midi", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "meia-noite", + "wordSecond": "minuit", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "hoje", + "wordSecond": "aujourd'hui", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "amanhã", + "wordSecond": "demain", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ontem", + "wordSecond": "hier", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sempre", + "wordSecond": "toujours", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "frequentemente", + "wordSecond": "souvent", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "às vezes", + "wordSecond": "parfois", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "raramente", + "wordSecond": "rarement", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "nunca", + "wordSecond": "jamais", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "geralmente", + "wordSecond": "généralement", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "normalmente", + "wordSecond": "normalement", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "às oito horas", + "wordSecond": "à huit heures", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "às sete horas", + "wordSecond": "à sept heures", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "às dez horas", + "wordSecond": "à dix heures", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "às seis horas", + "wordSecond": "à six heures", + "createdAt": "2026-02-19T14:46:33.889Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_pt_it_A2.json b/output/2026_02_19_daily_routines_pt_it_A2.json new file mode 100644 index 0000000..173a6a3 --- /dev/null +++ b/output/2026_02_19_daily_routines_pt_it_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:46:47.180Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "acordar", + "wordSecond": "svegliarsi", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "levantar", + "wordSecond": "alzarsi", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tomar banho", + "wordSecond": "fare la doccia", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lavar o rosto", + "wordSecond": "lavarsi la faccia", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "escovar os dentes", + "wordSecond": "lavarsi i denti", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pentear o cabelo", + "wordSecond": "pettinarsi", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vestir", + "wordSecond": "vestirsi", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tomar café da manhã", + "wordSecond": "fare colazione", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "comer", + "wordSecond": "mangiare", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "beber", + "wordSecond": "bere", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ir ao trabalho", + "wordSecond": "andare al lavoro", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ir à escola", + "wordSecond": "andare a scuola", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estudar", + "wordSecond": "studiare", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "trabalhar", + "wordSecond": "lavorare", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "encontrar", + "wordSecond": "incontrare", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "almoçar", + "wordSecond": "pranzare", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "voltar para casa", + "wordSecond": "tornare a casa", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cozinhar", + "wordSecond": "cucinare", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "jantar", + "wordSecond": "cenare", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lavar a louça", + "wordSecond": "lavare i piatti", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "assistir TV", + "wordSecond": "guardare la TV", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ler", + "wordSecond": "leggere", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ouvir música", + "wordSecond": "ascoltare la musica", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "relaxar", + "wordSecond": "rilassarsi", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dormir", + "wordSecond": "dormire", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "de manhã", + "wordSecond": "di mattina", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ao meio-dia", + "wordSecond": "a mezzogiorno", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "à tarde", + "wordSecond": "di pomeriggio", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "à noite", + "wordSecond": "di sera", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "de madrugada", + "wordSecond": "di notte", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sempre", + "wordSecond": "sempre", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "frequentemente", + "wordSecond": "spesso", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "às vezes", + "wordSecond": "a volte", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "raramente", + "wordSecond": "raramente", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nunca", + "wordSecond": "mai", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "café da manhã", + "wordSecond": "colazione", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "almoço", + "wordSecond": "pranzo", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "jantar", + "wordSecond": "cena", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lanche", + "wordSecond": "spuntino", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "água", + "wordSecond": "acqua", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "café", + "wordSecond": "caffè", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chá", + "wordSecond": "tè", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pão", + "wordSecond": "pane", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ovo", + "wordSecond": "uovo", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fruta", + "wordSecond": "frutta", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "roupa", + "wordSecond": "vestiti", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sapão", + "wordSecond": "sapone", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "escova de dentes", + "wordSecond": "spazzolino", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pasta de dentes", + "wordSecond": "dentifricio", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "toalha", + "wordSecond": "asciugamano", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ônibus", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "carro", + "wordSecond": "macchina", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bicicleta", + "wordSecond": "bicicletta", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "caminhar", + "wordSecond": "camminare", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "correr", + "wordSecond": "correre", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "exercitar", + "wordSecond": "fare esercizio", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "telefonar", + "wordSecond": "telefonare", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mensagem", + "wordSecond": "messaggio", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "computador", + "wordSecond": "computer", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "livro", + "wordSecond": "libro", + "createdAt": "2026-02-19T14:46:47.180Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_pt_ja_A2.json b/output/2026_02_19_daily_routines_pt_ja_A2.json new file mode 100644 index 0000000..42978a3 --- /dev/null +++ b/output/2026_02_19_daily_routines_pt_ja_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:47:10.503Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "acordar", + "wordSecond": "起きる (おきる, okiru)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "levantar", + "wordSecond": "起きる (おきる, okiru)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tomar banho", + "wordSecond": "シャワーを浴びる (しゃわーをあびる, shawā o abiru)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "vestir", + "wordSecond": "着る (きる, kiru)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tomar café da manhã", + "wordSecond": "朝ごはんを食べる (あさごはんをたべる, asagohan o taberu)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "escovar os dentes", + "wordSecond": "歯を磨く (はをみがく, ha o migaku)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pentear", + "wordSecond": "髪をとかす (かみをとかす, kami o tokasu)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "lavar o rosto", + "wordSecond": "顔を洗う (かおをあらう, kao o arau)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ir trabalhar", + "wordSecond": "仕事に行く (しごとにいく, shigoto ni iku)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ir para a escola", + "wordSecond": "学校に行く (がっこうにいく, gakkō ni iku)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "estudar", + "wordSecond": "勉強する (べんきょうする, benkyō suru)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "trabalhar", + "wordSecond": "働く (はたらく, hataraku)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "encontrar", + "wordSecond": "会う (あう, au)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "almoçar", + "wordSecond": "昼ごはんを食べる (ひるごはんをたべる, hirugohan o taberu)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "voltar para casa", + "wordSecond": "家に帰る (いえにかえる, ie ni kaeru)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cozinhar", + "wordSecond": "料理する (りょうりする, ryōri suru)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "jantar", + "wordSecond": "晩ごはんを食べる (ばんごはんをたべる, bangohan o taberu)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "assistir TV", + "wordSecond": "テレビを見る (てれびをみる, terebi o miru)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ler", + "wordSecond": "読む (よむ, yomu)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "relaxar", + "wordSecond": "リラックスする (りらっくすする, rirakkusu suru)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dormir", + "wordSecond": "寝る (ねる, neru)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "deitar", + "wordSecond": "寝る (ねる, neru)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "manhã", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tarde", + "wordSecond": "昼 (ひる, hiru)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "noite", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "meia-noite", + "wordSecond": "夜中 (よなか, yonaka)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "meio-dia", + "wordSecond": "正午 (しょうご, shōgo)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "amanhã", + "wordSecond": "明日 (あした, ashita)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "hoje", + "wordSecond": "今日 (きょう, kyō)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ontem", + "wordSecond": "昨日 (きのう, kinō)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sempre", + "wordSecond": "いつも (itsumo)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "frequentemente", + "wordSecond": "よく (yoku)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "às vezes", + "wordSecond": "時々 (ときどき, tokidoki)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "nunca", + "wordSecond": "決して~ない (けっして~ない, kesshite~nai)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "raramente", + "wordSecond": "めったに~ない (mettani~nai)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "café", + "wordSecond": "コーヒー (こーひー, kōhī)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "chá", + "wordSecond": "お茶 (おちゃ, ocha)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pão", + "wordSecond": "パン (pan)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ovo", + "wordSecond": "卵 (たまご, tamago)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "leite", + "wordSecond": "牛乳 (ぎゅうにゅう, gyūnyū)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "fruta", + "wordSecond": "果物 (くだもの, kudamono)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cereal", + "wordSecond": "シリアル (しりある, shiriaru)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "almoço", + "wordSecond": "昼ごはん (ひるごはん, hirugohan)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "jantar", + "wordSecond": "晩ごはん (ばんごはん, bangohan)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "lanche", + "wordSecond": "おやつ (oyatsu)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "água", + "wordSecond": "水 (みず, mizu)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "suco", + "wordSecond": "ジュース (じゅーす, jūsu)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "refeição", + "wordSecond": "食事 (しょくじ, shokuji)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "café da manhã", + "wordSecond": "朝ごはん (あさごはん, asagohan)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "escova de dentes", + "wordSecond": "歯ブラシ (はぶらし, haburashi)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pasta de dente", + "wordSecond": "歯磨き粉 (はみがきこ, hamigakiko)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sabonete", + "wordSecond": "石鹸 (せっけん, sekken)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "xampu", + "wordSecond": "シャンプー (しゃんぷー, shanpū)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "toalha", + "wordSecond": "タオル (たおる, taoru)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "roupa", + "wordSecond": "服 (ふく, fuku)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sapato", + "wordSecond": "靴 (くつ, kutsu)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "meia", + "wordSecond": "靴下 (くつした, kutsushita)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cama", + "wordSecond": "ベッド (beddo)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "travesseiro", + "wordSecond": "枕 (まくら, makura)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cobertor", + "wordSecond": "毛布 (もうふ, mōfu)", + "createdAt": "2026-02-19T14:47:10.503Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_pt_ko_A2.json b/output/2026_02_19_daily_routines_pt_ko_A2.json new file mode 100644 index 0000000..0c31f0c --- /dev/null +++ b/output/2026_02_19_daily_routines_pt_ko_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:47:47.132Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "acordar", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "levantar", + "wordSecond": "일어서다 (ireoseoda)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tomar banho", + "wordSecond": "샤워하다 (syawohada)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lavar o rosto", + "wordSecond": "세수하다 (sesuhada)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "escovar os dentes", + "wordSecond": "양치하다 (yangchihada)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "vestir-se", + "wordSecond": "입다 (ipda)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pentear", + "wordSecond": "빗다 (bitda)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tomar café da manhã", + "wordSecond": "아침을 먹다 (achimeul meokda)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "beber café", + "wordSecond": "커피를 마시다 (keopireul masida)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ir ao trabalho", + "wordSecond": "출근하다 (chulgeunhada)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ir à escola", + "wordSecond": "등교하다 (deunggyohada)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "estudar", + "wordSecond": "공부하다 (gongbuhada)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "trabalhar", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "encontrar", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "almoçar", + "wordSecond": "점심을 먹다 (jeomsimeul meokda)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "voltar para casa", + "wordSecond": "집에 돌아가다 (jibe doragada)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cozinhar", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "jantar", + "wordSecond": "저녁을 먹다 (jeonyeogeul meokda)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lavar a louça", + "wordSecond": "설거지하다 (seolgeojihada)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "assistir TV", + "wordSecond": "TV를 보다 (TVreul boda)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ler", + "wordSecond": "읽다 (ikda)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ouvir música", + "wordSecond": "음악을 듣다 (eumageul deutda)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "relaxar", + "wordSecond": "쉬다 (swida)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dormir", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "deitar", + "wordSecond": "눕다 (nupda)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "manhã", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tarde", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "noite", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "meia-noite", + "wordSecond": "자정 (jajeong)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "madrugada", + "wordSecond": "새벽 (saebyeok)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "hora", + "wordSecond": "시간 (sigan)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "minuto", + "wordSecond": "분 (bun)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "segundo", + "wordSecond": "초 (cho)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "hoje", + "wordSecond": "오늘 (oneul)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ontem", + "wordSecond": "어제 (eoje)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "amanhã", + "wordSecond": "내일 (naeil)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "agora", + "wordSecond": "지금 (jigeum)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "depois", + "wordSecond": "나중에 (najunge)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "antes", + "wordSecond": "전에 (jeone)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sempre", + "wordSecond": "항상 (hangsang)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "frequentemente", + "wordSecond": "자주 (jaju)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "às vezes", + "wordSecond": "가끔 (gakkeum)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "nunca", + "wordSecond": "절대 (jeoldae)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "raramente", + "wordSecond": "드물게 (deumulge)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "geralmente", + "wordSecond": "보통 (botong)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "café da manhã", + "wordSecond": "아침 식사 (achim siksa)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "almoço", + "wordSecond": "점심 (jeomsim)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "jantar", + "wordSecond": "저녁 식사 (jeonyeok siksa)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lanche", + "wordSecond": "간식 (gansik)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "água", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "chá", + "wordSecond": "차 (cha)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "suco", + "wordSecond": "주스 (juseu)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pão", + "wordSecond": "빵 (ppang)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ovo", + "wordSecond": "계란 (gyeran)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "fruta", + "wordSecond": "과일 (gwail)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "verdura", + "wordSecond": "야채 (yachae)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "carne", + "wordSecond": "고기 (gogi)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "peixe", + "wordSecond": "생선 (saengseon)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "arroz", + "wordSecond": "밥 (bap)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "feijão", + "wordSecond": "콩 (kong)", + "createdAt": "2026-02-19T14:47:47.132Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_pt_pl_A2.json b/output/2026_02_19_daily_routines_pt_pl_A2.json new file mode 100644 index 0000000..f465e2a --- /dev/null +++ b/output/2026_02_19_daily_routines_pt_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:48:02.416Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "acordar", + "wordSecond": "budzić się", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "levantar", + "wordSecond": "wstawać", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tomar banho", + "wordSecond": "brać prysznic", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "lavar o rosto", + "wordSecond": "myć twarz", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "escovar os dentes", + "wordSecond": "myć zęby", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pentear o cabelo", + "wordSecond": "czesać włosy", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "vestir-se", + "wordSecond": "ubierać się", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tomar café da manhã", + "wordSecond": "jeść śniadanie", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "beber café", + "wordSecond": "pić kawę", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sair de casa", + "wordSecond": "wychodzić z domu", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ir para o trabalho", + "wordSecond": "iść do pracy", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ir para a escola", + "wordSecond": "iść do szkoły", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "trabalhar", + "wordSecond": "pracować", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "estudar", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ler", + "wordSecond": "czytać", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "escrever", + "wordSecond": "pisać", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "encontrar amigos", + "wordSecond": "spotykać przyjaciół", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "almoçar", + "wordSecond": "jeść obiad", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "voltar para casa", + "wordSecond": "wracać do domu", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "descansar", + "wordSecond": "odpoczywać", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "assistir TV", + "wordSecond": "oglądać telewizję", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ouvir música", + "wordSecond": "słuchać muzyki", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cozinhar", + "wordSecond": "gotować", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "preparar o jantar", + "wordSecond": "przygotowywać kolację", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "jantar", + "wordSecond": "jeść kolację", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "lavar a louça", + "wordSecond": "myć naczynia", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "arrumar a casa", + "wordSecond": "sprzątać dom", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tomar banho à noite", + "wordSecond": "brać prysznic wieczorem", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "colocar o pijama", + "wordSecond": "zakładać piżamę", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "deitar", + "wordSecond": "kłaść się", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dormir", + "wordSecond": "spać", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sonhar", + "wordSecond": "śnić", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "acordar cedo", + "wordSecond": "budzić się wcześnie", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "acordar tarde", + "wordSecond": "budzić się późno", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "de manhã", + "wordSecond": "rano", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "à tarde", + "wordSecond": "po południu", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "à noite", + "wordSecond": "wieczorem", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "de madrugada", + "wordSecond": "nad ranem", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "hoje", + "wordSecond": "dzisiaj", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "amanhã", + "wordSecond": "jutro", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ontem", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sempre", + "wordSecond": "zawsze", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "frequentemente", + "wordSecond": "często", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "às vezes", + "wordSecond": "czasami", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "raramente", + "wordSecond": "rzadko", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "nunca", + "wordSecond": "nigdy", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "todos os dias", + "wordSecond": "codziennie", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "de segunda a sexta", + "wordSecond": "od poniedziałku do piątku", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "no fim de semana", + "wordSecond": "w weekend", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "às sete horas", + "wordSecond": "o siódmej", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ao meio-dia", + "wordSecond": "w południe", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "à meia-noite", + "wordSecond": "o północy", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "fazer exercícios", + "wordSecond": "ćwiczyć", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "andar de ônibus", + "wordSecond": "jeździć autobusem", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "andar de carro", + "wordSecond": "jeździć samochodem", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "andar a pé", + "wordSecond": "chodzić pieszo", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "comprar pão", + "wordSecond": "kupować chleb", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "fazer compras", + "wordSecond": "robić zakupy", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "lavar roupa", + "wordSecond": "prać ubrania", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "passar roupa", + "wordSecond": "prasować ubrania", + "createdAt": "2026-02-19T14:48:02.416Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_pt_zh_A2.json b/output/2026_02_19_daily_routines_pt_zh_A2.json new file mode 100644 index 0000000..78f4bbb --- /dev/null +++ b/output/2026_02_19_daily_routines_pt_zh_A2.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:47:28.651Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "acordar", + "wordSecond": "起床 (qǐ chuáng)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "levantar", + "wordSecond": "起来 (qǐ lái)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tomar banho", + "wordSecond": "洗澡 (xǐ zǎo)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "vestir", + "wordSecond": "穿衣服 (chuān yī fu)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tomar café da manhã", + "wordSecond": "吃早饭 (chī zǎo fàn)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "escovar os dentes", + "wordSecond": "刷牙 (shuā yá)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pentear", + "wordSecond": "梳头 (shū tóu)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "lavar o rosto", + "wordSecond": "洗脸 (xǐ liǎn)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fazer a cama", + "wordSecond": "铺床 (pū chuáng)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ir trabalhar", + "wordSecond": "去工作 (qù gōng zuò)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ir para a escola", + "wordSecond": "去学校 (qù xué xiào)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "estudar", + "wordSecond": "学习 (xué xí)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "trabalhar", + "wordSecond": "工作 (gōng zuò)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "encontrar", + "wordSecond": "见面 (jiàn miàn)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "almoçar", + "wordSecond": "吃午饭 (chī wǔ fàn)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "voltar para casa", + "wordSecond": "回家 (huí jiā)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cozinhar", + "wordSecond": "做饭 (zuò fàn)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "jantar", + "wordSecond": "吃晚饭 (chī wǎn fàn)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "assistir TV", + "wordSecond": "看电视 (kàn diàn shì)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ler", + "wordSecond": "看书 (kàn shū)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ouvir música", + "wordSecond": "听音乐 (tīng yīn yuè)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "relaxar", + "wordSecond": "休息 (xiū xi)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dormir", + "wordSecond": "睡觉 (shuì jiào)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "deitar", + "wordSecond": "躺下 (tǎng xià)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "manhã", + "wordSecond": "早上 (zǎo shang)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tarde", + "wordSecond": "下午 (xià wǔ)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "noite", + "wordSecond": "晚上 (wǎn shang)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "meia-noite", + "wordSecond": "半夜 (bàn yè)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "meio-dia", + "wordSecond": "中午 (zhōng wǔ)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "amanhecer", + "wordSecond": "黎明 (lí míng)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pôr do sol", + "wordSecond": "日落 (rì luò)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "hora", + "wordSecond": "小时 (xiǎo shí)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "minuto", + "wordSecond": "分钟 (fēn zhōng)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "segundo", + "wordSecond": "秒 (miǎo)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sempre", + "wordSecond": "总是 (zǒng shì)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "frequentemente", + "wordSecond": "经常 (jīng cháng)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "às vezes", + "wordSecond": "有时候 (yǒu shí hou)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "nunca", + "wordSecond": "从不 (cóng bù)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "raramente", + "wordSecond": "很少 (hěn shǎo)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "geralmente", + "wordSecond": "通常 (tōng cháng)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "café", + "wordSecond": "咖啡 (kā fēi)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "chá", + "wordSecond": "茶 (chá)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pão", + "wordSecond": "面包 (miàn bāo)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ovo", + "wordSecond": "鸡蛋 (jī dàn)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "leite", + "wordSecond": "牛奶 (niú nǎi)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "arroz", + "wordSecond": "米饭 (mǐ fàn)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "carne", + "wordSecond": "肉 (ròu)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "legumes", + "wordSecond": "蔬菜 (shū cài)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fruta", + "wordSecond": "水果 (shuǐ guǒ)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "água", + "wordSecond": "水 (shuǐ)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ônibus", + "wordSecond": "公共汽车 (gōng gòng qì chē)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "metrô", + "wordSecond": "地铁 (dì tiě)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "carro", + "wordSecond": "汽车 (qì chē)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "bicicleta", + "wordSecond": "自行车 (zì xíng chē)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "andar", + "wordSecond": "走路 (zǒu lù)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "correr", + "wordSecond": "跑步 (pǎo bù)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "exercitar", + "wordSecond": "锻炼 (duàn liàn)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "telefonar", + "wordSecond": "打电话 (dǎ diàn huà)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "mensagem", + "wordSecond": "发短信 (fā duǎn xìn)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "computador", + "wordSecond": "电脑 (diàn nǎo)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "celular", + "wordSecond": "手机 (shǒu jī)", + "createdAt": "2026-02-19T14:47:28.651Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_zh_ko_A2.json b/output/2026_02_19_daily_routines_zh_ko_A2.json new file mode 100644 index 0000000..566cbd4 --- /dev/null +++ b/output/2026_02_19_daily_routines_zh_ko_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:54:22.073Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "起床 (qi chuang)", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "醒来 (xing lai)", + "wordSecond": "깨다 (kkaeda)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "刷牙 (shua ya)", + "wordSecond": "양치하다 (yangchihada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "洗脸 (xi lian)", + "wordSecond": "세수하다 (sesuhada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "洗澡 (xi zao)", + "wordSecond": "목욕하다 (mogyokada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "淋浴 (lin yu)", + "wordSecond": "샤워하다 (syawohada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "穿衣服 (chuan yi fu)", + "wordSecond": "옷을 입다 (oseul ipda)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "吃早饭 (chi zao fan)", + "wordSecond": "아침을 먹다 (achimeul meokda)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "喝咖啡 (he ka fei)", + "wordSecond": "커피를 마시다 (keopireul masida)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "去上班 (qu shang ban)", + "wordSecond": "출근하다 (chulgeunhada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "去上学 (qu shang xue)", + "wordSecond": "등교하다 (deunggyohada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "工作 (gong zuo)", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "学习 (xue xi)", + "wordSecond": "공부하다 (gongbuhada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "开会 (kai hui)", + "wordSecond": "회의하다 (hoeui hada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "见面 (jian mian)", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "吃午饭 (chi wu fan)", + "wordSecond": "점심을 먹다 (jeomsimeul meokda)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "休息 (xiu xi)", + "wordSecond": "휴식하다 (hyusikada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "回家 (hui jia)", + "wordSecond": "집에 가다 (jibe gada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "做饭 (zuo fan)", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "做晚饭 (zuo wan fan)", + "wordSecond": "저녁을 만들다 (jeonyeogeul mandeulda)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "吃晚饭 (chi wan fan)", + "wordSecond": "저녁을 먹다 (jeonyeogeul meokda)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "看电视 (kan dian shi)", + "wordSecond": "텔레비전을 보다 (tellebijeoneul boda)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "听音乐 (ting yin yue)", + "wordSecond": "음악을 듣다 (eumageul deutda)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "读书 (du shu)", + "wordSecond": "책을 읽다 (chaegeul ikda)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "放松 (fang song)", + "wordSecond": "휴식을 취하다 (hyusigeul chwihada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "睡觉 (shui jiao)", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "早上 (zao shang)", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "上午 (shang wu)", + "wordSecond": "오전 (ojeon)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "中午 (zhong wu)", + "wordSecond": "점심 (jeomsim)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "下午 (xia wu)", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "晚上 (wan shang)", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "夜晚 (ye wan)", + "wordSecond": "밤 (bam)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "现在 (xian zai)", + "wordSecond": "지금 (jigeum)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "今天 (jin tian)", + "wordSecond": "오늘 (oneul)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "明天 (ming tian)", + "wordSecond": "내일 (naeil)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "昨天 (zuo tian)", + "wordSecond": "어제 (eoje)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "总是 (zong shi)", + "wordSecond": "항상 (hangsang)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "经常 (jing chang)", + "wordSecond": "자주 (jaju)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "常常 (chang chang)", + "wordSecond": "흔히 (heunhi)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "通常 (tong chang)", + "wordSecond": "보통 (botong)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "有时 (you shi)", + "wordSecond": "가끔 (gakkeum)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "偶尔 (ou er)", + "wordSecond": "때때로 (ttaettaero)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "很少 (hen shao)", + "wordSecond": "거의 안 (geoui an)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "从不 (cong bu)", + "wordSecond": "절대 안 (jeoldae an)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "早餐 (zao can)", + "wordSecond": "아침 식사 (achim siksa)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "午餐 (wu can)", + "wordSecond": "점심 식사 (jeomsim siksa)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "晚餐 (wan can)", + "wordSecond": "저녁 식사 (jeonyeok siksa)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "闹钟 (nao zhong)", + "wordSecond": "알람 시계 (allam sigye)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "床 (chuang)", + "wordSecond": "침대 (chimdae)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "牙刷 (ya shua)", + "wordSecond": "칫솔 (chitsol)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "牙膏 (ya gao)", + "wordSecond": "치약 (chiyak)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "毛巾 (mao jin)", + "wordSecond": "수건 (sugeon)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "衣服 (yi fu)", + "wordSecond": "옷 (ot)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "鞋子 (xie zi)", + "wordSecond": "신발 (sinbal)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "包 (bao)", + "wordSecond": "가방 (gabang)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "公交车 (gong jiao che)", + "wordSecond": "버스 (beoseu)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "地铁 (di tie)", + "wordSecond": "지하철 (jihacheol)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "办公室 (ban gong shi)", + "wordSecond": "사무실 (samusil)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "学校 (xue xiao)", + "wordSecond": "학교 (hakgyo)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "家 (jia)", + "wordSecond": "집 (jip)", + "createdAt": "2026-02-19T14:54:22.073Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_daily_routines_zh_pl_A2.json b/output/2026_02_19_daily_routines_zh_pl_A2.json new file mode 100644 index 0000000..fa8dbf6 --- /dev/null +++ b/output/2026_02_19_daily_routines_zh_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:54:38.584Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Daily Routines" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Daily Routines" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "起床 (qi chuang)", + "wordSecond": "wstawać", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "醒来 (xing lai)", + "wordSecond": "budzić się", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "穿衣服 (chuan yi fu)", + "wordSecond": "ubierać się", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "刷牙 (shua ya)", + "wordSecond": "myć zęby", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "洗脸 (xi lian)", + "wordSecond": "myć twarz", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "洗澡 (xi zao)", + "wordSecond": "brać prysznic", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "梳头 (shu tou)", + "wordSecond": "czesać włosy", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "吃早餐 (chi zao can)", + "wordSecond": "jeść śniadanie", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "喝咖啡 (he ka fei)", + "wordSecond": "pić kawę", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "喝茶 (he cha)", + "wordSecond": "pić herbatę", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "去上班 (qu shang ban)", + "wordSecond": "iść do pracy", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "去上学 (qu shang xue)", + "wordSecond": "iść do szkoły", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "工作 (gong zuo)", + "wordSecond": "pracować", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "学习 (xue xi)", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "读书 (du shu)", + "wordSecond": "czytać książkę", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "写字 (xie zi)", + "wordSecond": "pisać", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "开会 (kai hui)", + "wordSecond": "mieć spotkanie", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "见面 (jian mian)", + "wordSecond": "spotykać się", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "吃午餐 (chi wu can)", + "wordSecond": "jeść lunch", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "休息 (xiu xi)", + "wordSecond": "odpoczywać", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "回家 (hui jia)", + "wordSecond": "wracać do domu", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "做饭 (zuo fan)", + "wordSecond": "gotować obiad", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "吃晚餐 (chi wan can)", + "wordSecond": "jeść kolację", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "洗碗 (xi wan)", + "wordSecond": "myć naczynia", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "看电视 (kan dian shi)", + "wordSecond": "oglądać telewizję", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "听音乐 (ting yin yue)", + "wordSecond": "słuchać muzyki", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "散步 (san bu)", + "wordSecond": "iść na spacer", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "锻炼 (duan lian)", + "wordSecond": "ćwiczyć", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "洗澡 (xi zao)", + "wordSecond": "brać kąpiel", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "刷牙 (shua ya)", + "wordSecond": "szczotkować zęby", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "睡觉 (shui jiao)", + "wordSecond": "iść spać", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "关灯 (guan deng)", + "wordSecond": "wyłączać światło", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "早上 (zao shang)", + "wordSecond": "rano", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "上午 (shang wu)", + "wordSecond": "przedpołudnie", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "中午 (zhong wu)", + "wordSecond": "południe", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "下午 (xia wu)", + "wordSecond": "popołudnie", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "晚上 (wan shang)", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "夜里 (ye li)", + "wordSecond": "noc", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "今天 (jin tian)", + "wordSecond": "dzisiaj", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "明天 (ming tian)", + "wordSecond": "jutro", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "昨天 (zuo tian)", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "每天 (mei tian)", + "wordSecond": "codziennie", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "总是 (zong shi)", + "wordSecond": "zawsze", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "经常 (jing chang)", + "wordSecond": "często", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "有时 (you shi)", + "wordSecond": "czasami", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "很少 (hen shao)", + "wordSecond": "rzadko", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "从不 (cong bu)", + "wordSecond": "nigdy", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "早餐 (zao can)", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "午餐 (wu can)", + "wordSecond": "lunch", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "晚餐 (wan can)", + "wordSecond": "kolacja", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "零食 (ling shi)", + "wordSecond": "przekąska", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "水 (shui)", + "wordSecond": "woda", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "牛奶 (niu nai)", + "wordSecond": "mleko", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "面包 (mian bao)", + "wordSecond": "chleb", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鸡蛋 (ji dan)", + "wordSecond": "jajka", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "水果 (shui guo)", + "wordSecond": "owoce", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蔬菜 (shu cai)", + "wordSecond": "warzywa", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "肉 (rou)", + "wordSecond": "mięso", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鱼 (yu)", + "wordSecond": "ryba", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "米饭 (mi fan)", + "wordSecond": "ryż", + "createdAt": "2026-02-19T14:54:38.584Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_education_school_de_fr_B1.json b/output/2026_02_19_education_school_de_fr_B1.json new file mode 100644 index 0000000..ae142e1 --- /dev/null +++ b/output/2026_02_19_education_school_de_fr_B1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:39:55.778Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Education & School" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Education & School" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Schule", + "wordSecond": "l'école", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Klassenzimmer", + "wordSecond": "la salle de classe", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Hausaufgaben", + "wordSecond": "les devoirs", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Prüfung", + "wordSecond": "l'examen", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Note", + "wordSecond": "la note", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Stundenplan", + "wordSecond": "l'emploi du temps", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Lehrer", + "wordSecond": "le professeur", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Lehrerin", + "wordSecond": "la professeure", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Schüler", + "wordSecond": "l'élève", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Schülerin", + "wordSecond": "l'élève", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Direktor", + "wordSecond": "le directeur", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Direktorin", + "wordSecond": "la directrice", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "studieren", + "wordSecond": "étudier", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "erklären", + "wordSecond": "expliquer", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "verstehen", + "wordSecond": "comprendre", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "wiederholen", + "wordSecond": "réviser", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "lernen", + "wordSecond": "apprendre", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "lehren", + "wordSecond": "enseigner", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "fragen", + "wordSecond": "demander", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "antworten", + "wordSecond": "répondre", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Unterricht", + "wordSecond": "le cours", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Pause", + "wordSecond": "la récréation", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Schulhof", + "wordSecond": "la cour de récréation", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Tafel", + "wordSecond": "le tableau", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Kreide", + "wordSecond": "la craie", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Stift", + "wordSecond": "le stylo", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Bleistift", + "wordSecond": "le crayon", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Heft", + "wordSecond": "le cahier", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Buch", + "wordSecond": "le livre", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Rucksack", + "wordSecond": "le sac à dos", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Schreibtisch", + "wordSecond": "le bureau", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Stuhl", + "wordSecond": "la chaise", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Mathematik", + "wordSecond": "les mathématiques", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Geschichte", + "wordSecond": "l'histoire", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Geographie", + "wordSecond": "la géographie", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Chemie", + "wordSecond": "la chimie", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Literatur", + "wordSecond": "la littérature", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Biologie", + "wordSecond": "la biologie", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Physik", + "wordSecond": "la physique", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Kunst", + "wordSecond": "l'art", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Musik", + "wordSecond": "la musique", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Sport", + "wordSecond": "le sport", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Informatik", + "wordSecond": "l'informatique", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Fremdsprache", + "wordSecond": "la langue étrangère", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Aufgabe", + "wordSecond": "l'exercice", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Projekt", + "wordSecond": "le projet", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Test", + "wordSecond": "le test", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Zeugnis", + "wordSecond": "le bulletin scolaire", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Abschluss", + "wordSecond": "le diplôme", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Universität", + "wordSecond": "l'université", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Studium", + "wordSecond": "les études", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Vortrag", + "wordSecond": "l'exposé", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Bibliothek", + "wordSecond": "la bibliothèque", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Labor", + "wordSecond": "le laboratoire", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Computer", + "wordSecond": "l'ordinateur", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Internet", + "wordSecond": "l'internet", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Tastatur", + "wordSecond": "le clavier", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Bildschirm", + "wordSecond": "l'écran", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Fehler", + "wordSecond": "l'erreur", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Korrektur", + "wordSecond": "la correction", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Gruppe", + "wordSecond": "le groupe", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Partner", + "wordSecond": "le partenaire", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Diskussion", + "wordSecond": "la discussion", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Thema", + "wordSecond": "le sujet", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "wichtig", + "wordSecond": "important", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schwierig", + "wordSecond": "difficile", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "einfach", + "wordSecond": "facile", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "interessant", + "wordSecond": "intéressant", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "langweilig", + "wordSecond": "ennuyeux", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "fleißig", + "wordSecond": "travailleur", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "intelligent", + "wordSecond": "intelligent", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Frage", + "wordSecond": "la question", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Antwort", + "wordSecond": "la réponse", + "createdAt": "2026-02-19T15:39:55.778Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_education_school_de_it_B1.json b/output/2026_02_19_education_school_de_it_B1.json new file mode 100644 index 0000000..4f754e0 --- /dev/null +++ b/output/2026_02_19_education_school_de_it_B1.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:40:10.646Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Education & School" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Education & School" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schule", + "wordSecond": "scuola", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Klasse", + "wordSecond": "classe", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Klassenzimmer", + "wordSecond": "aula", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Lehrer", + "wordSecond": "insegnante", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Lehrerin", + "wordSecond": "insegnante", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schüler", + "wordSecond": "studente", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schülerin", + "wordSecond": "studentessa", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Direktor", + "wordSecond": "preside", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hausaufgaben", + "wordSecond": "compiti", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Prüfung", + "wordSecond": "esame", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Test", + "wordSecond": "test", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Note", + "wordSecond": "voto", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zeugnis", + "wordSecond": "pagella", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Stundenplan", + "wordSecond": "orario", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pause", + "wordSecond": "intervallo", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schulhof", + "wordSecond": "cortile", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Buch", + "wordSecond": "libro", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Heft", + "wordSecond": "quaderno", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Stift", + "wordSecond": "penna", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bleistift", + "wordSecond": "matita", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Radiergummi", + "wordSecond": "gomma", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Lineal", + "wordSecond": "righello", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rucksack", + "wordSecond": "zaino", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tafel", + "wordSecond": "lavagna", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kreide", + "wordSecond": "gesso", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Computer", + "wordSecond": "computer", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bibliothek", + "wordSecond": "biblioteca", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Labor", + "wordSecond": "laboratorio", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mathematik", + "wordSecond": "matematica", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rechnen", + "wordSecond": "aritmetica", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Deutsch", + "wordSecond": "tedesco", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Englisch", + "wordSecond": "inglese", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Französisch", + "wordSecond": "francese", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Spanisch", + "wordSecond": "spagnolo", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Geschichte", + "wordSecond": "storia", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Geografie", + "wordSecond": "geografia", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Biologie", + "wordSecond": "biologia", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Chemie", + "wordSecond": "chimica", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Physik", + "wordSecond": "fisica", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kunst", + "wordSecond": "arte", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Musik", + "wordSecond": "musica", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sport", + "wordSecond": "educazione fisica", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Literatur", + "wordSecond": "letteratura", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Philosophie", + "wordSecond": "filosofia", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Informatik", + "wordSecond": "informatica", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "lernen", + "wordSecond": "imparare", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "studieren", + "wordSecond": "studiare", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "lehren", + "wordSecond": "insegnare", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "erklären", + "wordSecond": "spiegare", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "verstehen", + "wordSecond": "capire", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "wiederholen", + "wordSecond": "ripetere", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "üben", + "wordSecond": "esercitarsi", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "prüfen", + "wordSecond": "verificare", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "fragen", + "wordSecond": "chiedere", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "antworten", + "wordSecond": "rispondere", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "lesen", + "wordSecond": "leggere", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "schreiben", + "wordSecond": "scrivere", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "rechnen", + "wordSecond": "calcolare", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zeichnen", + "wordSecond": "disegnare", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "experimentieren", + "wordSecond": "sperimentare", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "diskutieren", + "wordSecond": "discutere", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "präsentieren", + "wordSecond": "presentare", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "vorbereiten", + "wordSecond": "preparare", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "korrigieren", + "wordSecond": "correggere", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "bewerten", + "wordSecond": "valutare", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "bestehen", + "wordSecond": "superare", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "durchfallen", + "wordSecond": "bocciare", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "abschließen", + "wordSecond": "concludere", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Abschluss", + "wordSecond": "diploma", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Universität", + "wordSecond": "università", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hochschule", + "wordSecond": "accademia", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Vorlesung", + "wordSecond": "lezione", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Seminar", + "wordSecond": "seminario", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Professor", + "wordSecond": "professore", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Student", + "wordSecond": "studente", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Studentin", + "wordSecond": "studentessa", + "createdAt": "2026-02-19T15:40:10.646Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_education_school_en_de_B1.json b/output/2026_02_19_education_school_en_de_B1.json new file mode 100644 index 0000000..83add59 --- /dev/null +++ b/output/2026_02_19_education_school_en_de_B1.json @@ -0,0 +1,1072 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:37:29.584Z", + "metadata": { + "itemCount": 81, + "categoryCount": 1, + "exportScope": "Category: Education & School" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Education & School" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "classroom", + "wordSecond": "Klassenzimmer", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "homework", + "wordSecond": "Hausaufgaben", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "exam", + "wordSecond": "Prüfung", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "grade", + "wordSecond": "Note", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "timetable", + "wordSecond": "Stundenplan", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "mathematics", + "wordSecond": "Mathematik", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "history", + "wordSecond": "Geschichte", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "geography", + "wordSecond": "Geographie", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "chemistry", + "wordSecond": "Chemie", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "literature", + "wordSecond": "Literatur", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "teacher", + "wordSecond": "Lehrer", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "student", + "wordSecond": "Schüler", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "principal", + "wordSecond": "Schulleiter", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "study", + "wordSecond": "lernen", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "explain", + "wordSecond": "erklären", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "understand", + "wordSecond": "verstehen", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "revise", + "wordSecond": "wiederholen", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "school", + "wordSecond": "Schule", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "university", + "wordSecond": "Universität", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lesson", + "wordSecond": "Unterricht", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "subject", + "wordSecond": "Fach", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "biology", + "wordSecond": "Biologie", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "physics", + "wordSecond": "Physik", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "art", + "wordSecond": "Kunst", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "music", + "wordSecond": "Musik", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "physical education", + "wordSecond": "Sport", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "language", + "wordSecond": "Sprache", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "English", + "wordSecond": "Englisch", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "German", + "wordSecond": "Deutsch", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "French", + "wordSecond": "Französisch", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "Spanish", + "wordSecond": "Spanisch", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "science", + "wordSecond": "Naturwissenschaften", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "computer science", + "wordSecond": "Informatik", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "test", + "wordSecond": "Test", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "quiz", + "wordSecond": "Quiz", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "assignment", + "wordSecond": "Aufgabe", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "project", + "wordSecond": "Projekt", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "presentation", + "wordSecond": "Präsentation", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "essay", + "wordSecond": "Aufsatz", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "book", + "wordSecond": "Buch", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "textbook", + "wordSecond": "Lehrbuch", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "notebook", + "wordSecond": "Heft", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pen", + "wordSecond": "Stift", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pencil", + "wordSecond": "Bleistift", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "eraser", + "wordSecond": "Radiergummi", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ruler", + "wordSecond": "Lineal", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "calculator", + "wordSecond": "Taschenrechner", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "backpack", + "wordSecond": "Rucksack", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "desk", + "wordSecond": "Schreibtisch", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "chair", + "wordSecond": "Stuhl", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "blackboard", + "wordSecond": "Tafel", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "whiteboard", + "wordSecond": "Whiteboard", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "marker", + "wordSecond": "Marker", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "chalk", + "wordSecond": "Kreide", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "library", + "wordSecond": "Bibliothek", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "laboratory", + "wordSecond": "Labor", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "gym", + "wordSecond": "Turnhalle", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cafeteria", + "wordSecond": "Mensa", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "playground", + "wordSecond": "Schulhof", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "break", + "wordSecond": "Pause", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "semester", + "wordSecond": "Semester", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "term", + "wordSecond": "Schuljahr", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "holiday", + "wordSecond": "Ferien", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "graduation", + "wordSecond": "Abschluss", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "certificate", + "wordSecond": "Zeugnis", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "diploma", + "wordSecond": "Diplom", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "degree", + "wordSecond": "Abschluss", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lecture", + "wordSecond": "Vorlesung", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "seminar", + "wordSecond": "Seminar", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tutor", + "wordSecond": "Nachhilfelehrer", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "classmate", + "wordSecond": "Klassenkamerad", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "group work", + "wordSecond": "Gruppenarbeit", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "homework help", + "wordSecond": "Hausaufgabenhilfe", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "learn", + "wordSecond": "lernen", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "teach", + "wordSecond": "unterrichten", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "read", + "wordSecond": "lesen", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "write", + "wordSecond": "schreiben", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "calculate", + "wordSecond": "rechnen", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "discuss", + "wordSecond": "diskutieren", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ask", + "wordSecond": "fragen", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "answer", + "wordSecond": "antworten", + "createdAt": "2026-02-19T15:37:29.584Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_education_school_en_es_B1.json b/output/2026_02_19_education_school_en_es_B1.json new file mode 100644 index 0000000..4364905 --- /dev/null +++ b/output/2026_02_19_education_school_en_es_B1.json @@ -0,0 +1,1059 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:37:01.867Z", + "metadata": { + "itemCount": 80, + "categoryCount": 1, + "exportScope": "Category: Education & School" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Education & School" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "classroom", + "wordSecond": "aula", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "homework", + "wordSecond": "tarea", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "exam", + "wordSecond": "examen", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "grade", + "wordSecond": "nota", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "timetable", + "wordSecond": "horario", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mathematics", + "wordSecond": "matemáticas", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "history", + "wordSecond": "historia", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "geography", + "wordSecond": "geografía", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "chemistry", + "wordSecond": "química", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "literature", + "wordSecond": "literatura", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "teacher", + "wordSecond": "profesor", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "student", + "wordSecond": "estudiante", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "principal", + "wordSecond": "director", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "study", + "wordSecond": "estudiar", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "explain", + "wordSecond": "explicar", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "understand", + "wordSecond": "entender", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "revise", + "wordSecond": "repasar", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "school", + "wordSecond": "escuela", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "university", + "wordSecond": "universidad", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "college", + "wordSecond": "colegio", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lesson", + "wordSecond": "lección", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "subject", + "wordSecond": "asignatura", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "science", + "wordSecond": "ciencia", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "physics", + "wordSecond": "física", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "biology", + "wordSecond": "biología", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "art", + "wordSecond": "arte", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "music", + "wordSecond": "música", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "physical education", + "wordSecond": "educación física", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "language", + "wordSecond": "idioma", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "English", + "wordSecond": "inglés", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Spanish", + "wordSecond": "español", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "French", + "wordSecond": "francés", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "German", + "wordSecond": "alemán", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "book", + "wordSecond": "libro", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "notebook", + "wordSecond": "cuaderno", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pen", + "wordSecond": "bolígrafo", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pencil", + "wordSecond": "lápiz", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "eraser", + "wordSecond": "borrador", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ruler", + "wordSecond": "regla", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dictionary", + "wordSecond": "diccionario", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "backpack", + "wordSecond": "mochila", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "desk", + "wordSecond": "pupitre", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "chair", + "wordSecond": "silla", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "blackboard", + "wordSecond": "pizarra", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "whiteboard", + "wordSecond": "pizarra blanca", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "marker", + "wordSecond": "rotulador", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "chalk", + "wordSecond": "tiza", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "computer", + "wordSecond": "ordenador", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "library", + "wordSecond": "biblioteca", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "laboratory", + "wordSecond": "laboratorio", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "gym", + "wordSecond": "gimnasio", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cafeteria", + "wordSecond": "cafetería", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "playground", + "wordSecond": "patio de recreo", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "break", + "wordSecond": "recreo", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "schedule", + "wordSecond": "horario", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "semester", + "wordSecond": "semestre", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "term", + "wordSecond": "trimestre", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "vacation", + "wordSecond": "vacaciones", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "test", + "wordSecond": "prueba", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "quiz", + "wordSecond": "examen corto", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "assignment", + "wordSecond": "trabajo", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "project", + "wordSecond": "proyecto", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "presentation", + "wordSecond": "presentación", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "essay", + "wordSecond": "ensayo", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "report", + "wordSecond": "informe", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "diploma", + "wordSecond": "diploma", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "degree", + "wordSecond": "título", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "graduate", + "wordSecond": "graduado", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "enroll", + "wordSecond": "matricularse", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "attend", + "wordSecond": "asistir", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "learn", + "wordSecond": "aprender", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "teach", + "wordSecond": "enseñar", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "read", + "wordSecond": "leer", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "write", + "wordSecond": "escribir", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "calculate", + "wordSecond": "calcular", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "memorize", + "wordSecond": "memorizar", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "practice", + "wordSecond": "practicar", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "discuss", + "wordSecond": "discutir", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "question", + "wordSecond": "pregunta", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "answer", + "wordSecond": "respuesta", + "createdAt": "2026-02-19T15:37:01.867Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_education_school_en_fr_B1.json b/output/2026_02_19_education_school_en_fr_B1.json new file mode 100644 index 0000000..82cff98 --- /dev/null +++ b/output/2026_02_19_education_school_en_fr_B1.json @@ -0,0 +1,1033 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:37:43.139Z", + "metadata": { + "itemCount": 78, + "categoryCount": 1, + "exportScope": "Category: Education & School" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Education & School" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "school", + "wordSecond": "école", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "classroom", + "wordSecond": "salle de classe", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "homework", + "wordSecond": "devoirs", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "exam", + "wordSecond": "examen", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "grade", + "wordSecond": "note", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "timetable", + "wordSecond": "emploi du temps", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "teacher", + "wordSecond": "professeur", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "student", + "wordSecond": "élève", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "principal", + "wordSecond": "directeur", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "study", + "wordSecond": "étudier", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "explain", + "wordSecond": "expliquer", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "understand", + "wordSecond": "comprendre", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "revise", + "wordSecond": "réviser", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "mathematics", + "wordSecond": "mathématiques", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "history", + "wordSecond": "histoire", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "geography", + "wordSecond": "géographie", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "chemistry", + "wordSecond": "chimie", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "literature", + "wordSecond": "littérature", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "biology", + "wordSecond": "biologie", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "physics", + "wordSecond": "physique", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "art", + "wordSecond": "art", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "music", + "wordSecond": "musique", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "physical education", + "wordSecond": "éducation physique", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "foreign language", + "wordSecond": "langue étrangère", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "science", + "wordSecond": "sciences", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lesson", + "wordSecond": "leçon", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "subject", + "wordSecond": "matière", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "test", + "wordSecond": "test", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "quiz", + "wordSecond": "interrogation", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "project", + "wordSecond": "projet", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "assignment", + "wordSecond": "devoir", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "essay", + "wordSecond": "dissertation", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "book", + "wordSecond": "livre", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "textbook", + "wordSecond": "manuel", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "notebook", + "wordSecond": "cahier", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pen", + "wordSecond": "stylo", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pencil", + "wordSecond": "crayon", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "eraser", + "wordSecond": "gomme", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ruler", + "wordSecond": "règle", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "calculator", + "wordSecond": "calculatrice", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "computer", + "wordSecond": "ordinateur", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "library", + "wordSecond": "bibliothèque", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "laboratory", + "wordSecond": "laboratoire", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "gymnasium", + "wordSecond": "gymnase", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cafeteria", + "wordSecond": "cantine", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "playground", + "wordSecond": "cour de récréation", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "break", + "wordSecond": "récréation", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "holiday", + "wordSecond": "vacances", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "term", + "wordSecond": "trimestre", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "semester", + "wordSecond": "semestre", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "university", + "wordSecond": "université", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "college", + "wordSecond": "collège", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "high school", + "wordSecond": "lycée", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "primary school", + "wordSecond": "école primaire", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "kindergarten", + "wordSecond": "maternelle", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "course", + "wordSecond": "cours", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "degree", + "wordSecond": "diplôme", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "certificate", + "wordSecond": "certificat", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "graduation", + "wordSecond": "diplômé", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "attendance", + "wordSecond": "présence", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "absent", + "wordSecond": "absent", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "present", + "wordSecond": "présent", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "late", + "wordSecond": "en retard", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "behavior", + "wordSecond": "comportement", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "discipline", + "wordSecond": "discipline", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "learn", + "wordSecond": "apprendre", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "teach", + "wordSecond": "enseigner", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "read", + "wordSecond": "lire", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "write", + "wordSecond": "écrire", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "listen", + "wordSecond": "écouter", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "speak", + "wordSecond": "parler", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "practice", + "wordSecond": "pratiquer", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "answer", + "wordSecond": "répondre", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "question", + "wordSecond": "question", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "correct", + "wordSecond": "correct", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wrong", + "wordSecond": "faux", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "difficult", + "wordSecond": "difficile", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "easy", + "wordSecond": "facile", + "createdAt": "2026-02-19T15:37:43.139Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_education_school_en_it_B1.json b/output/2026_02_19_education_school_en_it_B1.json new file mode 100644 index 0000000..1f3a11d --- /dev/null +++ b/output/2026_02_19_education_school_en_it_B1.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:37:56.399Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Education & School" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Education & School" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "school", + "wordSecond": "scuola", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "classroom", + "wordSecond": "classe", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "homework", + "wordSecond": "compiti", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "exam", + "wordSecond": "esame", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "grade", + "wordSecond": "voto", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "timetable", + "wordSecond": "orario", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "teacher", + "wordSecond": "insegnante", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "student", + "wordSecond": "studente", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "principal", + "wordSecond": "preside", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "study", + "wordSecond": "studiare", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "explain", + "wordSecond": "spiegare", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "understand", + "wordSecond": "capire", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "revise", + "wordSecond": "ripassare", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "learn", + "wordSecond": "imparare", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "teach", + "wordSecond": "insegnare", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "read", + "wordSecond": "leggere", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "write", + "wordSecond": "scrivere", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "listen", + "wordSecond": "ascoltare", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "speak", + "wordSecond": "parlare", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "question", + "wordSecond": "domanda", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "answer", + "wordSecond": "risposta", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lesson", + "wordSecond": "lezione", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "subject", + "wordSecond": "materia", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "mathematics", + "wordSecond": "matematica", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "history", + "wordSecond": "storia", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "geography", + "wordSecond": "geografia", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "chemistry", + "wordSecond": "chimica", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "literature", + "wordSecond": "letteratura", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "physics", + "wordSecond": "fisica", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "biology", + "wordSecond": "biologia", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "art", + "wordSecond": "arte", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "music", + "wordSecond": "musica", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "physical education", + "wordSecond": "educazione fisica", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "science", + "wordSecond": "scienze", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "language", + "wordSecond": "lingua", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "English", + "wordSecond": "inglese", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Italian", + "wordSecond": "italiano", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "French", + "wordSecond": "francese", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Spanish", + "wordSecond": "spagnolo", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "German", + "wordSecond": "tedesco", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "book", + "wordSecond": "libro", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "notebook", + "wordSecond": "quaderno", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pen", + "wordSecond": "penna", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pencil", + "wordSecond": "matita", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "eraser", + "wordSecond": "gomma", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ruler", + "wordSecond": "righello", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dictionary", + "wordSecond": "dizionario", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "backpack", + "wordSecond": "zaino", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "desk", + "wordSecond": "banco", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "chair", + "wordSecond": "sedia", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "blackboard", + "wordSecond": "lavagna", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "whiteboard", + "wordSecond": "lavagna bianca", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "computer", + "wordSecond": "computer", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "projector", + "wordSecond": "proiettore", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "test", + "wordSecond": "verifica", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "quiz", + "wordSecond": "quiz", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "assignment", + "wordSecond": "compito", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "project", + "wordSecond": "progetto", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "presentation", + "wordSecond": "presentazione", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "research", + "wordSecond": "ricerca", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "university", + "wordSecond": "università", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "college", + "wordSecond": "college", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "high school", + "wordSecond": "liceo", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "middle school", + "wordSecond": "scuola media", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "primary school", + "wordSecond": "scuola elementare", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "kindergarten", + "wordSecond": "asilo", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "library", + "wordSecond": "biblioteca", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "laboratory", + "wordSecond": "laboratorio", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "gym", + "wordSecond": "palestra", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cafeteria", + "wordSecond": "mensa", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "playground", + "wordSecond": "cortile", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "break", + "wordSecond": "intervallo", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "holiday", + "wordSecond": "vacanza", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "semester", + "wordSecond": "semestre", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "year", + "wordSecond": "anno scolastico", + "createdAt": "2026-02-19T15:37:56.399Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_education_school_en_pt_B1.json b/output/2026_02_19_education_school_en_pt_B1.json new file mode 100644 index 0000000..1438277 --- /dev/null +++ b/output/2026_02_19_education_school_en_pt_B1.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:37:15.235Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Education & School" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Education & School" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "school", + "wordSecond": "escola", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "classroom", + "wordSecond": "sala de aula", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "homework", + "wordSecond": "lição de casa", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "exam", + "wordSecond": "prova", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "grade", + "wordSecond": "nota", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "timetable", + "wordSecond": "horário", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "teacher", + "wordSecond": "professor", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "student", + "wordSecond": "aluno", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "principal", + "wordSecond": "diretor", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "study", + "wordSecond": "estudar", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "explain", + "wordSecond": "explicar", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "understand", + "wordSecond": "entender", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "revise", + "wordSecond": "revisar", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mathematics", + "wordSecond": "matemática", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "history", + "wordSecond": "história", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "geography", + "wordSecond": "geografia", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chemistry", + "wordSecond": "química", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "literature", + "wordSecond": "literatura", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "biology", + "wordSecond": "biologia", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "physics", + "wordSecond": "física", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "art", + "wordSecond": "arte", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "music", + "wordSecond": "música", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "physical education", + "wordSecond": "educação física", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "science", + "wordSecond": "ciências", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "language", + "wordSecond": "idioma", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "English", + "wordSecond": "inglês", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Portuguese", + "wordSecond": "português", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Spanish", + "wordSecond": "espanhol", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "French", + "wordSecond": "francês", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "German", + "wordSecond": "alemão", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lesson", + "wordSecond": "aula", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "subject", + "wordSecond": "matéria", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "test", + "wordSecond": "teste", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "quiz", + "wordSecond": "questionário", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "assignment", + "wordSecond": "tarefa", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "project", + "wordSecond": "projeto", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "research", + "wordSecond": "pesquisa", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "library", + "wordSecond": "biblioteca", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "book", + "wordSecond": "livro", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "notebook", + "wordSecond": "caderno", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pen", + "wordSecond": "caneta", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pencil", + "wordSecond": "lápis", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "eraser", + "wordSecond": "borracha", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ruler", + "wordSecond": "régua", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "calculator", + "wordSecond": "calculadora", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "computer", + "wordSecond": "computador", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "internet", + "wordSecond": "internet", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dictionary", + "wordSecond": "dicionário", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "map", + "wordSecond": "mapa", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "globe", + "wordSecond": "globo", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "blackboard", + "wordSecond": "quadro-negro", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "whiteboard", + "wordSecond": "quadro branco", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "marker", + "wordSecond": "canetão", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chalk", + "wordSecond": "giz", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "desk", + "wordSecond": "carteira", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chair", + "wordSecond": "cadeira", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "backpack", + "wordSecond": "mochila", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lunch", + "wordSecond": "lanche", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "break", + "wordSecond": "intervalo", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "recess", + "wordSecond": "recreio", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "semester", + "wordSecond": "semestre", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "year", + "wordSecond": "ano letivo", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "graduation", + "wordSecond": "formatura", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "diploma", + "wordSecond": "diploma", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "degree", + "wordSecond": "graduação", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "university", + "wordSecond": "universidade", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "college", + "wordSecond": "faculdade", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "course", + "wordSecond": "curso", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "major", + "wordSecond": "área de estudo", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "minor", + "wordSecond": "área secundária", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lecture", + "wordSecond": "palestra", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "presentation", + "wordSecond": "apresentação", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "group work", + "wordSecond": "trabalho em grupo", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "discussion", + "wordSecond": "discussão", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "question", + "wordSecond": "pergunta", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "answer", + "wordSecond": "resposta", + "createdAt": "2026-02-19T15:37:15.235Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_education_school_es_de_B1.json b/output/2026_02_19_education_school_es_de_B1.json new file mode 100644 index 0000000..23bb1c1 --- /dev/null +++ b/output/2026_02_19_education_school_es_de_B1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:38:26.211Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Education & School" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Education & School" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "escuela", + "wordSecond": "Schule", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "colegio", + "wordSecond": "Gymnasium", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "instituto", + "wordSecond": "Realschule", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "universidad", + "wordSecond": "Universität", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "profesor", + "wordSecond": "Lehrer", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "profesora", + "wordSecond": "Lehrerin", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "estudiante", + "wordSecond": "Schüler", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "alumno", + "wordSecond": "Schüler", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "director", + "wordSecond": "Schulleiter", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "directora", + "wordSecond": "Schulleiterin", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "clase", + "wordSecond": "Klasse", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "aula", + "wordSecond": "Klassenraum", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pizarra", + "wordSecond": "Tafel", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tiza", + "wordSecond": "Kreide", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "libro", + "wordSecond": "Buch", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cuaderno", + "wordSecond": "Heft", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "bolígrafo", + "wordSecond": "Kugelschreiber", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lápiz", + "wordSecond": "Bleistift", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "goma", + "wordSecond": "Radiergummi", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "regla", + "wordSecond": "Lineal", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mochila", + "wordSecond": "Schulranzen", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "deberes", + "wordSecond": "Hausaufgaben", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tarea", + "wordSecond": "Aufgabe", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "examen", + "wordSecond": "Prüfung", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "prueba", + "wordSecond": "Test", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "nota", + "wordSecond": "Note", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "calificación", + "wordSecond": "Bewertung", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "horario", + "wordSecond": "Stundenplan", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "recreo", + "wordSecond": "Pause", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "descanso", + "wordSecond": "Pausenhof", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "matemáticas", + "wordSecond": "Mathematik", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "historia", + "wordSecond": "Geschichte", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "geografía", + "wordSecond": "Geographie", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ciencias", + "wordSecond": "Naturwissenschaften", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "biología", + "wordSecond": "Biologie", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "química", + "wordSecond": "Chemie", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "física", + "wordSecond": "Physik", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "literatura", + "wordSecond": "Literatur", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lengua", + "wordSecond": "Deutsch", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "inglés", + "wordSecond": "Englisch", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "francés", + "wordSecond": "Französisch", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "español", + "wordSecond": "Spanisch", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "música", + "wordSecond": "Musik", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "arte", + "wordSecond": "Kunst", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "educación física", + "wordSecond": "Sport", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "informática", + "wordSecond": "Informatik", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tecnología", + "wordSecond": "Technik", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "filosofía", + "wordSecond": "Philosophie", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "economía", + "wordSecond": "Wirtschaft", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "aprender", + "wordSecond": "lernen", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "estudiar", + "wordSecond": "studieren", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "enseñar", + "wordSecond": "lehren", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "explicar", + "wordSecond": "erklären", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "entender", + "wordSecond": "verstehen", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "comprender", + "wordSecond": "begreifen", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "repasar", + "wordSecond": "wiederholen", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "revisar", + "wordSecond": "überprüfen", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "practicar", + "wordSecond": "üben", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "leer", + "wordSecond": "lesen", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "escribir", + "wordSecond": "schreiben", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "escuchar", + "wordSecond": "zuhören", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hablar", + "wordSecond": "sprechen", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "preguntar", + "wordSecond": "fragen", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "responder", + "wordSecond": "antworten", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "corregir", + "wordSecond": "korrigieren", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "evaluar", + "wordSecond": "bewerten", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "aprobar", + "wordSecond": "bestehen", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "suspender", + "wordSecond": "durchfallen", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "graduarse", + "wordSecond": "absolvieren", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "bachillerato", + "wordSecond": "Abitur", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "diploma", + "wordSecond": "Diplom", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "título", + "wordSecond": "Abschluss", + "createdAt": "2026-02-19T15:38:26.211Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_education_school_es_fr_B1.json b/output/2026_02_19_education_school_es_fr_B1.json new file mode 100644 index 0000000..cb55938 --- /dev/null +++ b/output/2026_02_19_education_school_es_fr_B1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:38:40.013Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Education & School" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Education & School" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "escuela", + "wordSecond": "école", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "colegio", + "wordSecond": "collège", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "instituto", + "wordSecond": "lycée", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "universidad", + "wordSecond": "université", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "profesor", + "wordSecond": "professeur", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "profesora", + "wordSecond": "professeure", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "estudiante", + "wordSecond": "étudiant", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "alumno", + "wordSecond": "élève", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "director", + "wordSecond": "directeur", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "directora", + "wordSecond": "directrice", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "clase", + "wordSecond": "classe", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "aula", + "wordSecond": "salle de classe", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pizarra", + "wordSecond": "tableau", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tiza", + "wordSecond": "craie", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "bolígrafo", + "wordSecond": "stylo", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lápiz", + "wordSecond": "crayon", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cuaderno", + "wordSecond": "cahier", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "libro", + "wordSecond": "livre", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mochila", + "wordSecond": "sac à dos", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tarea", + "wordSecond": "devoir", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "deberes", + "wordSecond": "devoirs", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "examen", + "wordSecond": "examen", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "prueba", + "wordSecond": "test", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nota", + "wordSecond": "note", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "calificación", + "wordSecond": "note", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "horario", + "wordSecond": "emploi du temps", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "recreo", + "wordSecond": "récréation", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vacaciones", + "wordSecond": "vacances", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "matemáticas", + "wordSecond": "mathématiques", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "historia", + "wordSecond": "histoire", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "geografía", + "wordSecond": "géographie", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ciencias", + "wordSecond": "sciences", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "biología", + "wordSecond": "biologie", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "química", + "wordSecond": "chimie", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "física", + "wordSecond": "physique", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "literatura", + "wordSecond": "littérature", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lengua", + "wordSecond": "langue", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "inglés", + "wordSecond": "anglais", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "francés", + "wordSecond": "français", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "español", + "wordSecond": "espagnol", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "arte", + "wordSecond": "art", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "música", + "wordSecond": "musique", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "educación física", + "wordSecond": "éducation physique", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "informática", + "wordSecond": "informatique", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "estudiar", + "wordSecond": "étudier", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "aprender", + "wordSecond": "apprendre", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "enseñar", + "wordSecond": "enseigner", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "explicar", + "wordSecond": "expliquer", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "entender", + "wordSecond": "comprendre", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "comprender", + "wordSecond": "comprendre", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "revisar", + "wordSecond": "réviser", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "repasar", + "wordSecond": "réviser", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "practicar", + "wordSecond": "pratiquer", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "leer", + "wordSecond": "lire", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "escribir", + "wordSecond": "écrire", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "escuchar", + "wordSecond": "écouter", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hablar", + "wordSecond": "parler", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "preguntar", + "wordSecond": "demander", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "responder", + "wordSecond": "répondre", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "corregir", + "wordSecond": "corriger", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "evaluar", + "wordSecond": "évaluer", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "aprobar", + "wordSecond": "réussir", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "suspender", + "wordSecond": "échouer", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "graduarse", + "wordSecond": "diplômer", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "bachillerato", + "wordSecond": "baccalauréat", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "grado", + "wordSecond": "licence", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "máster", + "wordSecond": "master", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "doctorado", + "wordSecond": "doctorat", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "biblioteca", + "wordSecond": "bibliothèque", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "laboratorio", + "wordSecond": "laboratoire", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gimnasio", + "wordSecond": "gymnase", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "comedor", + "wordSecond": "cantine", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "patio", + "wordSecond": "cour", + "createdAt": "2026-02-19T15:38:40.013Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_education_school_es_it_B1.json b/output/2026_02_19_education_school_es_it_B1.json new file mode 100644 index 0000000..5a24756 --- /dev/null +++ b/output/2026_02_19_education_school_es_it_B1.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:38:56.039Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Education & School" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Education & School" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "escuela", + "wordSecond": "scuola", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "colegio", + "wordSecond": "collegio", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "instituto", + "wordSecond": "liceo", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "universidad", + "wordSecond": "università", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "aula", + "wordSecond": "aula", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "clase", + "wordSecond": "classe", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "profesor", + "wordSecond": "professore", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "profesora", + "wordSecond": "professoressa", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "maestro", + "wordSecond": "maestro", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "maestra", + "wordSecond": "maestra", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "alumno", + "wordSecond": "alunno", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "alumna", + "wordSecond": "alunna", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estudiante", + "wordSecond": "studente", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "director", + "wordSecond": "preside", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "directora", + "wordSecond": "preside", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "secretaría", + "wordSecond": "segreteria", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "biblioteca", + "wordSecond": "biblioteca", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gimnasio", + "wordSecond": "palestra", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "patio", + "wordSecond": "cortile", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "laboratorio", + "wordSecond": "laboratorio", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pizarra", + "wordSecond": "lavagna", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tiza", + "wordSecond": "gesso", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "borrador", + "wordSecond": "cancellino", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pupitre", + "wordSecond": "banco", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "silla", + "wordSecond": "sedia", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mesa", + "wordSecond": "tavolo", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "libro", + "wordSecond": "libro", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cuaderno", + "wordSecond": "quaderno", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "carpeta", + "wordSecond": "cartella", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bolígrafo", + "wordSecond": "penna", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lápiz", + "wordSecond": "matita", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "goma", + "wordSecond": "gomma", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "regla", + "wordSecond": "righello", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "calculadora", + "wordSecond": "calcolatrice", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mochila", + "wordSecond": "zaino", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estuche", + "wordSecond": "astuccio", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tarea", + "wordSecond": "compito", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "deberes", + "wordSecond": "compiti", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "examen", + "wordSecond": "esame", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "prueba", + "wordSecond": "prova", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nota", + "wordSecond": "voto", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "calificación", + "wordSecond": "valutazione", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "horario", + "wordSecond": "orario", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "recreo", + "wordSecond": "ricreazione", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vacaciones", + "wordSecond": "vacanze", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "matemáticas", + "wordSecond": "matematica", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "historia", + "wordSecond": "storia", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "geografía", + "wordSecond": "geografia", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ciencias", + "wordSecond": "scienze", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "química", + "wordSecond": "chimica", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "física", + "wordSecond": "fisica", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "biología", + "wordSecond": "biologia", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "literatura", + "wordSecond": "letteratura", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lengua", + "wordSecond": "lingua", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "inglés", + "wordSecond": "inglese", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "francés", + "wordSecond": "francese", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "alemán", + "wordSecond": "tedesco", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "arte", + "wordSecond": "arte", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "música", + "wordSecond": "musica", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "educación física", + "wordSecond": "educazione fisica", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "informática", + "wordSecond": "informatica", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tecnología", + "wordSecond": "tecnologia", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "filosofía", + "wordSecond": "filosofia", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "economía", + "wordSecond": "economia", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dibujo", + "wordSecond": "disegno", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estudiar", + "wordSecond": "studiare", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "aprender", + "wordSecond": "imparare", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "enseñar", + "wordSecond": "insegnare", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "explicar", + "wordSecond": "spiegare", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "entender", + "wordSecond": "capire", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "comprender", + "wordSecond": "comprendere", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "repasar", + "wordSecond": "ripassare", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "memorizar", + "wordSecond": "memorizzare", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "practicar", + "wordSecond": "praticare", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "leer", + "wordSecond": "leggere", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "escribir", + "wordSecond": "scrivere", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "escuchar", + "wordSecond": "ascoltare", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hablar", + "wordSecond": "parlare", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "preguntar", + "wordSecond": "chiedere", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "responder", + "wordSecond": "rispondere", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "corregir", + "wordSecond": "correggere", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "evaluar", + "wordSecond": "valutare", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "aprobar", + "wordSecond": "approvare", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "suspender", + "wordSecond": "bocciare", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "graduarse", + "wordSecond": "laurearsi", + "createdAt": "2026-02-19T15:38:56.039Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_education_school_es_pt_B1.json b/output/2026_02_19_education_school_es_pt_B1.json new file mode 100644 index 0000000..c7176ba --- /dev/null +++ b/output/2026_02_19_education_school_es_pt_B1.json @@ -0,0 +1,1020 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:38:11.489Z", + "metadata": { + "itemCount": 77, + "categoryCount": 1, + "exportScope": "Category: Education & School" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Education & School" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escuela", + "wordSecond": "escola", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "colegio", + "wordSecond": "colégio", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "instituto", + "wordSecond": "instituto", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "universidad", + "wordSecond": "universidade", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "clase", + "wordSecond": "aula", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "salón de clases", + "wordSecond": "sala de aula", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pupitre", + "wordSecond": "carteira", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pizarra", + "wordSecond": "quadro", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tiza", + "wordSecond": "giz", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "borrador", + "wordSecond": "apagador", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "libro", + "wordSecond": "livro", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuaderno", + "wordSecond": "caderno", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bolígrafo", + "wordSecond": "caneta", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lápiz", + "wordSecond": "lápis", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mochila", + "wordSecond": "mochila", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tarea", + "wordSecond": "tarefa", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "deberes", + "wordSecond": "dever de casa", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "examen", + "wordSecond": "prova", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "prueba", + "wordSecond": "teste", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "calificación", + "wordSecond": "nota", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nota", + "wordSecond": "nota", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "horario", + "wordSecond": "horário", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "recreo", + "wordSecond": "recreio", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vacaciones", + "wordSecond": "férias", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "matemáticas", + "wordSecond": "matemática", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "álgebra", + "wordSecond": "álgebra", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "geometría", + "wordSecond": "geometria", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "historia", + "wordSecond": "história", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "geografía", + "wordSecond": "geografia", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ciencias", + "wordSecond": "ciências", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "biología", + "wordSecond": "biologia", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "química", + "wordSecond": "química", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "física", + "wordSecond": "física", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "literatura", + "wordSecond": "literatura", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lengua", + "wordSecond": "língua portuguesa", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "inglés", + "wordSecond": "inglês", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "francés", + "wordSecond": "francês", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "arte", + "wordSecond": "arte", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "música", + "wordSecond": "música", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "educación física", + "wordSecond": "educação física", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "informática", + "wordSecond": "informática", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "filosofía", + "wordSecond": "filosofia", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "profesor", + "wordSecond": "professor", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "profesora", + "wordSecond": "professora", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "maestro", + "wordSecond": "mestre", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "maestra", + "wordSecond": "mestra", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alumno", + "wordSecond": "aluno", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alumna", + "wordSecond": "aluna", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estudiante", + "wordSecond": "estudante", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "director", + "wordSecond": "diretor", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "directora", + "wordSecond": "diretora", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rector", + "wordSecond": "reitor", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "secretaria", + "wordSecond": "secretária", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "conserje", + "wordSecond": "zelador", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "biblioteca", + "wordSecond": "biblioteca", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "laboratorio", + "wordSecond": "laboratório", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gimnasio", + "wordSecond": "ginásio", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "patio", + "wordSecond": "pátio", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cantina", + "wordSecond": "cantina", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estudiar", + "wordSecond": "estudar", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aprender", + "wordSecond": "aprender", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "enseñar", + "wordSecond": "ensinar", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "explicar", + "wordSecond": "explicar", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "entender", + "wordSecond": "entender", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "comprender", + "wordSecond": "compreender", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "repasar", + "wordSecond": "revisar", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "revisar", + "wordSecond": "revisar", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "memorizar", + "wordSecond": "memorizar", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "practicar", + "wordSecond": "praticar", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "leer", + "wordSecond": "ler", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escribir", + "wordSecond": "escrever", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "calcular", + "wordSecond": "calcular", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "investigar", + "wordSecond": "pesquisar", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "presentar", + "wordSecond": "apresentar", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aprobar", + "wordSecond": "aprovar", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "suspender", + "wordSecond": "reprovar", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "graduarse", + "wordSecond": "formar-se", + "createdAt": "2026-02-19T15:38:11.489Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_education_school_fr_it_B1.json b/output/2026_02_19_education_school_fr_it_B1.json new file mode 100644 index 0000000..627e1cd --- /dev/null +++ b/output/2026_02_19_education_school_fr_it_B1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:40:24.850Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Education & School" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Education & School" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "école", + "wordSecond": "scuola", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "classe", + "wordSecond": "classe", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "salle de classe", + "wordSecond": "aula", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "devoir", + "wordSecond": "compito", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "examen", + "wordSecond": "esame", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "note", + "wordSecond": "voto", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "emploi du temps", + "wordSecond": "orario", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mathématiques", + "wordSecond": "matematica", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "histoire", + "wordSecond": "storia", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "géographie", + "wordSecond": "geografia", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chimie", + "wordSecond": "chimica", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "littérature", + "wordSecond": "letteratura", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "professeur", + "wordSecond": "insegnante", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "élève", + "wordSecond": "studente", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "directeur", + "wordSecond": "preside", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "étudier", + "wordSecond": "studiare", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "expliquer", + "wordSecond": "spiegare", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "comprendre", + "wordSecond": "capire", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "réviser", + "wordSecond": "ripassare", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cours", + "wordSecond": "lezione", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "livre", + "wordSecond": "libro", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cahier", + "wordSecond": "quaderno", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "stylo", + "wordSecond": "penna", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "crayon", + "wordSecond": "matita", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "règle", + "wordSecond": "righello", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "gomme", + "wordSecond": "gomma", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cartable", + "wordSecond": "zaino", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tableau", + "wordSecond": "lavagna", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bureau", + "wordSecond": "scrivania", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chaise", + "wordSecond": "sedia", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ordinateur", + "wordSecond": "computer", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "écran", + "wordSecond": "schermo", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "clavier", + "wordSecond": "tastiera", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "souris", + "wordSecond": "mouse", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "internet", + "wordSecond": "internet", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "recherche", + "wordSecond": "ricerca", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "projet", + "wordSecond": "progetto", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "présentation", + "wordSecond": "presentazione", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "discussion", + "wordSecond": "discussione", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "question", + "wordSecond": "domanda", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "réponse", + "wordSecond": "risposta", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "erreur", + "wordSecond": "errore", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "correction", + "wordSecond": "correzione", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "exercice", + "wordSecond": "esercizio", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "test", + "wordSecond": "test", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "contrôle", + "wordSecond": "verifica", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "diplôme", + "wordSecond": "diploma", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "certificat", + "wordSecond": "certificato", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "université", + "wordSecond": "università", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "lycée", + "wordSecond": "liceo", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "collège", + "wordSecond": "scuola media", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "école primaire", + "wordSecond": "scuola elementare", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "maternelle", + "wordSecond": "scuola materna", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bibliothèque", + "wordSecond": "biblioteca", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "laboratoire", + "wordSecond": "laboratorio", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sport", + "wordSecond": "educazione fisica", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "musique", + "wordSecond": "musica", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "art", + "wordSecond": "arte", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "langue", + "wordSecond": "lingua", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "français", + "wordSecond": "francese", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "anglais", + "wordSecond": "inglese", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "espagnol", + "wordSecond": "spagnolo", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "allemand", + "wordSecond": "tedesco", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sciences", + "wordSecond": "scienze", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "biologie", + "wordSecond": "biologia", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "physique", + "wordSecond": "fisica", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "informatique", + "wordSecond": "informatica", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "philosophie", + "wordSecond": "filosofia", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "économie", + "wordSecond": "economia", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "droit", + "wordSecond": "diritto", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "médecine", + "wordSecond": "medicina", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ingénierie", + "wordSecond": "ingegneria", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "architecture", + "wordSecond": "architettura", + "createdAt": "2026-02-19T15:40:24.850Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_education_school_pt_de_B1.json b/output/2026_02_19_education_school_pt_de_B1.json new file mode 100644 index 0000000..9ec759f --- /dev/null +++ b/output/2026_02_19_education_school_pt_de_B1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:39:11.064Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Education & School" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Education & School" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escola", + "wordSecond": "Schule", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "professor", + "wordSecond": "Lehrer", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "aluno", + "wordSecond": "Schüler", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sala de aula", + "wordSecond": "Klassenzimmer", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lição de casa", + "wordSecond": "Hausaufgaben", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "prova", + "wordSecond": "Prüfung", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nota", + "wordSecond": "Note", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "horário", + "wordSecond": "Stundenplan", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "matemática", + "wordSecond": "Mathematik", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "história", + "wordSecond": "Geschichte", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "geografia", + "wordSecond": "Geographie", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "química", + "wordSecond": "Chemie", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "literatura", + "wordSecond": "Literatur", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "diretor", + "wordSecond": "Schulleiter", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "estudar", + "wordSecond": "lernen", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "explicar", + "wordSecond": "erklären", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "entender", + "wordSecond": "verstehen", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "revisar", + "wordSecond": "wiederholen", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ensinar", + "wordSecond": "unterrichten", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "aprender", + "wordSecond": "erlernen", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escrever", + "wordSecond": "schreiben", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ler", + "wordSecond": "lesen", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "calcular", + "wordSecond": "rechnen", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "perguntar", + "wordSecond": "fragen", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "responder", + "wordSecond": "antworten", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quadro-negro", + "wordSecond": "Tafel", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "caderno", + "wordSecond": "Heft", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "caneta", + "wordSecond": "Kugelschreiber", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lápis", + "wordSecond": "Bleistift", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "borracha", + "wordSecond": "Radiergummi", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "livro didático", + "wordSecond": "Lehrbuch", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mochila", + "wordSecond": "Schulranzen", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "intervalo", + "wordSecond": "Pause", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "recreio", + "wordSecond": "Hofpause", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "biblioteca", + "wordSecond": "Bibliothek", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "laboratório", + "wordSecond": "Labor", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ginásio", + "wordSecond": "Turnhalle", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "aula", + "wordSecond": "Unterricht", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "semestre", + "wordSecond": "Semester", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "férias", + "wordSecond": "Ferien", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "trabalho em grupo", + "wordSecond": "Gruppenarbeit", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "apresentação", + "wordSecond": "Präsentation", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "projeto", + "wordSecond": "Projekt", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pesquisa", + "wordSecond": "Forschung", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dicionário", + "wordSecond": "Wörterbuch", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "gramática", + "wordSecond": "Grammatik", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vocabulário", + "wordSecond": "Wortschatz", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pronúncia", + "wordSecond": "Aussprache", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "conversação", + "wordSecond": "Konversation", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "física", + "wordSecond": "Physik", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "biologia", + "wordSecond": "Biologie", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "inglês", + "wordSecond": "Englisch", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "espanhol", + "wordSecond": "Spanisch", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "francês", + "wordSecond": "Französisch", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "arte", + "wordSecond": "Kunst", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "música", + "wordSecond": "Musik", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "educação física", + "wordSecond": "Sport", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "informática", + "wordSecond": "Informatik", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "economia", + "wordSecond": "Wirtschaft", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "filosofia", + "wordSecond": "Philosophie", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "psicologia", + "wordSecond": "Psychologie", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "universidade", + "wordSecond": "Universität", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "faculdade", + "wordSecond": "Fakultät", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "curso", + "wordSecond": "Kurs", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "graduação", + "wordSecond": "Studium", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mestrado", + "wordSecond": "Master", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "doutorado", + "wordSecond": "Doktor", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tese", + "wordSecond": "Dissertation", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "bolsa de estudos", + "wordSecond": "Stipendium", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "reunião de pais", + "wordSecond": "Elternabend", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "boletim", + "wordSecond": "Zeugnis", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "reprovação", + "wordSecond": "Durchfallen", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "aprovação", + "wordSecond": "Bestehen", + "createdAt": "2026-02-19T15:39:11.064Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_education_school_pt_fr_B1.json b/output/2026_02_19_education_school_pt_fr_B1.json new file mode 100644 index 0000000..78738b5 --- /dev/null +++ b/output/2026_02_19_education_school_pt_fr_B1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:39:25.532Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Education & School" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Education & School" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "escola", + "wordSecond": "école", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "professor", + "wordSecond": "professeur", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "aluno", + "wordSecond": "élève", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sala de aula", + "wordSecond": "salle de classe", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lição de casa", + "wordSecond": "devoirs", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "prova", + "wordSecond": "examen", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "nota", + "wordSecond": "note", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "horário", + "wordSecond": "emploi du temps", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "matemática", + "wordSecond": "mathématiques", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "história", + "wordSecond": "histoire", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "geografia", + "wordSecond": "géographie", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "química", + "wordSecond": "chimie", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "literatura", + "wordSecond": "littérature", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "diretor", + "wordSecond": "directeur", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estudar", + "wordSecond": "étudier", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "explicar", + "wordSecond": "expliquer", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "entender", + "wordSecond": "comprendre", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "revisar", + "wordSecond": "réviser", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "aprender", + "wordSecond": "apprendre", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ensinar", + "wordSecond": "enseigner", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "escrever", + "wordSecond": "écrire", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ler", + "wordSecond": "lire", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "calcular", + "wordSecond": "calculer", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pesquisar", + "wordSecond": "rechercher", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "perguntar", + "wordSecond": "demander", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "responder", + "wordSecond": "répondre", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "discutir", + "wordSecond": "discuter", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "apresentar", + "wordSecond": "présenter", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quadro-negro", + "wordSecond": "tableau noir", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "caderno", + "wordSecond": "cahier", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "livro", + "wordSecond": "livre", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "caneta", + "wordSecond": "stylo", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lápis", + "wordSecond": "crayon", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "borracha", + "wordSecond": "gomme", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mochila", + "wordSecond": "sac à dos", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "computador", + "wordSecond": "ordinateur", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "internet", + "wordSecond": "internet", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "biblioteca", + "wordSecond": "bibliothèque", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "laboratório", + "wordSecond": "laboratoire", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ginásio", + "wordSecond": "gymnase", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "recreio", + "wordSecond": "récréation", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "intervalo", + "wordSecond": "pause", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "semestre", + "wordSecond": "semestre", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ano letivo", + "wordSecond": "année scolaire", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "férias", + "wordSecond": "vacances", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "formulário", + "wordSecond": "formulaire", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "inscrição", + "wordSecond": "inscription", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "curso", + "wordSecond": "cours", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "aula", + "wordSecond": "leçon", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "trabalho em grupo", + "wordSecond": "travail de groupe", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "projeto", + "wordSecond": "projet", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pesquisa", + "wordSecond": "recherche", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tese", + "wordSecond": "thèse", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "graduação", + "wordSecond": "licence", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mestrado", + "wordSecond": "master", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "doutorado", + "wordSecond": "doctorat", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "faculdade", + "wordSecond": "faculté", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "universidade", + "wordSecond": "université", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "educação física", + "wordSecond": "éducation physique", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "biologia", + "wordSecond": "biologie", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "física", + "wordSecond": "physique", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "inglês", + "wordSecond": "anglais", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "francês", + "wordSecond": "français", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "espanhol", + "wordSecond": "espagnol", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "arte", + "wordSecond": "art", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "música", + "wordSecond": "musique", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "teatro", + "wordSecond": "théâtre", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "desenho", + "wordSecond": "dessin", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ciência", + "wordSecond": "science", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tecnologia", + "wordSecond": "technologie", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "filosofia", + "wordSecond": "philosophie", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sociologia", + "wordSecond": "sociologie", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "psicologia", + "wordSecond": "psychologie", + "createdAt": "2026-02-19T15:39:25.532Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_education_school_pt_it_B1.json b/output/2026_02_19_education_school_pt_it_B1.json new file mode 100644 index 0000000..9bccaa8 --- /dev/null +++ b/output/2026_02_19_education_school_pt_it_B1.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:39:40.239Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Education & School" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Education & School" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "escola", + "wordSecond": "scuola", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "professor", + "wordSecond": "insegnante", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "aluno", + "wordSecond": "studente", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sala de aula", + "wordSecond": "aula", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lição de casa", + "wordSecond": "compiti", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "prova", + "wordSecond": "esame", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nota", + "wordSecond": "voto", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "horário", + "wordSecond": "orario", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "matemática", + "wordSecond": "matematica", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "história", + "wordSecond": "storia", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "geografia", + "wordSecond": "geografia", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "química", + "wordSecond": "chimica", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "literatura", + "wordSecond": "letteratura", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "diretor", + "wordSecond": "preside", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estudar", + "wordSecond": "studiare", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "explicar", + "wordSecond": "spiegare", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "entender", + "wordSecond": "capire", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "revisar", + "wordSecond": "ripassare", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "livro", + "wordSecond": "libro", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "caderno", + "wordSecond": "quaderno", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "caneta", + "wordSecond": "penna", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lápis", + "wordSecond": "matita", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "borracha", + "wordSecond": "gomma", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mochila", + "wordSecond": "zaino", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quadro-negro", + "wordSecond": "lavagna", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "giz", + "wordSecond": "gesso", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "aula", + "wordSecond": "lezione", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "curso", + "wordSecond": "corso", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "semestre", + "wordSecond": "semestre", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "férias", + "wordSecond": "vacanze", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "intervalo", + "wordSecond": "intervallo", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "biblioteca", + "wordSecond": "biblioteca", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "laboratório", + "wordSecond": "laboratorio", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "computador", + "wordSecond": "computer", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "internet", + "wordSecond": "internet", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pesquisa", + "wordSecond": "ricerca", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "projeto", + "wordSecond": "progetto", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "apresentação", + "wordSecond": "presentazione", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "debate", + "wordSecond": "dibattito", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "grupo", + "wordSecond": "gruppo", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "colega", + "wordSecond": "compagno", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ensinar", + "wordSecond": "insegnare", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "aprender", + "wordSecond": "imparare", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "praticar", + "wordSecond": "praticare", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "escrever", + "wordSecond": "scrivere", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ler", + "wordSecond": "leggere", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ouvir", + "wordSecond": "ascoltare", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "falar", + "wordSecond": "parlare", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "perguntar", + "wordSecond": "chiedere", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "responder", + "wordSecond": "rispondere", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "corrigir", + "wordSecond": "correggere", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "avaliar", + "wordSecond": "valutare", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "passar", + "wordSecond": "passare", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "reprovar", + "wordSecond": "bocciare", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "física", + "wordSecond": "fisica", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "biologia", + "wordSecond": "biologia", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "inglês", + "wordSecond": "inglese", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "espanhol", + "wordSecond": "spagnolo", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "arte", + "wordSecond": "arte", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "música", + "wordSecond": "musica", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "educação física", + "wordSecond": "educazione fisica", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ciência", + "wordSecond": "scienza", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gramática", + "wordSecond": "grammatica", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vocabulário", + "wordSecond": "vocabolario", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ditado", + "wordSecond": "dettato", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "caligrafia", + "wordSecond": "calligrafia", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cálculo", + "wordSecond": "calcolo", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "equação", + "wordSecond": "equazione", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fórmula", + "wordSecond": "formula", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "experimento", + "wordSecond": "esperimento", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "observação", + "wordSecond": "osservazione", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "conclusão", + "wordSecond": "conclusione", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tese", + "wordSecond": "tesi", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "graduação", + "wordSecond": "laurea", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mestrado", + "wordSecond": "master", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "doutorado", + "wordSecond": "dottorato", + "createdAt": "2026-02-19T15:39:40.239Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_de_fr_A2.json b/output/2026_02_19_emotions_feelings_de_fr_A2.json new file mode 100644 index 0000000..27b0cc4 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_de_fr_A2.json @@ -0,0 +1,619 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:02:12.408Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "glücklich", + "wordSecond": "heureux", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "traurig", + "wordSecond": "triste", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "wütend", + "wordSecond": "en colère", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "ängstlich", + "wordSecond": "effrayé", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "aufgeregt", + "wordSecond": "excité", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "stolz", + "wordSecond": "fier", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "ruhig", + "wordSecond": "calme", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "dankbar", + "wordSecond": "reconnaissant", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "fröhlich", + "wordSecond": "joyeux", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "besorgt", + "wordSecond": "inquiet", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "einsam", + "wordSecond": "seul", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "beschämt", + "wordSecond": "honteux", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "überrascht", + "wordSecond": "surpris", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "verwirrt", + "wordSecond": "confus", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "gelangweilt", + "wordSecond": "ennuyé", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "müde", + "wordSecond": "fatigué", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "neugierig", + "wordSecond": "curieux", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "zufrieden", + "wordSecond": "content", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "nervös", + "wordSecond": "nerveux", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "entspannt", + "wordSecond": "détendu", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "enttäuscht", + "wordSecond": "déçu", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "erleichtert", + "wordSecond": "soulagé", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schüchtern", + "wordSecond": "timide", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "hoffnungsvoll", + "wordSecond": "plein d'espoir", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "verlegen", + "wordSecond": "gêné", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "eifersüchtig", + "wordSecond": "jaloux", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "erschöpft", + "wordSecond": "épuisé", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "begeistert", + "wordSecond": "enthousiaste", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "freundlich", + "wordSecond": "gentil", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "ärgerlich", + "wordSecond": "fâché", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "froh", + "wordSecond": "content", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "unglücklich", + "wordSecond": "malheureux", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "mutig", + "wordSecond": "courageux", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schockiert", + "wordSecond": "choqué", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "verärgert", + "wordSecond": "contrarié", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "verliebt", + "wordSecond": "amoureux", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "verzweifelt", + "wordSecond": "désespéré", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "verwundert", + "wordSecond": "étonné", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "verängstigt", + "wordSecond": "terrifié", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "verunsichert", + "wordSecond": "incertain", + "createdAt": "2026-02-19T15:02:12.408Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_de_it_A2.json b/output/2026_02_19_emotions_feelings_de_it_A2.json new file mode 100644 index 0000000..a265d8f --- /dev/null +++ b/output/2026_02_19_emotions_feelings_de_it_A2.json @@ -0,0 +1,700 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:02:26.500Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "glücklich", + "wordSecond": "felice", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "fröhlich", + "wordSecond": "allegro", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "aufgeregt", + "wordSecond": "eccitato", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "stolz", + "wordSecond": "orgoglioso", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "ruhig", + "wordSecond": "calmo", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "dankbar", + "wordSecond": "grato", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zufrieden", + "wordSecond": "contento", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "begeistert", + "wordSecond": "entusiasta", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "freundlich", + "wordSecond": "amichevole", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "liebevoll", + "wordSecond": "amoroso", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "hoffnungsvoll", + "wordSecond": "speranzoso", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "entspannt", + "wordSecond": "rilassato", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "sicher", + "wordSecond": "sicuro", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "mutig", + "wordSecond": "coraggioso", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "optimistisch", + "wordSecond": "ottimista", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "traurig", + "wordSecond": "triste", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "wütend", + "wordSecond": "arrabbiato", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "ängstlich", + "wordSecond": "spaventato", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "besorgt", + "wordSecond": "preoccupato", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "einsam", + "wordSecond": "solo", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "beschämt", + "wordSecond": "vergognoso", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "nervös", + "wordSecond": "nervoso", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "enttäuscht", + "wordSecond": "deluso", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "müde", + "wordSecond": "stanco", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "erschöpft", + "wordSecond": "esausto", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "gereizt", + "wordSecond": "irritabile", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "unglücklich", + "wordSecond": "infelice", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "verwirrt", + "wordSecond": "confuso", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "verlegen", + "wordSecond": "imbarazzato", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "eifersüchtig", + "wordSecond": "geloso", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "überrascht", + "wordSecond": "sorpreso", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "gelangweilt", + "wordSecond": "annoiato", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "neugierig", + "wordSecond": "curioso", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "interessiert", + "wordSecond": "interessato", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "gleichgültig", + "wordSecond": "indifferente", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "unsicher", + "wordSecond": "insicuro", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "schüchtern", + "wordSecond": "timido", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "erstaunt", + "wordSecond": "stupito", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "erfreut", + "wordSecond": "lieto", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "entschlossen", + "wordSecond": "deciso", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "tapfer", + "wordSecond": "coraggioso", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "sanft", + "wordSecond": "dolce", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zärtlich", + "wordSecond": "tenero", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "geduldig", + "wordSecond": "paziente", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "verärgert", + "wordSecond": "irritato", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "erschrocken", + "wordSecond": "spaventato", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "verzweifelt", + "wordSecond": "disperato", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "schuldig", + "wordSecond": "colpevole", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "verletzt", + "wordSecond": "ferito", + "createdAt": "2026-02-19T15:02:26.500Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_de_ja_A2.json b/output/2026_02_19_emotions_feelings_de_ja_A2.json new file mode 100644 index 0000000..09e0b75 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_de_ja_A2.json @@ -0,0 +1,646 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:02:51.684Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "glücklich", + "wordSecond": "嬉しい (うれしい, ureshii)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "fröhlich", + "wordSecond": "楽しい (たのしい, tanoshii)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "aufgeregt", + "wordSecond": "興奮した (こうふんした, koufun shita)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "stolz", + "wordSecond": "誇り高い (ほこりたかい, hokori takai)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "ruhig", + "wordSecond": "穏やかな (おだやかな, odayaka na)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "dankbar", + "wordSecond": "感謝している (かんしゃしている, kansha shiteiru)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "traurig", + "wordSecond": "悲しい (かなしい, kanashii)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "wütend", + "wordSecond": "怒った (おこった, okotta)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "ängstlich", + "wordSecond": "怖い (こわい, kowai)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "besorgt", + "wordSecond": "心配な (しんぱいな, shinpai na)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "einsam", + "wordSecond": "寂しい (さびしい, sabishii)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "beschämt", + "wordSecond": "恥ずかしい (はずかしい, hazukashii)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "überrascht", + "wordSecond": "驚いた (おどろいた, odoroi ta)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "verwirrt", + "wordSecond": "混乱した (こんらんした, konran shita)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "gelangweilt", + "wordSecond": "退屈な (たいくつな, taikutsu na)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "müde", + "wordSecond": "疲れた (つかれた, tsukareta)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "neugierig", + "wordSecond": "好奇心旺盛な (こうきしんおうせいな, koukishin ousei na)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "zufrieden", + "wordSecond": "満足した (まんぞくした, manzoku shita)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "begeistert", + "wordSecond": "熱狂した (ねっきょうした, nekkyou shita)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "entspannt", + "wordSecond": "リラックスした (りらっくすした, rirakkusu shita)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "hoffnungsvoll", + "wordSecond": "希望に満ちた (きぼうにみちた, kibou ni michita)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "liebevoll", + "wordSecond": "愛情深い (あいじょうぶかい, aijou bukai)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "freundlich", + "wordSecond": "親切な (しんせつな, shinsetsu na)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "sanft", + "wordSecond": "優しい (やさしい, yasashii)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "mutig", + "wordSecond": "勇敢な (ゆうかんな, yuukan na)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "stark", + "wordSecond": "強い (つよい, tsuyoi)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "schwach", + "wordSecond": "弱い (よわい, yowai)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "nervös", + "wordSecond": "緊張した (きんちょうした, kinchou shita)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "erschrocken", + "wordSecond": "驚いた (おどろいた, odoroi ta)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "verängstigt", + "wordSecond": "怖がっている (こわがっている, kowagatteiru)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "verzweifelt", + "wordSecond": "絶望的な (ぜつぼうてきな, zetsubouteki na)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "enttäuscht", + "wordSecond": "失望した (しつぼうした, shitsubou shita)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "eifersüchtig", + "wordSecond": "嫉妬深い (しっとぶかい, shitto bukai)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "schüchtern", + "wordSecond": "恥ずかしがり屋 (はずかしがりや, hazukashigariya)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "unsicher", + "wordSecond": "不安な (ふあんな, fuan na)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "verlegen", + "wordSecond": "照れくさい (てれくさい, terekusai)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "erstaunt", + "wordSecond": "驚いた (おどろいた, odoroi ta)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "verblüfft", + "wordSecond": "びっくりした (びっくりした, bikkuri shita)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "erschöpft", + "wordSecond": "疲れ果てた (つかれはてた, tsukare hateta)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "schlafrig", + "wordSecond": "眠い (ねむい, nemui)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "interessiert", + "wordSecond": "興味がある (きょうみがある, kyoumi ga aru)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "fasziniert", + "wordSecond": "魅了された (みりょうされた, miryou sareta)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "erfreut", + "wordSecond": "喜んだ (よろこんだ, yorokonda)", + "createdAt": "2026-02-19T15:02:51.684Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_de_ko_A2.json b/output/2026_02_19_emotions_feelings_de_ko_A2.json new file mode 100644 index 0000000..0eaadde --- /dev/null +++ b/output/2026_02_19_emotions_feelings_de_ko_A2.json @@ -0,0 +1,529 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:03:29.177Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "glücklich", + "wordSecond": "행복한 (haengbokan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "fröhlich", + "wordSecond": "기쁜 (gippeun)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "aufgeregt", + "wordSecond": "흥분한 (heungbunhan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "stolz", + "wordSecond": "자랑스러운 (jarangseureoun)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "ruhig", + "wordSecond": "차분한 (chabunhan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "dankbar", + "wordSecond": "감사하는 (gamsahaneun)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "traurig", + "wordSecond": "슬픈 (seulpeun)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "wütend", + "wordSecond": "화난 (hwanan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "ängstlich", + "wordSecond": "두려운 (duryeoun)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "besorgt", + "wordSecond": "걱정하는 (geokjeonghaneun)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "einsam", + "wordSecond": "외로운 (oeroun)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "beschämt", + "wordSecond": "부끄러운 (bukkeureoun)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "überrascht", + "wordSecond": "놀란 (nollan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "verwirrt", + "wordSecond": "혼란스러운 (hollanseureoun)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "gelangweilt", + "wordSecond": "지루한 (jiruhan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "müde", + "wordSecond": "피곤한 (pigonhan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "neugierig", + "wordSecond": "호기심 많은 (hogisim maneun)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "zufrieden", + "wordSecond": "만족한 (manjokan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "entspannt", + "wordSecond": "편안한 (pyeonanhan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "begeistert", + "wordSecond": "열광적인 (yeolgwangjeogin)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "erfreut", + "wordSecond": "기쁜 (gippeun)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "erstaunt", + "wordSecond": "놀라운 (nollaun)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "nervös", + "wordSecond": "긴장한 (ginjanghan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "verärgert", + "wordSecond": "화가 난 (hwaga nan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "enttäuscht", + "wordSecond": "실망한 (silmanghan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "erschrocken", + "wordSecond": "깜짝 놀란 (kkamjjak nollan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "verlegen", + "wordSecond": "당황한 (danghwanghan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "erleichtert", + "wordSecond": "안도한 (andohan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "hoffnungsvoll", + "wordSecond": "희망찬 (huimangchan)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "freudig", + "wordSecond": "즐거운 (jeulgeoun)", + "createdAt": "2026-02-19T15:03:29.177Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_de_pl_A2.json b/output/2026_02_19_emotions_feelings_de_pl_A2.json new file mode 100644 index 0000000..a47c4ed --- /dev/null +++ b/output/2026_02_19_emotions_feelings_de_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:03:43.353Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "glücklich", + "wordSecond": "szczęśliwy", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "fröhlich", + "wordSecond": "radosny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "aufgeregt", + "wordSecond": "podekscytowany", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "stolz", + "wordSecond": "dumny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "ruhig", + "wordSecond": "spokojny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "dankbar", + "wordSecond": "wdzięczny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "traurig", + "wordSecond": "smutny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "wütend", + "wordSecond": "zły", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "ängstlich", + "wordSecond": "przestraszony", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "besorgt", + "wordSecond": "zmartwiony", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "einsam", + "wordSecond": "samotny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "beschämt", + "wordSecond": "zawstydzony", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "überrascht", + "wordSecond": "zaskoczony", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "verwirrt", + "wordSecond": "zmieszany", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "gelangweilt", + "wordSecond": "znudzony", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "müde", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "neugierig", + "wordSecond": "ciekawy", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zufrieden", + "wordSecond": "zadowolony", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "erfreut", + "wordSecond": "uradowany", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "begeistert", + "wordSecond": "zachwycony", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "entspannt", + "wordSecond": "zrelaksowany", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "hoffnungsvoll", + "wordSecond": "pełen nadziei", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "verliebt", + "wordSecond": "zakochany", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "freundlich", + "wordSecond": "przyjazny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "liebevoll", + "wordSecond": "kochający", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "mutig", + "wordSecond": "odważny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "tapfer", + "wordSecond": "dzielny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "stark", + "wordSecond": "silny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "sicher", + "wordSecond": "pewny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "entschlossen", + "wordSecond": "zdeterminowany", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "enttäuscht", + "wordSecond": "rozczarowany", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "nervös", + "wordSecond": "nerwowy", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "erschrocken", + "wordSecond": "przerażony", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "verängstigt", + "wordSecond": "przestraszony", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "verzweifelt", + "wordSecond": "zdesperowany", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "gereizt", + "wordSecond": "poirytowany", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "aggressiv", + "wordSecond": "agresywny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "feindselig", + "wordSecond": "wrogi", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "eifersüchtig", + "wordSecond": "zazdrosny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "schüchtern", + "wordSecond": "nieśmiały", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "unsicher", + "wordSecond": "niepewny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "schuldig", + "wordSecond": "winny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "verlegen", + "wordSecond": "zakłopotany", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "erschöpft", + "wordSecond": "wyczerpany", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "faul", + "wordSecond": "leniwy", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "hungrig", + "wordSecond": "głodny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "durstig", + "wordSecond": "spragniony", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "krank", + "wordSecond": "chory", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "gesund", + "wordSecond": "zdrowy", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "interessiert", + "wordSecond": "zainteresowany", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "aufmerksam", + "wordSecond": "uważny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "konzentriert", + "wordSecond": "skoncentrowany", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "geduldig", + "wordSecond": "cierpliwy", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "unruhig", + "wordSecond": "niespokojny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "unwohl", + "wordSecond": "nieswojo", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "erstaunt", + "wordSecond": "zdumiony", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "verblüfft", + "wordSecond": "zaskoczony", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "verwundert", + "wordSecond": "zdziwiony", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "gleichgültig", + "wordSecond": "obojętny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "leidenschaftlich", + "wordSecond": "namiętny", + "createdAt": "2026-02-19T15:03:43.353Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_de_zh_A2.json b/output/2026_02_19_emotions_feelings_de_zh_A2.json new file mode 100644 index 0000000..d51d576 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_de_zh_A2.json @@ -0,0 +1,673 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:03:07.884Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "glücklich", + "wordSecond": "高兴 (gaoxing)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "fröhlich", + "wordSecond": "快乐 (kuaile)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "aufgeregt", + "wordSecond": "兴奋 (xingfen)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "stolz", + "wordSecond": "骄傲 (jiao'ao)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "ruhig", + "wordSecond": "平静 (pingjing)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "dankbar", + "wordSecond": "感激 (ganji)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "traurig", + "wordSecond": "伤心 (shangxin)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "wütend", + "wordSecond": "生气 (shengqi)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "ängstlich", + "wordSecond": "害怕 (haipa)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "besorgt", + "wordSecond": "担心 (danxin)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "einsam", + "wordSecond": "孤独 (gudu)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "beschämt", + "wordSecond": "羞愧 (xiukui)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "überrascht", + "wordSecond": "惊讶 (jingya)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "verwirrt", + "wordSecond": "困惑 (kunhuo)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "gelangweilt", + "wordSecond": "无聊 (wuliao)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "müde", + "wordSecond": "累 (lei)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "neugierig", + "wordSecond": "好奇 (haoqi)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "zufrieden", + "wordSecond": "满意 (manyi)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "begeistert", + "wordSecond": "热情 (reqing)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "entspannt", + "wordSecond": "放松 (fangsong)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "freundlich", + "wordSecond": "友好 (youhao)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "liebevoll", + "wordSecond": "有爱 (you'ai)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "hoffnungsvoll", + "wordSecond": "有希望 (youxiwang)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "mutig", + "wordSecond": "勇敢 (yonggan)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "sanft", + "wordSecond": "温柔 (wenrou)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "erleichtert", + "wordSecond": "放心 (fangxin)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "verärgert", + "wordSecond": "恼火 (naohuo)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "verletzt", + "wordSecond": "受伤 (shoushang)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "enttäuscht", + "wordSecond": "失望 (shiwang)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "nervös", + "wordSecond": "紧张 (jinzhang)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "erschrocken", + "wordSecond": "吃惊 (chijing)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "schüchtern", + "wordSecond": "害羞 (haixiu)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "schuldig", + "wordSecond": "内疚 (neijiu)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "eifersüchtig", + "wordSecond": "嫉妒 (jidu)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "gereizt", + "wordSecond": "烦躁 (fanzao)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "verlegen", + "wordSecond": "尴尬 (ganga)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "erschöpft", + "wordSecond": "疲惫 (pibei)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "schläfrig", + "wordSecond": "困 (kun)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "interessiert", + "wordSecond": "感兴趣 (ganxingqu)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "erstaunt", + "wordSecond": "惊奇 (jingqi)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "froh", + "wordSecond": "开心 (kaixin)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "zufällig", + "wordSecond": "偶然 (ouran)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "selbstbewusst", + "wordSecond": "自信 (zixin)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "geduldig", + "wordSecond": "耐心 (naixin)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "empfindlich", + "wordSecond": "敏感 (mingan)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "unsicher", + "wordSecond": "不安 (bu'an)", + "createdAt": "2026-02-19T15:03:07.884Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_en_de_A2.json b/output/2026_02_19_emotions_feelings_en_de_A2.json new file mode 100644 index 0000000..ab3d10d --- /dev/null +++ b/output/2026_02_19_emotions_feelings_en_de_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:55:34.114Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "happy", + "wordSecond": "glücklich", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sad", + "wordSecond": "traurig", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "angry", + "wordSecond": "wütend", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "scared", + "wordSecond": "ängstlich", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "excited", + "wordSecond": "aufgeregt", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "calm", + "wordSecond": "ruhig", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "proud", + "wordSecond": "stolz", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "worried", + "wordSecond": "besorgt", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lonely", + "wordSecond": "einsam", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ashamed", + "wordSecond": "beschämt", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "surprised", + "wordSecond": "überrascht", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "confused", + "wordSecond": "verwirrt", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bored", + "wordSecond": "gelangweilt", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tired", + "wordSecond": "müde", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "curious", + "wordSecond": "neugierig", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "grateful", + "wordSecond": "dankbar", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "joyful", + "wordSecond": "freudig", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "nervous", + "wordSecond": "nervös", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "disappointed", + "wordSecond": "enttäuscht", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "embarrassed", + "wordSecond": "verlegen", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "frustrated", + "wordSecond": "frustriert", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "jealous", + "wordSecond": "eifersüchtig", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "guilty", + "wordSecond": "schuldig", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hopeful", + "wordSecond": "hoffnungsvoll", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "peaceful", + "wordSecond": "friedlich", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "annoyed", + "wordSecond": "genervt", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "afraid", + "wordSecond": "ängstlich", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shy", + "wordSecond": "schüchtern", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "content", + "wordSecond": "zufrieden", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "enthusiastic", + "wordSecond": "begeistert", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "impatient", + "wordSecond": "ungeduldig", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "relaxed", + "wordSecond": "entspannt", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stressed", + "wordSecond": "gestresst", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "satisfied", + "wordSecond": "zufrieden", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "unhappy", + "wordSecond": "unglücklich", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "frightened", + "wordSecond": "erschrocken", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cheerful", + "wordSecond": "fröhlich", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "miserable", + "wordSecond": "elend", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "optimistic", + "wordSecond": "optimistisch", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pessimistic", + "wordSecond": "pessimistisch", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "anxious", + "wordSecond": "ängstlich", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "delighted", + "wordSecond": "entzückt", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "irritated", + "wordSecond": "gereizt", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pleased", + "wordSecond": "erfreut", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "suspicious", + "wordSecond": "misstrauisch", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "terrified", + "wordSecond": "verängstigt", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "thrilled", + "wordSecond": "begeistert", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "upset", + "wordSecond": "verärgert", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "amused", + "wordSecond": "amüsiert", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bitter", + "wordSecond": "verbittert", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "confident", + "wordSecond": "selbstbewusst", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "depressed", + "wordSecond": "deprimiert", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "energetic", + "wordSecond": "energisch", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "exhausted", + "wordSecond": "erschöpft", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "furious", + "wordSecond": "wütend", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "gloomy", + "wordSecond": "düster", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hurt", + "wordSecond": "verletzt", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "insecure", + "wordSecond": "unsicher", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "loving", + "wordSecond": "liebevoll", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "overwhelmed", + "wordSecond": "überwältigt", + "createdAt": "2026-02-19T14:55:34.114Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_en_es_A2.json b/output/2026_02_19_emotions_feelings_en_es_A2.json new file mode 100644 index 0000000..da46b1f --- /dev/null +++ b/output/2026_02_19_emotions_feelings_en_es_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:55:09.594Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "happy", + "wordSecond": "feliz", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sad", + "wordSecond": "triste", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "angry", + "wordSecond": "enojado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "scared", + "wordSecond": "asustado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "excited", + "wordSecond": "emocionado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "calm", + "wordSecond": "tranquilo", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "proud", + "wordSecond": "orgulloso", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "worried", + "wordSecond": "preocupado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "surprised", + "wordSecond": "sorprendido", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tired", + "wordSecond": "cansado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bored", + "wordSecond": "aburrido", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "confused", + "wordSecond": "confundido", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "joyful", + "wordSecond": "alegre", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lonely", + "wordSecond": "solitario", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ashamed", + "wordSecond": "avergonzado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "grateful", + "wordSecond": "agradecido", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "curious", + "wordSecond": "curioso", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nervous", + "wordSecond": "nervioso", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "afraid", + "wordSecond": "temeroso", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "content", + "wordSecond": "contento", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "disappointed", + "wordSecond": "decepcionado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "embarrassed", + "wordSecond": "avergonzado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "frustrated", + "wordSecond": "frustrado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "guilty", + "wordSecond": "culpable", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hopeful", + "wordSecond": "esperanzado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "impatient", + "wordSecond": "impaciente", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "jealous", + "wordSecond": "celoso", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "peaceful", + "wordSecond": "pacífico", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "relaxed", + "wordSecond": "relajado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shy", + "wordSecond": "tímido", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sick", + "wordSecond": "enfermo", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "strong", + "wordSecond": "fuerte", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "weak", + "wordSecond": "débil", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "annoyed", + "wordSecond": "molesto", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "brave", + "wordSecond": "valiente", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "comfortable", + "wordSecond": "cómodo", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "depressed", + "wordSecond": "deprimido", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "energetic", + "wordSecond": "enérgico", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "enthusiastic", + "wordSecond": "entusiasta", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "frightened", + "wordSecond": "asustado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "generous", + "wordSecond": "generoso", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "grumpy", + "wordSecond": "gruñón", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hurt", + "wordSecond": "herido", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "in love", + "wordSecond": "enamorado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "irritated", + "wordSecond": "irritado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "kind", + "wordSecond": "amable", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lazy", + "wordSecond": "perezoso", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mad", + "wordSecond": "enfadado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "miserable", + "wordSecond": "miserable", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "optimistic", + "wordSecond": "optimista", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pessimistic", + "wordSecond": "pesimista", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pleased", + "wordSecond": "satisfecho", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "positive", + "wordSecond": "positivo", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "relieved", + "wordSecond": "aliviado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "satisfied", + "wordSecond": "satisfecho", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "serious", + "wordSecond": "serio", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "stressed", + "wordSecond": "estresado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "suspicious", + "wordSecond": "sospechoso", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "terrified", + "wordSecond": "aterrorizado", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "uncomfortable", + "wordSecond": "incómodo", + "createdAt": "2026-02-19T14:55:09.594Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_en_fr_A2.json b/output/2026_02_19_emotions_feelings_en_fr_A2.json new file mode 100644 index 0000000..7a89261 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_en_fr_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:55:45.631Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "happy", + "wordSecond": "heureux", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sad", + "wordSecond": "triste", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "angry", + "wordSecond": "fâché", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "scared", + "wordSecond": "effrayé", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "excited", + "wordSecond": "excité", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "calm", + "wordSecond": "calme", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "proud", + "wordSecond": "fier", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "worried", + "wordSecond": "inquiet", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lonely", + "wordSecond": "seul", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ashamed", + "wordSecond": "honteux", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "surprised", + "wordSecond": "surpris", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "confused", + "wordSecond": "confus", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bored", + "wordSecond": "ennuyé", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tired", + "wordSecond": "fatigué", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "curious", + "wordSecond": "curieux", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "joyful", + "wordSecond": "joyeux", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "grateful", + "wordSecond": "reconnaissant", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "afraid", + "wordSecond": "peureux", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "nervous", + "wordSecond": "nerveux", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "relaxed", + "wordSecond": "détendu", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "content", + "wordSecond": "content", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "disappointed", + "wordSecond": "déçu", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "embarrassed", + "wordSecond": "gêné", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "frustrated", + "wordSecond": "frustré", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "guilty", + "wordSecond": "coupable", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hopeful", + "wordSecond": "optimiste", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "jealous", + "wordSecond": "jaloux", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "peaceful", + "wordSecond": "paisible", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shy", + "wordSecond": "timide", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "silly", + "wordSecond": "bête", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "stressed", + "wordSecond": "stressé", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "strong", + "wordSecond": "fort", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "weak", + "wordSecond": "faible", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "annoyed", + "wordSecond": "agacé", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "brave", + "wordSecond": "courageux", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cheerful", + "wordSecond": "gai", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "comfortable", + "wordSecond": "confortable", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "crazy", + "wordSecond": "fou", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "depressed", + "wordSecond": "déprimé", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "eager", + "wordSecond": "impatient", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "energetic", + "wordSecond": "énergique", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "enthusiastic", + "wordSecond": "enthousiaste", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "furious", + "wordSecond": "furieux", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "gentle", + "wordSecond": "doux", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "glad", + "wordSecond": "content", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "grumpy", + "wordSecond": "grincheux", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hurt", + "wordSecond": "blessé", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "impatient", + "wordSecond": "impatient", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "in love", + "wordSecond": "amoureux", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "irritated", + "wordSecond": "irrité", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "kind", + "wordSecond": "gentil", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lazy", + "wordSecond": "paresseux", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "miserable", + "wordSecond": "misérable", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "optimistic", + "wordSecond": "optimiste", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pessimistic", + "wordSecond": "pessimiste", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pleased", + "wordSecond": "satisfait", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "satisfied", + "wordSecond": "satisfait", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "serious", + "wordSecond": "sérieux", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shocked", + "wordSecond": "choqué", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "suspicious", + "wordSecond": "méfiant", + "createdAt": "2026-02-19T14:55:45.631Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_en_it_A2.json b/output/2026_02_19_emotions_feelings_en_it_A2.json new file mode 100644 index 0000000..4733d40 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_en_it_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:55:57.473Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "happy", + "wordSecond": "felice", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sad", + "wordSecond": "triste", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "angry", + "wordSecond": "arrabbiato", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "scared", + "wordSecond": "spaventato", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "excited", + "wordSecond": "eccitato", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "worried", + "wordSecond": "preoccupato", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "proud", + "wordSecond": "orgoglioso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lonely", + "wordSecond": "solo", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "calm", + "wordSecond": "calmo", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ashamed", + "wordSecond": "vergognoso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "grateful", + "wordSecond": "grato", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "surprised", + "wordSecond": "sorpreso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "confused", + "wordSecond": "confuso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bored", + "wordSecond": "annoiato", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tired", + "wordSecond": "stanco", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "curious", + "wordSecond": "curioso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "joyful", + "wordSecond": "gioioso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "nervous", + "wordSecond": "nervoso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "afraid", + "wordSecond": "pauroso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "disappointed", + "wordSecond": "deluso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "content", + "wordSecond": "contento", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "frustrated", + "wordSecond": "frustrato", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "embarrassed", + "wordSecond": "imbarazzato", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hopeful", + "wordSecond": "speranzoso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "jealous", + "wordSecond": "geloso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "guilty", + "wordSecond": "colpevole", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "peaceful", + "wordSecond": "pacifico", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "anxious", + "wordSecond": "ansioso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "enthusiastic", + "wordSecond": "entusiasta", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "relieved", + "wordSecond": "sollevato", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shy", + "wordSecond": "timido", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "silly", + "wordSecond": "sciocco", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "strong", + "wordSecond": "forte", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "weak", + "wordSecond": "debole", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "comfortable", + "wordSecond": "comodo", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "uncomfortable", + "wordSecond": "a disagio", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pleased", + "wordSecond": "soddisfatto", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "upset", + "wordSecond": "turbato", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "frightened", + "wordSecond": "spaventato", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cheerful", + "wordSecond": "allegro", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "miserable", + "wordSecond": "infelice", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "eager", + "wordSecond": "desideroso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "impatient", + "wordSecond": "impaziente", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "patient", + "wordSecond": "paziente", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "kind", + "wordSecond": "gentile", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "mean", + "wordSecond": "cattivo", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "brave", + "wordSecond": "coraggioso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cowardly", + "wordSecond": "codardo", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "loving", + "wordSecond": "amoroso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hateful", + "wordSecond": "odioso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "optimistic", + "wordSecond": "ottimista", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pessimistic", + "wordSecond": "pessimista", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "relaxed", + "wordSecond": "rilassato", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "stressed", + "wordSecond": "stressato", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sensitive", + "wordSecond": "sensibile", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "insensitive", + "wordSecond": "insensibile", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "trusting", + "wordSecond": "fiducioso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "suspicious", + "wordSecond": "sospettoso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "generous", + "wordSecond": "generoso", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "selfish", + "wordSecond": "egoista", + "createdAt": "2026-02-19T14:55:57.473Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_en_ja_A2.json b/output/2026_02_19_emotions_feelings_en_ja_A2.json new file mode 100644 index 0000000..9649839 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_en_ja_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:56:22.997Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "happy", + "wordSecond": "嬉しい (うれしい, ureshii)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sad", + "wordSecond": "悲しい (かなしい, kanashii)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "angry", + "wordSecond": "怒った (おこった, okotta)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "scared", + "wordSecond": "怖い (こわい, kowai)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "excited", + "wordSecond": "興奮した (こうふんした, koufun shita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "calm", + "wordSecond": "穏やかな (おだやかな, odayaka na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "worried", + "wordSecond": "心配な (しんぱいな, shinpai na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "proud", + "wordSecond": "誇らしい (ほこらしい, hokorashii)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "lonely", + "wordSecond": "寂しい (さびしい, sabishii)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "ashamed", + "wordSecond": "恥ずかしい (はずかしい, hazukashii)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "surprised", + "wordSecond": "驚いた (おどろいた, odoroi ta)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "confused", + "wordSecond": "混乱した (こんらんした, konran shita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bored", + "wordSecond": "退屈な (たいくつな, taikutsu na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "tired", + "wordSecond": "疲れた (つかれた, tsukareta)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "curious", + "wordSecond": "好奇心旺盛な (こうきしんおうせいな, koukishin ousei na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "grateful", + "wordSecond": "感謝している (かんしゃしている, kansha shiteiru)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "joyful", + "wordSecond": "喜ばしい (よろこばしい, yorokobashii)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "nervous", + "wordSecond": "緊張した (きんちょうした, kinchou shita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "relaxed", + "wordSecond": "リラックスした (りらっくすした, rirakkusu shita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "disappointed", + "wordSecond": "失望した (しつぼうした, shitsubou shita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "embarrassed", + "wordSecond": "恥ずかしい (はずかしい, hazukashii)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "jealous", + "wordSecond": "嫉妬した (しっとした, shitto shita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "guilty", + "wordSecond": "罪悪感がある (ざいあくかんがある, zaiakukan ga aru)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hopeful", + "wordSecond": "希望に満ちた (きぼうにみちた, kibou ni michita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "content", + "wordSecond": "満足した (まんぞくした, manzoku shita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "annoyed", + "wordSecond": "いらいらした (いらいらした, iraira shita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "frustrated", + "wordSecond": "欲求不満の (よっきゅうふまんの, yokkyuu fuman no)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "shy", + "wordSecond": "内気な (うちきな, uchiki na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "brave", + "wordSecond": "勇敢な (ゆうかんな, yuukan na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "peaceful", + "wordSecond": "平和な (へいわな, heiwa na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "anxious", + "wordSecond": "不安な (ふあんな, fuan na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "eager", + "wordSecond": "熱心な (ねっしんな, nesshin na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "amused", + "wordSecond": "面白がった (おもしろがった, omoshirogatta)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "determined", + "wordSecond": "決意した (けついした, ketsui shita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "enthusiastic", + "wordSecond": "熱狂的な (ねっきょうてきな, nekkyouteki na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "gloomy", + "wordSecond": "憂鬱な (ゆううつな, yuuutsu na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "impatient", + "wordSecond": "せっかちな (せっかちな, sekkachi na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "insecure", + "wordSecond": "不安定な (ふあんていな, fuantei na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "irritated", + "wordSecond": "イライラした (いらいらした, iraira shita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "loving", + "wordSecond": "愛情のある (あいじょうのある, aijou no aru)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "miserable", + "wordSecond": "惨めな (みじめな, mijime na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "optimistic", + "wordSecond": "楽観的な (らっかんてきな, rakkanteki na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pessimistic", + "wordSecond": "悲観的な (ひかんてきな, hikanteki na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pleased", + "wordSecond": "満足した (まんぞくした, manzoku shita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "regretful", + "wordSecond": "後悔している (こうかいしている, koukai shiteiru)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "relieved", + "wordSecond": "安心した (あんしんした, anshin shita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "satisfied", + "wordSecond": "満足した (まんぞくした, manzoku shita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "suspicious", + "wordSecond": "疑わしい (うたがわしい, utagawashii)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sympathetic", + "wordSecond": "同情的な (どうじょうてきな, doujouteki na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "terrified", + "wordSecond": "恐怖した (きょうふした, kyoufu shita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "thoughtful", + "wordSecond": "思慮深い (しりょぶかい, shiryobukai)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "uncomfortable", + "wordSecond": "不快な (ふかいな, fukai na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "upset", + "wordSecond": "動揺した (どうようした, douyou shita)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "vulnerable", + "wordSecond": "傷つきやすい (きずつきやすい, kizutsuki yasui)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "warm", + "wordSecond": "温かい (あたたかい, atatakai)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "weary", + "wordSecond": "疲れ果てた (つかれはてた, tsukare hateta)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "wonderful", + "wordSecond": "素晴らしい (すばらしい, subarashii)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "yearning", + "wordSecond": "憧れの (あこがれの, akogare no)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "zealous", + "wordSecond": "熱心な (ねっしんな, nesshin na)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "afraid", + "wordSecond": "恐れた (おそれた, osoreta)", + "createdAt": "2026-02-19T14:56:22.997Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_en_ko_A2.json b/output/2026_02_19_emotions_feelings_en_ko_A2.json new file mode 100644 index 0000000..006b3c6 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_en_ko_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:56:58.282Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "happy", + "wordSecond": "행복한 (haengbokhan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "joyful", + "wordSecond": "기쁜 (gippeun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "excited", + "wordSecond": "흥분한 (heungbunhan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "proud", + "wordSecond": "자랑스러운 (jarangseureoun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "calm", + "wordSecond": "차분한 (chabunhan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "grateful", + "wordSecond": "감사하는 (gamsahaneun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sad", + "wordSecond": "슬픈 (seulpeun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "angry", + "wordSecond": "화난 (hwanan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "scared", + "wordSecond": "무서운 (museoun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "worried", + "wordSecond": "걱정하는 (geokjeonghaneun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "lonely", + "wordSecond": "외로운 (oeroun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "ashamed", + "wordSecond": "부끄러운 (bukkeureoun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "surprised", + "wordSecond": "놀란 (nollan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "confused", + "wordSecond": "혼란스러운 (hollanseureoun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bored", + "wordSecond": "지루한 (jiruhan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "tired", + "wordSecond": "피곤한 (pigonhan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "curious", + "wordSecond": "호기심 많은 (hogisim maneun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "glad", + "wordSecond": "기쁜 (gippeun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pleased", + "wordSecond": "만족한 (manjokan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "content", + "wordSecond": "만족한 (manjokan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cheerful", + "wordSecond": "쾌활한 (kwaehwalhan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "delighted", + "wordSecond": "기쁜 (gippeun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "thrilled", + "wordSecond": "매우 흥분한 (maeu heungbunhan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "eager", + "wordSecond": "열망하는 (yeolmanghaneun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "hopeful", + "wordSecond": "희망적인 (huimangjeogin)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "optimistic", + "wordSecond": "낙관적인 (nakgwanjeogin)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "peaceful", + "wordSecond": "평화로운 (pyeonghwaroun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "relaxed", + "wordSecond": "편안한 (pyeonanhan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "thankful", + "wordSecond": "감사하는 (gamsahaneun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "appreciative", + "wordSecond": "감사하는 (gamsahaneun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "unhappy", + "wordSecond": "불행한 (bulhaenghan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "upset", + "wordSecond": "화난 (hwanan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "frustrated", + "wordSecond": "좌절한 (jwajeolhan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "annoyed", + "wordSecond": "짜증나는 (jjajeungnaneun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "furious", + "wordSecond": "격노한 (gyeongnohan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "afraid", + "wordSecond": "두려운 (duryeoun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "frightened", + "wordSecond": "무서운 (museoun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "anxious", + "wordSecond": "불안한 (buranhan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "nervous", + "wordSecond": "긴장한 (ginjanghan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "stressed", + "wordSecond": "스트레스 받는 (seuteureseu banneun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "depressed", + "wordSecond": "우울한 (uulhan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "disappointed", + "wordSecond": "실망한 (silmanghan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "guilty", + "wordSecond": "죄책감 있는 (joechaekgam inneun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "embarrassed", + "wordSecond": "당황한 (danghwanghan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "jealous", + "wordSecond": "질투하는 (jiltuhaneun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "envious", + "wordSecond": "부러워하는 (bureowohaneun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "shocked", + "wordSecond": "충격받은 (chunggyeokbadeun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "amazed", + "wordSecond": "놀란 (nollan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "astonished", + "wordSecond": "놀란 (nollan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "puzzled", + "wordSecond": "혼란스러운 (hollanseureoun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "perplexed", + "wordSecond": "당황한 (danghwanghan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "indifferent", + "wordSecond": "무관심한 (mugwansimhan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "apathetic", + "wordSecond": "무관심한 (mugwansimhan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sleepy", + "wordSecond": "졸린 (jollin)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "exhausted", + "wordSecond": "지친 (jichin)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "weary", + "wordSecond": "피곤한 (pigonhan)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "interested", + "wordSecond": "관심 있는 (gwansim inneun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "intrigued", + "wordSecond": "호기심을 느끼는 (hogisimeul neukkineun)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "fascinated", + "wordSecond": "매료된 (maeryodoen)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "enthusiastic", + "wordSecond": "열정적인 (yeoljeongjeogin)", + "createdAt": "2026-02-19T14:56:58.282Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_en_pl_A2.json b/output/2026_02_19_emotions_feelings_en_pl_A2.json new file mode 100644 index 0000000..ca62b61 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_en_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:57:11.662Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "happy", + "wordSecond": "szczęśliwy", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sad", + "wordSecond": "smutny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "angry", + "wordSecond": "zły", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "scared", + "wordSecond": "przestraszony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "excited", + "wordSecond": "podekscytowany", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "worried", + "wordSecond": "zmartwiony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "calm", + "wordSecond": "spokojny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "proud", + "wordSecond": "dumny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "lonely", + "wordSecond": "samotny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "surprised", + "wordSecond": "zaskoczony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "tired", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bored", + "wordSecond": "znudzony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "confused", + "wordSecond": "zdezorientowany", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "grateful", + "wordSecond": "wdzięczny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "ashamed", + "wordSecond": "zawstydzony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "curious", + "wordSecond": "ciekawy", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "joyful", + "wordSecond": "radosny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "nervous", + "wordSecond": "nerwowy", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "afraid", + "wordSecond": "przerażony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "disappointed", + "wordSecond": "rozczarowany", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "content", + "wordSecond": "zadowolony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "frustrated", + "wordSecond": "sfrustrowany", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "embarrassed", + "wordSecond": "zażenowany", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "jealous", + "wordSecond": "zazdrosny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "guilty", + "wordSecond": "winny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "hopeful", + "wordSecond": "pełen nadziei", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "peaceful", + "wordSecond": "spokojny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "annoyed", + "wordSecond": "poirytowany", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "shy", + "wordSecond": "nieśmiały", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "enthusiastic", + "wordSecond": "entuzjastyczny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "miserable", + "wordSecond": "nieszczęśliwy", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "relaxed", + "wordSecond": "zrelaksowany", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "stressed", + "wordSecond": "zestresowany", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "satisfied", + "wordSecond": "zaspokojony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "impatient", + "wordSecond": "niecierpliwy", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "optimistic", + "wordSecond": "optymistyczny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pessimistic", + "wordSecond": "pesymistyczny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "frightened", + "wordSecond": "przestraszony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cheerful", + "wordSecond": "pogodny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "depressed", + "wordSecond": "przygnębiony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "anxious", + "wordSecond": "niespokojny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "eager", + "wordSecond": "chętny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "hurt", + "wordSecond": "zraniony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "loving", + "wordSecond": "kochający", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "mad", + "wordSecond": "wściekły", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pleased", + "wordSecond": "zadowolony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "suspicious", + "wordSecond": "podejrzliwy", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "terrified", + "wordSecond": "przerażony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "upset", + "wordSecond": "zdenerwowany", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "amused", + "wordSecond": "rozbawiony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bitter", + "wordSecond": "gorzki", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "confident", + "wordSecond": "pewny siebie", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "delighted", + "wordSecond": "zachwycony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "envious", + "wordSecond": "zazdrosny", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "furious", + "wordSecond": "wściekły", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "gloomy", + "wordSecond": "ponury", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "horrified", + "wordSecond": "przerażony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "irritated", + "wordSecond": "podrażniony", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "jolly", + "wordSecond": "wesoły", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "kind", + "wordSecond": "życzliwy", + "createdAt": "2026-02-19T14:57:11.662Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_en_pt_A2.json b/output/2026_02_19_emotions_feelings_en_pt_A2.json new file mode 100644 index 0000000..b533ebd --- /dev/null +++ b/output/2026_02_19_emotions_feelings_en_pt_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:55:21.599Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "happy", + "wordSecond": "feliz", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sad", + "wordSecond": "triste", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "angry", + "wordSecond": "bravo", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "scared", + "wordSecond": "assustado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "excited", + "wordSecond": "animado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "calm", + "wordSecond": "calmo", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "proud", + "wordSecond": "orgulhoso", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "grateful", + "wordSecond": "grato", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "worried", + "wordSecond": "preocupado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lonely", + "wordSecond": "solitário", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ashamed", + "wordSecond": "envergonhado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "surprised", + "wordSecond": "surpreso", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "confused", + "wordSecond": "confuso", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bored", + "wordSecond": "entediado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tired", + "wordSecond": "cansado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "curious", + "wordSecond": "curioso", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "joyful", + "wordSecond": "alegre", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "nervous", + "wordSecond": "nervoso", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "afraid", + "wordSecond": "com medo", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "disappointed", + "wordSecond": "decepcionado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "embarrassed", + "wordSecond": "constrangido", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "guilty", + "wordSecond": "culpado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hopeful", + "wordSecond": "esperançoso", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "jealous", + "wordSecond": "ciumento", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "peaceful", + "wordSecond": "pacífico", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "relaxed", + "wordSecond": "relaxado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "satisfied", + "wordSecond": "satisfeito", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shy", + "wordSecond": "tímido", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stressed", + "wordSecond": "estressado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "upset", + "wordSecond": "chateado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "annoyed", + "wordSecond": "irritado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "anxious", + "wordSecond": "ansioso", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "content", + "wordSecond": "contente", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "depressed", + "wordSecond": "deprimido", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "eager", + "wordSecond": "ansioso", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "enthusiastic", + "wordSecond": "entusiasmado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "frustrated", + "wordSecond": "frustrado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "furious", + "wordSecond": "furioso", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "glad", + "wordSecond": "contente", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "gloomy", + "wordSecond": "melancólico", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "happy", + "wordSecond": "alegre", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hurt", + "wordSecond": "machucado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "impatient", + "wordSecond": "impaciente", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "in love", + "wordSecond": "apaixonado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "insecure", + "wordSecond": "inseguro", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "irritated", + "wordSecond": "irritado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "joyful", + "wordSecond": "feliz", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "loving", + "wordSecond": "amoroso", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "miserable", + "wordSecond": "miserável", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "optimistic", + "wordSecond": "otimista", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pessimistic", + "wordSecond": "pessimista", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pleased", + "wordSecond": "satisfeito", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "proud", + "wordSecond": "orgulhoso", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "relieved", + "wordSecond": "aliviado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sad", + "wordSecond": "triste", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "scared", + "wordSecond": "amedrontado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shocked", + "wordSecond": "chocado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "silly", + "wordSecond": "bobo", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "suspicious", + "wordSecond": "desconfiado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "terrified", + "wordSecond": "aterrorizado", + "createdAt": "2026-02-19T14:55:21.599Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_en_zh_A2.json b/output/2026_02_19_emotions_feelings_en_zh_A2.json new file mode 100644 index 0000000..e4e41a3 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_en_zh_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:56:38.014Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "happy", + "wordSecond": "高兴 (gao xing)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sad", + "wordSecond": "伤心 (shang xin)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "angry", + "wordSecond": "生气 (sheng qi)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "scared", + "wordSecond": "害怕 (hai pa)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "excited", + "wordSecond": "兴奋 (xing fen)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "worried", + "wordSecond": "担心 (dan xin)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "calm", + "wordSecond": "平静 (ping jing)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "surprised", + "wordSecond": "惊讶 (jing ya)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "proud", + "wordSecond": "骄傲 (jiao ao)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "lonely", + "wordSecond": "孤独 (gu du)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "grateful", + "wordSecond": "感激 (gan ji)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "confused", + "wordSecond": "困惑 (kun huo)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bored", + "wordSecond": "无聊 (wu liao)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "tired", + "wordSecond": "累 (lei)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "curious", + "wordSecond": "好奇 (hao qi)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "ashamed", + "wordSecond": "羞愧 (xiu kui)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "joyful", + "wordSecond": "快乐 (kuai le)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "nervous", + "wordSecond": "紧张 (jin zhang)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "relaxed", + "wordSecond": "放松 (fang song)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "disappointed", + "wordSecond": "失望 (shi wang)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "content", + "wordSecond": "满足 (man zu)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "frustrated", + "wordSecond": "沮丧 (ju sang)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hopeful", + "wordSecond": "有希望 (you xi wang)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "jealous", + "wordSecond": "嫉妒 (ji du)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "embarrassed", + "wordSecond": "尴尬 (gan ga)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "guilty", + "wordSecond": "内疚 (nei jiu)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "peaceful", + "wordSecond": "安宁 (an ning)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "annoyed", + "wordSecond": "烦恼 (fan nao)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "eager", + "wordSecond": "渴望 (ke wang)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "shy", + "wordSecond": "害羞 (hai xiu)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "brave", + "wordSecond": "勇敢 (yong gan)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "afraid", + "wordSecond": "恐惧 (kong ju)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "silly", + "wordSecond": "傻 (sha)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "serious", + "wordSecond": "严肃 (yan su)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "friendly", + "wordSecond": "友好 (you hao)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "unhappy", + "wordSecond": "不开心 (bu kai xin)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "loving", + "wordSecond": "有爱 (you ai)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hurt", + "wordSecond": "受伤 (shou shang)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "strong", + "wordSecond": "坚强 (jian qiang)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "weak", + "wordSecond": "虚弱 (xu ruo)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "comfortable", + "wordSecond": "舒服 (shu fu)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "uncomfortable", + "wordSecond": "不舒服 (bu shu fu)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "safe", + "wordSecond": "安全 (an quan)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "unsafe", + "wordSecond": "不安全 (bu an quan)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pleased", + "wordSecond": "高兴 (gao xing)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "upset", + "wordSecond": "难过 (nan guo)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cheerful", + "wordSecond": "愉快 (yu kuai)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "miserable", + "wordSecond": "痛苦 (tong ku)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "optimistic", + "wordSecond": "乐观 (le guan)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pessimistic", + "wordSecond": "悲观 (bei guan)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "patient", + "wordSecond": "耐心 (nai xin)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "impatient", + "wordSecond": "不耐烦 (bu nai fan)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "confident", + "wordSecond": "自信 (zi xin)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "insecure", + "wordSecond": "不自信 (bu zi xin)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "energetic", + "wordSecond": "有活力 (you huo li)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "lazy", + "wordSecond": "懒 (lan)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "interested", + "wordSecond": "感兴趣 (gan xing qu)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "disinterested", + "wordSecond": "不感兴趣 (bu gan xing qu)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "thankful", + "wordSecond": "感谢 (gan xie)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sympathetic", + "wordSecond": "同情 (tong qing)", + "createdAt": "2026-02-19T14:56:38.014Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_es_de_A2.json b/output/2026_02_19_emotions_feelings_es_de_A2.json new file mode 100644 index 0000000..4fa30e3 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_es_de_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:57:39.090Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "feliz", + "wordSecond": "glücklich", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "triste", + "wordSecond": "traurig", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "enojado", + "wordSecond": "wütend", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "asustado", + "wordSecond": "ängstlich", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "preocupado", + "wordSecond": "besorgt", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "solo", + "wordSecond": "einsam", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "avergonzado", + "wordSecond": "beschämt", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sorprendido", + "wordSecond": "überrascht", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "confundido", + "wordSecond": "verwirrt", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "aburrido", + "wordSecond": "gelangweilt", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cansado", + "wordSecond": "müde", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "curioso", + "wordSecond": "neugierig", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "alegre", + "wordSecond": "fröhlich", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "emocionado", + "wordSecond": "aufgeregt", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "orgulloso", + "wordSecond": "stolz", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tranquilo", + "wordSecond": "ruhig", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "agradecido", + "wordSecond": "dankbar", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "contento", + "wordSecond": "zufrieden", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "nervioso", + "wordSecond": "nervös", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "celoso", + "wordSecond": "eifersüchtig", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "impaciente", + "wordSecond": "ungeduldig", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "esperanzado", + "wordSecond": "hoffnungsvoll", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "entusiasmado", + "wordSecond": "begeistert", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "relajado", + "wordSecond": "entspannt", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "asombrado", + "wordSecond": "erstaunt", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "molesto", + "wordSecond": "verärgert", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "enfadado", + "wordSecond": "ärgerlich", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "temeroso", + "wordSecond": "furchtsam", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ansioso", + "wordSecond": "ängstlich", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "desanimado", + "wordSecond": "entmutigt", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "deprimido", + "wordSecond": "deprimiert", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "frustrado", + "wordSecond": "frustriert", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "culpable", + "wordSecond": "schuldig", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "inseguro", + "wordSecond": "unsicher", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "averiado", + "wordSecond": "kaputt", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "enamorado", + "wordSecond": "verliebt", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "paciente", + "wordSecond": "geduldig", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "seguro", + "wordSecond": "sicher", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "optimista", + "wordSecond": "optimistisch", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pesimista", + "wordSecond": "pessimistisch", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "satisfecho", + "wordSecond": "zufrieden", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "disgustado", + "wordSecond": "angeekelt", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "harto", + "wordSecond": "satt", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sensible", + "wordSecond": "empfindlich", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tímido", + "wordSecond": "schüchtern", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "valiente", + "wordSecond": "mutig", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "débil", + "wordSecond": "schwach", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "fuerte", + "wordSecond": "stark", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "interesado", + "wordSecond": "interessiert", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "indiferente", + "wordSecond": "gleichgültig", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "emocional", + "wordSecond": "emotional", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sereno", + "wordSecond": "gelassen", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "aliviado", + "wordSecond": "erleichtert", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "desconcertado", + "wordSecond": "verblüfft", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "desilusionado", + "wordSecond": "enttäuscht", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "encantado", + "wordSecond": "entzückt", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "exhausto", + "wordSecond": "erschöpft", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "furioso", + "wordSecond": "wütend", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "irritado", + "wordSecond": "gereizt", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "melancólico", + "wordSecond": "melancholisch", + "createdAt": "2026-02-19T14:57:39.090Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_es_fr_A2.json b/output/2026_02_19_emotions_feelings_es_fr_A2.json new file mode 100644 index 0000000..2ffda60 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_es_fr_A2.json @@ -0,0 +1,687 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:57:52.272Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "feliz", + "wordSecond": "heureux", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "triste", + "wordSecond": "triste", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "enojado", + "wordSecond": "en colère", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "asustado", + "wordSecond": "effrayé", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "emocionado", + "wordSecond": "excité", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "preocupado", + "wordSecond": "inquiet", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sorprendido", + "wordSecond": "surpris", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "confundido", + "wordSecond": "confus", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "aburrido", + "wordSecond": "ennuyé", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cansado", + "wordSecond": "fatigué", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "orgulloso", + "wordSecond": "fier", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "calmado", + "wordSecond": "calme", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "agradecido", + "wordSecond": "reconnaissant", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "solitario", + "wordSecond": "seul", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "avergonzado", + "wordSecond": "honteux", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "curioso", + "wordSecond": "curieux", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "alegre", + "wordSecond": "joyeux", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "contento", + "wordSecond": "content", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "furioso", + "wordSecond": "furieux", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tímido", + "wordSecond": "timide", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nervioso", + "wordSecond": "nerveux", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "relajado", + "wordSecond": "détendu", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "impaciente", + "wordSecond": "impatient", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "celoso", + "wordSecond": "jaloux", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "enamorado", + "wordSecond": "amoureux", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "esperanzado", + "wordSecond": "plein d'espoir", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "desilusionado", + "wordSecond": "déçu", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "asombrado", + "wordSecond": "étonné", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "molesto", + "wordSecond": "contrarié", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ansioso", + "wordSecond": "anxieux", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "satisfecho", + "wordSecond": "satisfait", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "incómodo", + "wordSecond": "mal à l'aise", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "entusiasmado", + "wordSecond": "enthousiaste", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "deprimido", + "wordSecond": "déprimé", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "enfadado", + "wordSecond": "fâché", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tranquilo", + "wordSecond": "tranquille", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "agobiado", + "wordSecond": "submergé", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "emocionante", + "wordSecond": "passionnant", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "paciente", + "wordSecond": "patient", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "optimista", + "wordSecond": "optimiste", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pesimista", + "wordSecond": "pessimiste", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "seguro", + "wordSecond": "confiant", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "inseguro", + "wordSecond": "incertain", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "agotado", + "wordSecond": "épuisé", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sensible", + "wordSecond": "sensible", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "irritado", + "wordSecond": "irrité", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "aliviado", + "wordSecond": "soulagé", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "averiado", + "wordSecond": "brisé", + "createdAt": "2026-02-19T14:57:52.272Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_es_it_A2.json b/output/2026_02_19_emotions_feelings_es_it_A2.json new file mode 100644 index 0000000..917a9f3 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_es_it_A2.json @@ -0,0 +1,781 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:58:05.211Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "feliz", + "wordSecond": "felice", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "triste", + "wordSecond": "triste", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "enojado", + "wordSecond": "arrabbiato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "asustado", + "wordSecond": "spaventato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "preocupado", + "wordSecond": "preoccupato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "solo", + "wordSecond": "solo", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "avergonzado", + "wordSecond": "vergognoso", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "alegre", + "wordSecond": "gioioso", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "emocionado", + "wordSecond": "emozionato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "orgulloso", + "wordSecond": "orgoglioso", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tranquilo", + "wordSecond": "tranquillo", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "agradecido", + "wordSecond": "grato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sorprendido", + "wordSecond": "sorpreso", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "confundido", + "wordSecond": "confuso", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "aburrido", + "wordSecond": "annoiato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cansado", + "wordSecond": "stanco", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "curioso", + "wordSecond": "curioso", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "contento", + "wordSecond": "contento", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "deprimido", + "wordSecond": "depresso", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "furioso", + "wordSecond": "furioso", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nervioso", + "wordSecond": "nervoso", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ansioso", + "wordSecond": "ansioso", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "celoso", + "wordSecond": "geloso", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "enamorado", + "wordSecond": "innamorato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "esperanzado", + "wordSecond": "speranzoso", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "entusiasmado", + "wordSecond": "entusiasta", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "satisfecho", + "wordSecond": "soddisfatto", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "relajado", + "wordSecond": "rilassato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pacífico", + "wordSecond": "pacifico", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sereno", + "wordSecond": "sereno", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "molesto", + "wordSecond": "seccato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "irritado", + "wordSecond": "irritato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "enfadado", + "wordSecond": "arrabbiato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "temeroso", + "wordSecond": "timoroso", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "aterrado", + "wordSecond": "terrorizzato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "asqueado", + "wordSecond": "disgustato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "desilusionado", + "wordSecond": "deluso", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "desesperado", + "wordSecond": "disperato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "impaciente", + "wordSecond": "impaziente", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "inseguro", + "wordSecond": "insicuro", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "culpable", + "wordSecond": "colpevole", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "humillado", + "wordSecond": "umiliato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "eufórico", + "wordSecond": "euforico", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "encantado", + "wordSecond": "incantato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "optimista", + "wordSecond": "ottimista", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pesimista", + "wordSecond": "pessimista", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "indiferente", + "wordSecond": "indifferente", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "desinteresado", + "wordSecond": "disinteressato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "perplejo", + "wordSecond": "perplesso", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "desconcertado", + "wordSecond": "sconcertato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "agotado", + "wordSecond": "sfinito", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "exhausto", + "wordSecond": "esausto", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "somnoliento", + "wordSecond": "assonnato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "atónito", + "wordSecond": "stupefatto", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "maravillado", + "wordSecond": "meravigliato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "impresionado", + "wordSecond": "impressionato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "aliviado", + "wordSecond": "sollevato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "averiado", + "wordSecond": "danneggiato", + "createdAt": "2026-02-19T14:58:05.211Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_es_ja_A2.json b/output/2026_02_19_emotions_feelings_es_ja_A2.json new file mode 100644 index 0000000..d3b91ac --- /dev/null +++ b/output/2026_02_19_emotions_feelings_es_ja_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:58:30.957Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "feliz", + "wordSecond": "嬉しい (うれしい, ureshii)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "contento", + "wordSecond": "楽しい (たのしい, tanoshii)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "alegre", + "wordSecond": "喜ばしい (よろこばしい, yorokobashii)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "emocionado", + "wordSecond": "興奮した (こうふんした, koufun shita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "orgulloso", + "wordSecond": "誇り高い (ほこりたかい, hokori takai)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tranquilo", + "wordSecond": "穏やかな (おだやかな, odayaka na)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "agradecido", + "wordSecond": "感謝している (かんしゃしている, kansha shiteiru)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "amoroso", + "wordSecond": "愛しい (いとしい, itoshii)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "esperanzado", + "wordSecond": "希望に満ちた (きぼうにみちた, kibou ni michita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "satisfecho", + "wordSecond": "満足した (まんぞくした, manzoku shita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "entusiasmado", + "wordSecond": "熱心な (ねっしんな, nesshin na)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "encantado", + "wordSecond": "喜んで (よろこんで, yorokonde)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "optimista", + "wordSecond": "楽観的な (らっかんてきな, rakkan teki na)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pacífico", + "wordSecond": "平和な (へいわな, heiwa na)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "relajado", + "wordSecond": "リラックスした (りらっくすした, rirakkusu shita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "triste", + "wordSecond": "悲しい (かなしい, kanashii)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "enojado", + "wordSecond": "怒った (おこった, okotta)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "enfadado", + "wordSecond": "腹を立てた (はらをたてた, hara o tateta)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "asustado", + "wordSecond": "怖がった (こわがった, kowagatta)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "preocupado", + "wordSecond": "心配した (しんぱいした, shinpai shita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "solitario", + "wordSecond": "孤独な (こどくな, kodoku na)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "avergonzado", + "wordSecond": "恥ずかしい (はずかしい, hazukashii)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "celoso", + "wordSecond": "嫉妬深い (しっとぶかい, shitto bukai)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "nervioso", + "wordSecond": "緊張した (きんちょうした, kinchou shita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "frustrado", + "wordSecond": "欲求不満の (よっきゅうふまんの, yokkyuu fuman no)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ansioso", + "wordSecond": "不安な (ふあんな, fuan na)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "deprimido", + "wordSecond": "落ち込んだ (おちこんだ, ochikonda)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "molesto", + "wordSecond": "迷惑な (めいわくな, meiwaku na)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "temeroso", + "wordSecond": "恐れた (おそれた, osoreta)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "desanimado", + "wordSecond": "がっかりした (がっかりした, gakkari shita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sorprendido", + "wordSecond": "驚いた (おどろいた, odoroita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "confundido", + "wordSecond": "混乱した (こんらんした, konran shita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "aburrido", + "wordSecond": "退屈な (たいくつな, taikutsu na)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cansado", + "wordSecond": "疲れた (つかれた, tsukareta)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "curioso", + "wordSecond": "好奇心旺盛な (こうきしんおうせいな, koukishin ousei na)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "indiferente", + "wordSecond": "無関心な (むかんしんな, mukanshin na)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pensativo", + "wordSecond": "思案に暮れた (しあんにくれた, shian ni kureta)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "perplejo", + "wordSecond": "当惑した (とうわくした, touwaku shita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "asombrado", + "wordSecond": "驚嘆した (きょうたんした, kyoutan shita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "desconcertado", + "wordSecond": "困惑した (こんわくした, konwaku shita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "emocionante", + "wordSecond": "ワクワクする (わくわくする, wakuwaku suru)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cariñoso", + "wordSecond": "優しい (やさしい, yasashii)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "amable", + "wordSecond": "親切な (しんせつな, shinsetsu na)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "simpático", + "wordSecond": "感じの良い (かんじのよい, kanji no yoi)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "agradable", + "wordSecond": "愉快な (ゆかいな, yukai na)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sereno", + "wordSecond": "静かな (しずかな, shizuka na)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sosegado", + "wordSecond": "落ち着いた (おちついた, ochitsuita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "melancólico", + "wordSecond": "物悲しい (ものかなしい, mono kanashii)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "irritado", + "wordSecond": "イライラした (いらいらした, iraira shita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "furioso", + "wordSecond": "激怒した (げきどした, gekido shita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "aterrorizado", + "wordSecond": "恐怖に襲われた (きょうふにおそわれた, kyoufu ni osowareta)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "asqueado", + "wordSecond": "うんざりした (うんざりした, unzari shita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "desesperado", + "wordSecond": "絶望的な (ぜつぼうてきな, zetsubou teki na)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "inseguro", + "wordSecond": "自信のない (じしんのない, jishin no nai)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "culpable", + "wordSecond": "罪悪感のある (ざいあくかんのある, zaiaku kan no aru)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "avergonzado", + "wordSecond": "恥じた (はじた, hajita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sorprendido", + "wordSecond": "びっくりした (びっくりした, bikkuri shita)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "confuso", + "wordSecond": "わからない (わからない, wakaranai)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "aburrido", + "wordSecond": "つまらない (つまらない, tsumaranai)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cansado", + "wordSecond": "くたびれた (くたびれた, kutabireta)", + "createdAt": "2026-02-19T14:58:30.957Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_es_ko_A2.json b/output/2026_02_19_emotions_feelings_es_ko_A2.json new file mode 100644 index 0000000..7a73a78 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_es_ko_A2.json @@ -0,0 +1,592 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:59:46.918Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "feliz", + "wordSecond": "기쁘다 (gippeuda)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "alegre", + "wordSecond": "즐겁다 (jeulgeopda)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "emocionado", + "wordSecond": "신나다 (sinnada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "orgulloso", + "wordSecond": "자랑스럽다 (jarangseureopda)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tranquilo", + "wordSecond": "차분하다 (chabunhada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "agradecido", + "wordSecond": "감사하다 (gamsahada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "contento", + "wordSecond": "행복하다 (haengbokhada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "satisfecho", + "wordSecond": "만족하다 (manjokada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "esperanzado", + "wordSecond": "희망적이다 (huimangjeogida)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "entusiasmado", + "wordSecond": "열정적이다 (yeoljeongjeogida)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "triste", + "wordSecond": "슬프다 (seulpeuda)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "enojado", + "wordSecond": "화나다 (hwanada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "asustado", + "wordSecond": "무섭다 (museopda)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "preocupado", + "wordSecond": "걱정하다 (geokjeonghada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "solo", + "wordSecond": "외롭다 (oeropda)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "avergonzado", + "wordSecond": "부끄럽다 (bukkeureopda)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "enfadado", + "wordSecond": "화내다 (hwanaeda)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "temeroso", + "wordSecond": "두렵다 (duryeopda)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ansioso", + "wordSecond": "불안하다 (buranhada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "celoso", + "wordSecond": "질투하다 (jiltuhada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sorprendido", + "wordSecond": "놀라다 (nollada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "confundido", + "wordSecond": "혼란스럽다 (hollanseureopda)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "aburrido", + "wordSecond": "지루하다 (jiruhada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cansado", + "wordSecond": "피곤하다 (pigonhada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "curioso", + "wordSecond": "호기심이 많다 (hogisimi manta)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "nervioso", + "wordSecond": "긴장하다 (ginjanghada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "impaciente", + "wordSecond": "조급하다 (jogeupada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "relajado", + "wordSecond": "편안하다 (pyeonanhada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "amoroso", + "wordSecond": "사랑스럽다 (sarangseureopda)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "paciente", + "wordSecond": "인내심이 있다 (innaesimi itda)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "optimista", + "wordSecond": "낙관적이다 (nakgwanjeogida)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pesimista", + "wordSecond": "비관적이다 (bigwanjeogida)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "emocionante", + "wordSecond": "흥미롭다 (heungmiropda)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "interesado", + "wordSecond": "관심이 있다 (gwansimi itda)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "desilusionado", + "wordSecond": "실망하다 (silmanghada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "frustrado", + "wordSecond": "좌절하다 (jwajeolhada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "aliviado", + "wordSecond": "안심하다 (ansimhada)", + "createdAt": "2026-02-19T14:59:46.918Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_es_pl_A2.json b/output/2026_02_19_emotions_feelings_es_pl_A2.json new file mode 100644 index 0000000..06dd727 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_es_pl_A2.json @@ -0,0 +1,786 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:00:00.773Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "feliz", + "wordSecond": "szczęśliwy", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "contento", + "wordSecond": "zadowolony", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "alegre", + "wordSecond": "radosny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "emocionado", + "wordSecond": "podekscytowany", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "orgulloso", + "wordSecond": "dumny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tranquilo", + "wordSecond": "spokojny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "agradecido", + "wordSecond": "wdzięczny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "amoroso", + "wordSecond": "kochający", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "esperanzado", + "wordSecond": "pełen nadziei", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "entusiasmado", + "wordSecond": "entuzjastyczny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "satisfecho", + "wordSecond": "zadowolony", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "relajado", + "wordSecond": "zrelaksowany", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "triste", + "wordSecond": "smutny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "enojado", + "wordSecond": "zły", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "enfadado", + "wordSecond": "rozzłoszczony", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "asustado", + "wordSecond": "przestraszony", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "preocupado", + "wordSecond": "zmartwiony", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "solitario", + "wordSecond": "samotny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "avergonzado", + "wordSecond": "zawstydzony", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "celoso", + "wordSecond": "zazdrosny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "nervioso", + "wordSecond": "nerwowy", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "frustrado", + "wordSecond": "sfrustrowany", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "molesto", + "wordSecond": "poirytowany", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cansado", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "aburrido", + "wordSecond": "znudzony", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sorprendido", + "wordSecond": "zaskoczony", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "confundido", + "wordSecond": "zmieszany", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "curioso", + "wordSecond": "ciekawy", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "impaciente", + "wordSecond": "niecierpliwy", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "emocionante", + "wordSecond": "ekscytujący", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "paciente", + "wordSecond": "cierpliwy", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "valiente", + "wordSecond": "odważny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tímido", + "wordSecond": "nieśmiały", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "seguro", + "wordSecond": "pewny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "inseguro", + "wordSecond": "niepewny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "optimista", + "wordSecond": "optymistyczny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pesimista", + "wordSecond": "pesymistyczny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sereno", + "wordSecond": "pogodny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ansioso", + "wordSecond": "niespokojny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "asombrado", + "wordSecond": "zdumiony", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "encantado", + "wordSecond": "zachwycony", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "enamorado", + "wordSecond": "zakochany", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "eufórico", + "wordSecond": "euforyczny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "furioso", + "wordSecond": "wściekły", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "harto", + "wordSecond": "znudzony", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ilusionado", + "wordSecond": "rozradowany", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "impresionado", + "wordSecond": "pod wrażeniem", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "indiferente", + "wordSecond": "obojętny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "irritado", + "wordSecond": "podrażniony", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "melancólico", + "wordSecond": "melancholijny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "nostálgico", + "wordSecond": "nostalgiczny", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "perplejo", + "wordSecond": "zaskoczony", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "resignado", + "wordSecond": "pogodzony", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sensible", + "wordSecond": "wrażliwy", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sincero", + "wordSecond": "szczery", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "suspicaz", + "wordSecond": "podejrzliwy", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tenso", + "wordSecond": "spięty", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "turbado", + "wordSecond": "zakłopotany", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "vulnerable", + "wordSecond": "wrażliwy", + "createdAt": "2026-02-19T15:00:00.773Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_es_pt_A2.json b/output/2026_02_19_emotions_feelings_es_pt_A2.json new file mode 100644 index 0000000..0ea7da3 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_es_pt_A2.json @@ -0,0 +1,606 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:57:25.676Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "feliz", + "wordSecond": "feliz", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alegre", + "wordSecond": "alegre", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "emocionado", + "wordSecond": "animado", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "orgulloso", + "wordSecond": "orgulhoso", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tranquilo", + "wordSecond": "calmo", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "agradecido", + "wordSecond": "grato", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "contento", + "wordSecond": "contente", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "satisfecho", + "wordSecond": "satisfeito", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "entusiasmado", + "wordSecond": "entusiasmado", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "esperanzado", + "wordSecond": "esperançoso", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "optimista", + "wordSecond": "otimista", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "encantado", + "wordSecond": "encantado", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "triste", + "wordSecond": "triste", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "enojado", + "wordSecond": "bravo", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "enfadado", + "wordSecond": "zangado", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "asustado", + "wordSecond": "assustado", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "preocupado", + "wordSecond": "preocupado", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "solitario", + "wordSecond": "solitário", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "avergonzado", + "wordSecond": "envergonhado", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "celoso", + "wordSecond": "ciumento", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nervioso", + "wordSecond": "nervoso", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ansioso", + "wordSecond": "ansioso", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "frustrado", + "wordSecond": "frustrado", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "decepcionado", + "wordSecond": "decepcionado", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "culpable", + "wordSecond": "culpado", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sorprendido", + "wordSecond": "surpreso", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "confundido", + "wordSecond": "confuso", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aburrido", + "wordSecond": "entediado", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cansado", + "wordSecond": "cansado", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "curioso", + "wordSecond": "curioso", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hambriento", + "wordSecond": "faminto", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sediento", + "wordSecond": "sedento", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "enamorado", + "wordSecond": "apaixonado", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "impaciente", + "wordSecond": "impaciente", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "relajado", + "wordSecond": "relaxado", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "emocionante", + "wordSecond": "emocionante", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "paciente", + "wordSecond": "paciente", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "seguro", + "wordSecond": "seguro", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "inseguro", + "wordSecond": "inseguro", + "createdAt": "2026-02-19T14:57:25.676Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_es_zh_A2.json b/output/2026_02_19_emotions_feelings_es_zh_A2.json new file mode 100644 index 0000000..3255579 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_es_zh_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:59:22.808Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "feliz", + "wordSecond": "快乐 (kuài lè)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "alegre", + "wordSecond": "高兴 (gāo xìng)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "emocionado", + "wordSecond": "兴奋 (xīng fèn)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "orgulloso", + "wordSecond": "骄傲 (jiāo ào)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tranquilo", + "wordSecond": "平静 (píng jìng)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "agradecido", + "wordSecond": "感激 (gǎn jī)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "contento", + "wordSecond": "开心 (kāi xīn)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "satisfecho", + "wordSecond": "满意 (mǎn yì)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "esperanzado", + "wordSecond": "有希望 (yǒu xī wàng)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "amoroso", + "wordSecond": "有爱 (yǒu ài)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "entusiasmado", + "wordSecond": "热情 (rè qíng)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "paciente", + "wordSecond": "耐心 (nài xīn)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "relajado", + "wordSecond": "放松 (fàng sōng)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "seguro", + "wordSecond": "安全 (ān quán)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "valiente", + "wordSecond": "勇敢 (yǒng gǎn)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "triste", + "wordSecond": "悲伤 (bēi shāng)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "enojado", + "wordSecond": "生气 (shēng qì)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "enfadado", + "wordSecond": "愤怒 (fèn nù)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "asustado", + "wordSecond": "害怕 (hài pà)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "preocupado", + "wordSecond": "担心 (dān xīn)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "solitario", + "wordSecond": "孤独 (gū dú)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "avergonzado", + "wordSecond": "羞愧 (xiū kuì)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "celoso", + "wordSecond": "嫉妒 (jí dù)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nervioso", + "wordSecond": "紧张 (jǐn zhāng)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "molesto", + "wordSecond": "烦恼 (fán nǎo)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cansado", + "wordSecond": "累 (lèi)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "aburrido", + "wordSecond": "无聊 (wú liáo)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "confundido", + "wordSecond": "困惑 (kùn huò)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sorprendido", + "wordSecond": "惊讶 (jīng yà)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "curioso", + "wordSecond": "好奇 (hào qí)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "impaciente", + "wordSecond": "不耐烦 (bú nài fán)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ansioso", + "wordSecond": "焦虑 (jiāo lǜ)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "desilusionado", + "wordSecond": "失望 (shī wàng)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "culpable", + "wordSecond": "内疚 (nèi jiù)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "frustrado", + "wordSecond": "沮丧 (jǔ sàng)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "asombrado", + "wordSecond": "惊奇 (jīng qí)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "débil", + "wordSecond": "虚弱 (xū ruò)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "enérgico", + "wordSecond": "精力充沛 (jīng lì chōng pèi)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "optimista", + "wordSecond": "乐观 (lè guān)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pesimista", + "wordSecond": "悲观 (bēi guān)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sereno", + "wordSecond": "宁静 (níng jìng)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "emocionante", + "wordSecond": "激动 (jī dòng)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "encantado", + "wordSecond": "高兴 (gāo xìng)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "eufórico", + "wordSecond": "狂喜 (kuáng xǐ)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "melancólico", + "wordSecond": "忧郁 (yōu yù)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nostálgico", + "wordSecond": "怀旧 (huái jiù)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "resignado", + "wordSecond": "无奈 (wú nài)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sensible", + "wordSecond": "敏感 (mǐn gǎn)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tímido", + "wordSecond": "害羞 (hài xiū)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "valiente", + "wordSecond": "勇敢 (yǒng gǎn)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "vulnerable", + "wordSecond": "脆弱 (cuì ruò)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "aliviado", + "wordSecond": "放心 (fàng xīn)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "avergonzado", + "wordSecond": "尴尬 (gān gà)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "desconcertado", + "wordSecond": "迷惑 (mí huò)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "desesperado", + "wordSecond": "绝望 (jué wàng)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "emocionado", + "wordSecond": "激动 (jī dòng)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "entusiasmado", + "wordSecond": "热心 (rè xīn)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "esperanzado", + "wordSecond": "希望 (xī wàng)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "harto", + "wordSecond": "厌倦 (yàn juàn)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ilusionado", + "wordSecond": "期待 (qī dài)", + "createdAt": "2026-02-19T14:59:22.808Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_fr_it_A2.json b/output/2026_02_19_emotions_feelings_fr_it_A2.json new file mode 100644 index 0000000..dee02af --- /dev/null +++ b/output/2026_02_19_emotions_feelings_fr_it_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:03:56.012Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "heureux", + "wordSecond": "felice", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "triste", + "wordSecond": "triste", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "en colère", + "wordSecond": "arrabbiato", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "effrayé", + "wordSecond": "spaventato", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "inquiet", + "wordSecond": "preoccupato", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "excité", + "wordSecond": "eccitato", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fier", + "wordSecond": "fiero", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "calme", + "wordSecond": "calmo", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "reconnaissant", + "wordSecond": "grato", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "joyeux", + "wordSecond": "gioioso", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "seul", + "wordSecond": "solo", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "honteux", + "wordSecond": "vergognoso", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "surpris", + "wordSecond": "sorpreso", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "confus", + "wordSecond": "confuso", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ennuyé", + "wordSecond": "annoiato", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fatigué", + "wordSecond": "stanco", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "curieux", + "wordSecond": "curioso", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "content", + "wordSecond": "contento", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "malheureux", + "wordSecond": "infelice", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "furieux", + "wordSecond": "furioso", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "terrifié", + "wordSecond": "terrorizzato", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "nerveux", + "wordSecond": "nervoso", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "enthousiaste", + "wordSecond": "entusiasta", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "satisfait", + "wordSecond": "soddisfatto", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "détendu", + "wordSecond": "rilassato", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "merveilleux", + "wordSecond": "meraviglioso", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "solitaire", + "wordSecond": "solitario", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "embarrassé", + "wordSecond": "imbarazzato", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "étonné", + "wordSecond": "stupito", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "perdu", + "wordSecond": "perso", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fatiguant", + "wordSecond": "stancante", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "épuisé", + "wordSecond": "esausto", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "intéressé", + "wordSecond": "interessato", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "serein", + "wordSecond": "sereno", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "désolé", + "wordSecond": "dispiaciuto", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "jaloux", + "wordSecond": "geloso", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "paniqué", + "wordSecond": "in preda al panico", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "anxieux", + "wordSecond": "ansioso", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "amoureux", + "wordSecond": "innamorato", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "impatient", + "wordSecond": "impaziente", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "déçu", + "wordSecond": "deluso", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tendu", + "wordSecond": "teso", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "heureuse", + "wordSecond": "felice", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tristesse", + "wordSecond": "tristezza", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "colère", + "wordSecond": "rabbia", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "peur", + "wordSecond": "paura", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "inquiétude", + "wordSecond": "preoccupazione", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "excitation", + "wordSecond": "eccitazione", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fierté", + "wordSecond": "orgoglio", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "calme", + "wordSecond": "calma", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "gratitude", + "wordSecond": "gratitudine", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "joie", + "wordSecond": "gioia", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "solitude", + "wordSecond": "solitudine", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "honte", + "wordSecond": "vergogna", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "surprise", + "wordSecond": "sorpresa", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "confusion", + "wordSecond": "confusione", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ennui", + "wordSecond": "noia", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fatigue", + "wordSecond": "stanchezza", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "curiosité", + "wordSecond": "curiosità", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bonheur", + "wordSecond": "felicità", + "createdAt": "2026-02-19T15:03:56.012Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_fr_ja_A2.json b/output/2026_02_19_emotions_feelings_fr_ja_A2.json new file mode 100644 index 0000000..d274ac2 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_fr_ja_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:04:21.282Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "heureux", + "wordSecond": "嬉しい (うれしい, ureshii)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "joyeux", + "wordSecond": "楽しい (たのしい, tanoshii)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "excité", + "wordSecond": "興奮した (こうふんした, koufun shita)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "fier", + "wordSecond": "誇りに思う (ほこりにおもう, hokori ni omou)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "calme", + "wordSecond": "穏やか (おだやか, odayaka)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "reconnaissant", + "wordSecond": "感謝している (かんしゃしている, kansha shiteiru)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "triste", + "wordSecond": "悲しい (かなしい, kanashii)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "en colère", + "wordSecond": "怒っている (おこっている, okotteiru)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "effrayé", + "wordSecond": "怖い (こわい, kowai)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "inquiet", + "wordSecond": "心配している (しんぱいしている, shinpai shiteiru)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "seul", + "wordSecond": "寂しい (さびしい, sabishii)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "honteux", + "wordSecond": "恥ずかしい (はずかしい, hazukashii)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "surpris", + "wordSecond": "驚いた (おどろいた, odoroi ta)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "confus", + "wordSecond": "混乱した (こんらんした, konran shita)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ennuyé", + "wordSecond": "退屈した (たいくつした, taikutsu shita)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "fatigué", + "wordSecond": "疲れた (つかれた, tsukareta)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "curieux", + "wordSecond": "好奇心がある (こうきしんがある, koukishin ga aru)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "content", + "wordSecond": "幸せ (しあわせ, shiawase)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "satisfait", + "wordSecond": "満足した (まんぞくした, manzoku shita)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "amoureux", + "wordSecond": "恋している (こいしている, koi shiteiru)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "gentil", + "wordSecond": "優しい (やさしい, yasashii)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "détendu", + "wordSecond": "リラックスした (りらっくすした, rirakkusu shita)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "serein", + "wordSecond": "平和な (へいわな, heiwa na)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "optimiste", + "wordSecond": "楽観的な (らっかんてきな, rakkan teki na)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "confiant", + "wordSecond": "自信がある (じしんがある, jishin ga aru)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "énergique", + "wordSecond": "元気な (げんきな, genki na)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "gai", + "wordSecond": "陽気な (ようきな, youki na)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "souriant", + "wordSecond": "笑顔の (えがおの, egao no)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chaleureux", + "wordSecond": "温かい (あたたかい, atatakai)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "émerveillé", + "wordSecond": "感動した (かんどうした, kandou shita)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "malheureux", + "wordSecond": "不幸な (ふこうな, fukou na)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "fâché", + "wordSecond": "腹が立つ (はらがたつ, hara ga tatsu)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "frustré", + "wordSecond": "イライラした (いらいらした, iraira shita)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "nerveux", + "wordSecond": "緊張した (きんちょうした, kinchou shita)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "paniqué", + "wordSecond": "パニックした (ぱにっくした, panikku shita)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "jaloux", + "wordSecond": "嫉妬している (しっとしている, shitto shiteiru)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "déçu", + "wordSecond": "がっかりした (がっかりした, gakkari shita)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "désespéré", + "wordSecond": "絶望した (ぜつぼうした, zetsubou shita)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "agacé", + "wordSecond": "イライラする (いらいらする, iraira suru)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "peiné", + "wordSecond": "悲しんでいる (かなしんでいる, kanashindeiru)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "choqué", + "wordSecond": "ショックを受けた (しょっくをうけた, shokku o uketa)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "perplexe", + "wordSecond": "当惑した (とうわくした, touwaku shita)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "indécis", + "wordSecond": "迷っている (まよっている, mayotteiru)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "indifférent", + "wordSecond": "無関心な (むかんしんな, mukanshin na)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "apathique", + "wordSecond": "無気力な (むきりょくな, mukiryoku na)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sommeil", + "wordSecond": "眠い (ねむい, nemui)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "épuisé", + "wordSecond": "疲れ果てた (つかれはてた, tsukarehateta)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "intéressé", + "wordSecond": "興味がある (きょうみがある, kyoumi ga aru)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "étonné", + "wordSecond": "びっくりした (びっくりした, bikkuri shita)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sceptique", + "wordSecond": "疑わしい (うたがわしい, utagawashii)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "impatient", + "wordSecond": "待ちきれない (まちきれない, machikirenai)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "enthousiaste", + "wordSecond": "熱心な (ねっしんな, nesshin na)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "soulagé", + "wordSecond": "安心した (あんしんした, anshin shita)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "touché", + "wordSecond": "感動した (かんどうした, kandou shita)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "gêné", + "wordSecond": "恥ずかしい (はずかしい, hazukashii)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "embarrassé", + "wordSecond": "困った (こまった, komatta)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "timide", + "wordSecond": "恥ずかしがり屋 (はずかしがりや, hazukashigariya)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "soucieux", + "wordSecond": "気になる (きになる, ki ni naru)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mélancolique", + "wordSecond": "物悲しい (ものかなしい, monokanashii)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "nostalgique", + "wordSecond": "懐かしい (なつかしい, natsukashii)", + "createdAt": "2026-02-19T15:04:21.282Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_fr_ko_A2.json b/output/2026_02_19_emotions_feelings_fr_ko_A2.json new file mode 100644 index 0000000..c676202 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_fr_ko_A2.json @@ -0,0 +1,606 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:04:57.323Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "heureux", + "wordSecond": "행복한 (haengbokhan)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "triste", + "wordSecond": "슬픈 (seulpeun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "en colère", + "wordSecond": "화난 (hwanan)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "effrayé", + "wordSecond": "무서운 (museoun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "inquiet", + "wordSecond": "걱정하는 (geokjeonghaneun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "excité", + "wordSecond": "신나는 (sinnaneun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "fier", + "wordSecond": "자랑스러운 (jarangseureoun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "calme", + "wordSecond": "차분한 (chabunhan)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "reconnaissant", + "wordSecond": "감사하는 (gamsahaneun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "seul", + "wordSecond": "외로운 (oeroun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "honteux", + "wordSecond": "부끄러운 (bukkeureoun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "surpris", + "wordSecond": "놀란 (nollan)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "confus", + "wordSecond": "혼란스러운 (hollanseureoun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "ennuyé", + "wordSecond": "지루한 (jiruhan)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "fatigué", + "wordSecond": "피곤한 (pigonhan)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "curieux", + "wordSecond": "호기심 많은 (hogisim maneun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "joyeux", + "wordSecond": "기쁜 (gippeun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "déçu", + "wordSecond": "실망한 (silmanghan)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "nerveux", + "wordSecond": "긴장한 (ginjanghan)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "satisfait", + "wordSecond": "만족한 (manjokan)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "amoureux", + "wordSecond": "사랑에 빠진 (sarange ppajin)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "jaloux", + "wordSecond": "질투하는 (jiltuhaneun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "impatient", + "wordSecond": "참을성 없는 (chameulseong eomneun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "détendu", + "wordSecond": "편안한 (pyeonanhan)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "optimiste", + "wordSecond": "낙관적인 (nakgwanjeogin)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pessimiste", + "wordSecond": "비관적인 (bigwanjeogin)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "énervé", + "wordSecond": "짜증나는 (jjajeungnaneun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "choqué", + "wordSecond": "충격받은 (chunggyeokbadeun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "gêné", + "wordSecond": "당황한 (danghwanghan)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "frustré", + "wordSecond": "좌절한 (jwajeolhan)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "soulagé", + "wordSecond": "안도하는 (andohaneun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "embarrassé", + "wordSecond": "난처한 (nancheohan)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "enthousiaste", + "wordSecond": "열정적인 (yeoljeongjeogin)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "désespéré", + "wordSecond": "절망적인 (jeolmangjeogin)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "agacé", + "wordSecond": "성가신 (seonggasin)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "émerveillé", + "wordSecond": "경이로운 (gyeongiroun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "horrifié", + "wordSecond": "공포에 질린 (gongpoe jillin)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "paniqué", + "wordSecond": "공황 상태의 (gonghwang sangtaeui)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "mécontent", + "wordSecond": "불만스러운 (bulmanseureoun)", + "createdAt": "2026-02-19T15:04:57.323Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_fr_pl_A2.json b/output/2026_02_19_emotions_feelings_fr_pl_A2.json new file mode 100644 index 0000000..435364c --- /dev/null +++ b/output/2026_02_19_emotions_feelings_fr_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:05:10.202Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "heureux", + "wordSecond": "szczęśliwy", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "triste", + "wordSecond": "smutny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "en colère", + "wordSecond": "zły", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "joyeux", + "wordSecond": "radosny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "excité", + "wordSecond": "podekscytowany", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "fier", + "wordSecond": "dumny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "calme", + "wordSecond": "spokojny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "reconnaissant", + "wordSecond": "wdzięczny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "effrayé", + "wordSecond": "przestraszony", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "inquiet", + "wordSecond": "zmartwiony", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "seul", + "wordSecond": "samotny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "honteux", + "wordSecond": "zawstydzony", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "surpris", + "wordSecond": "zaskoczony", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "confus", + "wordSecond": "zmieszany", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "ennuyé", + "wordSecond": "znudzony", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "fatigué", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "curieux", + "wordSecond": "ciekawy", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "content", + "wordSecond": "zadowolony", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "désolé", + "wordSecond": "przykro", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "nerveux", + "wordSecond": "nerwowy", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "satisfait", + "wordSecond": "zadowolony", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "impatient", + "wordSecond": "niecierpliwy", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "déçu", + "wordSecond": "rozczarowany", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "jaloux", + "wordSecond": "zazdrosny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "amoureux", + "wordSecond": "zakochany", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "gentil", + "wordSecond": "miły", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "méchant", + "wordSecond": "złośliwy", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "timide", + "wordSecond": "nieśmiały", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "courageux", + "wordSecond": "odważny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "faible", + "wordSecond": "słaby", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "fort", + "wordSecond": "silny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "malade", + "wordSecond": "chory", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "en bonne santé", + "wordSecond": "zdrowy", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "affamé", + "wordSecond": "głodny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "assoiffé", + "wordSecond": "spragniony", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chaud", + "wordSecond": "gorący", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "froid", + "wordSecond": "zimny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "propre", + "wordSecond": "czysty", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sale", + "wordSecond": "brudny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "riche", + "wordSecond": "bogaty", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pauvre", + "wordSecond": "biedny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "jeune", + "wordSecond": "młody", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "vieux", + "wordSecond": "stary", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "beau", + "wordSecond": "piękny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "laid", + "wordSecond": "brzydki", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "intelligent", + "wordSecond": "inteligentny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "stupide", + "wordSecond": "głupi", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "drôle", + "wordSecond": "zabawny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sérieux", + "wordSecond": "poważny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "occupé", + "wordSecond": "zajęty", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "libre", + "wordSecond": "wolny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rapide", + "wordSecond": "szybki", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "lent", + "wordSecond": "wolny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "facile", + "wordSecond": "łatwy", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "difficile", + "wordSecond": "trudny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "important", + "wordSecond": "ważny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "intéressant", + "wordSecond": "ciekawy", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "ennuyeux", + "wordSecond": "nudny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dangereux", + "wordSecond": "niebezpieczny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sûr", + "wordSecond": "bezpieczny", + "createdAt": "2026-02-19T15:05:10.202Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_fr_zh_A2.json b/output/2026_02_19_emotions_feelings_fr_zh_A2.json new file mode 100644 index 0000000..95bc299 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_fr_zh_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:04:36.839Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "heureux", + "wordSecond": "开心 (kaixin)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "joyeux", + "wordSecond": "快乐 (kuaile)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "excité", + "wordSecond": "兴奋 (xingfen)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fier", + "wordSecond": "骄傲 (jiao'ao)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "calme", + "wordSecond": "平静 (pingjing)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "reconnaissant", + "wordSecond": "感激 (ganji)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "content", + "wordSecond": "高兴 (gaoxing)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "satisfait", + "wordSecond": "满意 (manyi)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "amoureux", + "wordSecond": "爱 (ai)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "optimiste", + "wordSecond": "乐观 (leguan)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "triste", + "wordSecond": "悲伤 (beishang)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "en colère", + "wordSecond": "生气 (shengqi)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fâché", + "wordSecond": "愤怒 (fennu)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "peur", + "wordSecond": "害怕 (haipa)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "effrayé", + "wordSecond": "恐惧 (kongju)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "inquiet", + "wordSecond": "担心 (danxin)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "seul", + "wordSecond": "孤独 (gudu)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "honteux", + "wordSecond": "羞愧 (xiukui)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "déçu", + "wordSecond": "失望 (shiwang)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "nerveux", + "wordSecond": "紧张 (jinzhang)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "jaloux", + "wordSecond": "嫉妒 (jidu)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "malheureux", + "wordSecond": "不幸 (buxing)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fatigué", + "wordSecond": "累 (lei)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ennuyé", + "wordSecond": "无聊 (wuliao)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "surpris", + "wordSecond": "惊讶 (jingya)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "confus", + "wordSecond": "困惑 (kunhuo)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "curieux", + "wordSecond": "好奇 (haoqi)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pensif", + "wordSecond": "沉思 (chensi)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "détendu", + "wordSecond": "放松 (fangsong)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "serein", + "wordSecond": "安宁 (anning)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "gêné", + "wordSecond": "尴尬 (ganga)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "impatient", + "wordSecond": "不耐烦 (bunaifan)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "frustré", + "wordSecond": "沮丧 (jusang)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "choqué", + "wordSecond": "震惊 (zhenjing)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ému", + "wordSecond": "感动 (gandong)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "timide", + "wordSecond": "害羞 (haixiu)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sûr", + "wordSecond": "自信 (zixin)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "coupable", + "wordSecond": "内疚 (neijiu)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "espoir", + "wordSecond": "希望 (xiwang)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "désespéré", + "wordSecond": "绝望 (juewang)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "énergique", + "wordSecond": "精力充沛 (jinglichongpei)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "paix", + "wordSecond": "和平 (heping)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "agacé", + "wordSecond": "烦恼 (fannao)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "anxieux", + "wordSecond": "焦虑 (jiaolv)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "dégoûté", + "wordSecond": "恶心 (exin)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "impressionné", + "wordSecond": "印象深刻 (yinxiangshenke)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "soulagé", + "wordSecond": "放心 (fangxin)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "envieux", + "wordSecond": "羡慕 (xianmu)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sympathique", + "wordSecond": "同情 (tongqing)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "méfiant", + "wordSecond": "怀疑 (huaiyi)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "respectueux", + "wordSecond": "尊重 (zunzhong)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "humble", + "wordSecond": "谦虚 (qianxu)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "courageux", + "wordSecond": "勇敢 (yonggan)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "gentil", + "wordSecond": "善良 (shanliang)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "patient", + "wordSecond": "耐心 (naixin)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sincère", + "wordSecond": "真诚 (zhencheng)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tendre", + "wordSecond": "温柔 (wenrou)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vif", + "wordSecond": "活泼 (huopo)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sérieux", + "wordSecond": "严肃 (yansu)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "silencieux", + "wordSecond": "安静 (anjing)", + "createdAt": "2026-02-19T15:04:36.839Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_it_ja_A2.json b/output/2026_02_19_emotions_feelings_it_ja_A2.json new file mode 100644 index 0000000..8f67403 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_it_ja_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:05:37.099Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "felice", + "wordSecond": "嬉しい (うれしい, ureshii)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "triste", + "wordSecond": "悲しい (かなしい, kanashii)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "arrabbiato", + "wordSecond": "怒った (おこった, okotta)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "spaventato", + "wordSecond": "怖い (こわい, kowai)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "calmo", + "wordSecond": "穏やか (おだやか, odayaka)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "grato", + "wordSecond": "感謝している (かんしゃしている, kansha shiteiru)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "orgoglioso", + "wordSecond": "誇りに思う (ほこりにおもう, hokori ni omou)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "eccitato", + "wordSecond": "興奮した (こうふんした, koufun shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "preoccupato", + "wordSecond": "心配した (しんぱいした, shinpai shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "solo", + "wordSecond": "寂しい (さびしい, sabishii)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "vergognoso", + "wordSecond": "恥ずかしい (はずかしい, hazukashii)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sorpreso", + "wordSecond": "驚いた (おどろいた, odoroiita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "confuso", + "wordSecond": "混乱した (こんらんした, konran shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "annoiato", + "wordSecond": "退屈した (たいくつした, taikutsu shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "stanco", + "wordSecond": "疲れた (つかれた, tsukareta)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "curioso", + "wordSecond": "好奇心がある (こうきしんがある, koukishin ga aru)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "gioioso", + "wordSecond": "喜ばしい (よろこばしい, yorokobashii)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "contento", + "wordSecond": "満足した (まんぞくした, manzoku shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "nervoso", + "wordSecond": "緊張した (きんちょうした, kinchou shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "imbarazzato", + "wordSecond": "当惑した (とうわくした, touwaku shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "deluso", + "wordSecond": "失望した (しつぼうした, shitsubou shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "geloso", + "wordSecond": "嫉妬した (しっとした, shitto shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "invidioso", + "wordSecond": "羨ましい (うらやましい, urayamashii)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "impaurito", + "wordSecond": "恐れた (おそれた, osoreta)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ansioso", + "wordSecond": "不安な (ふあんな, fuanna)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "rilassato", + "wordSecond": "リラックスした (りらっくすした, rirakkusu shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "soddisfatto", + "wordSecond": "満足した (まんぞくした, manzoku shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "entusiasta", + "wordSecond": "熱心な (ねっしんな, nesshinna)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ottimista", + "wordSecond": "楽観的な (らっかんてきな, rakkantekina)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pessimista", + "wordSecond": "悲観的な (ひかんてきな, hikantekina)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "scioccato", + "wordSecond": "ショックを受けた (しょっくをうけた, shokku o uketa)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "perplesso", + "wordSecond": "困惑した (こんわくした, konwaku shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "irritato", + "wordSecond": "イライラした (いらいらした, iraira shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "frustrato", + "wordSecond": "挫折した (ざせつした, zasetsu shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "speranzoso", + "wordSecond": "希望に満ちた (きぼうにみちた, kibou ni michita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "commosso", + "wordSecond": "感動した (かんどうした, kandou shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "impaziente", + "wordSecond": "焦った (あせった, asetta)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pacifico", + "wordSecond": "平和な (へいわな, heiwana)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tranquillo", + "wordSecond": "静かな (しずかな, shizukana)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "malinconico", + "wordSecond": "物悲しい (ものかなしい, monokanashii)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "euforico", + "wordSecond": "有頂天の (うちょうてんの, uchouten no)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sconvolto", + "wordSecond": "動揺した (どうようした, douyou shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "timido", + "wordSecond": "恥ずかしがり屋 (はずかしがりや, hazukashigariya)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sospettoso", + "wordSecond": "疑わしい (うたがわしい, utagawashii)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "affettuoso", + "wordSecond": "愛情深い (あいじょうぶかい, aijou bukai)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "amichevole", + "wordSecond": "友好的な (ゆうこうてきな, yuukoutekina)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ostile", + "wordSecond": "敵意のある (てきいのある, tekii no aru)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "indifferente", + "wordSecond": "無関心な (むかんしんな, mukanshinna)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "impressionato", + "wordSecond": "感銘を受けた (かんめいをうけた, kanmei o uketa)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sbalordito", + "wordSecond": "呆然とした (ぼうぜんとした, bouzen to shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "estasiato", + "wordSecond": "恍惚とした (こうこつとした, koukotsu to shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "appagato", + "wordSecond": "充足した (じゅうそくした, juusoku shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sconcertato", + "wordSecond": "当惑した (とうわくした, touwaku shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dispiaciuto", + "wordSecond": "申し訳なく思う (もうしわけなくおもう, moushiwake naku omou)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "incredulo", + "wordSecond": "疑わしい (うたがわしい, utagawashii)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sbigottito", + "wordSecond": "仰天した (ぎょうてんした, gyouten shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "esaltato", + "wordSecond": "高揚した (こうようした, kouyou shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "abbattuto", + "wordSecond": "落ち込んだ (おちこんだ, ochikonda)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sgomento", + "wordSecond": "狼狽した (ろうばいした, roubai shita)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sereno", + "wordSecond": "晴朗な (せいろうな, seirouna)", + "createdAt": "2026-02-19T15:05:37.099Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_it_ko_A2.json b/output/2026_02_19_emotions_feelings_it_ko_A2.json new file mode 100644 index 0000000..a06c076 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_it_ko_A2.json @@ -0,0 +1,606 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:06:13.878Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "felice", + "wordSecond": "행복한 (haengbokhan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "contento", + "wordSecond": "기쁜 (gippeun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "gioioso", + "wordSecond": "즐거운 (jeulgeoun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "entusiasta", + "wordSecond": "열정적인 (yeoljeongjeogin)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "orgoglioso", + "wordSecond": "자랑스러운 (jarangseureoun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "calmo", + "wordSecond": "차분한 (chabunhan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "grato", + "wordSecond": "감사하는 (gamsahaneun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "triste", + "wordSecond": "슬픈 (seulpeun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "arrabbiato", + "wordSecond": "화난 (hwanan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "spaventato", + "wordSecond": "무서워하는 (museowohaneun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "preoccupato", + "wordSecond": "걱정하는 (geokjeonghaneun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "solo", + "wordSecond": "외로운 (oeroun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "vergognoso", + "wordSecond": "부끄러운 (bukkeureoun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sorpreso", + "wordSecond": "놀란 (nollan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "confuso", + "wordSecond": "혼란스러운 (hollanseureoun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "annoiato", + "wordSecond": "지루한 (jiruhan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "stanco", + "wordSecond": "피곤한 (pigonhan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "curioso", + "wordSecond": "호기심 많은 (hogisim maneun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "allegro", + "wordSecond": "명랑한 (myeongnanghan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "soddisfatto", + "wordSecond": "만족한 (manjokan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "amorevole", + "wordSecond": "사랑하는 (saranghaneun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "eccitato", + "wordSecond": "흥분한 (heungbunhan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "paziente", + "wordSecond": "인내심 있는 (innaesim inneun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "rilassato", + "wordSecond": "편안한 (pyeonanhan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "speranzoso", + "wordSecond": "희망적인 (huimangjeogin)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "deluso", + "wordSecond": "실망한 (silmanghan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nervoso", + "wordSecond": "긴장한 (ginjanghan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "impaurito", + "wordSecond": "두려워하는 (duryeowohaneun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ansioso", + "wordSecond": "불안한 (buranhan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "geloso", + "wordSecond": "질투하는 (jiltuhaneun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "imbarazzato", + "wordSecond": "당황한 (danghwanghan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "incredulo", + "wordSecond": "믿기지 않는 (mitgiji anneun)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "perplesso", + "wordSecond": "당혹한 (danghokan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "noioso", + "wordSecond": "따분한 (ttabunhan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "assonnato", + "wordSecond": "졸린 (jollin)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "affascinato", + "wordSecond": "매료된 (maeryodoen)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "commosso", + "wordSecond": "감동한 (gamdonghan)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ottimista", + "wordSecond": "낙관적인 (nakgwanjeogin)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pessimista", + "wordSecond": "비관적인 (bigwanjeogin)", + "createdAt": "2026-02-19T15:06:13.878Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_it_pl_A2.json b/output/2026_02_19_emotions_feelings_it_pl_A2.json new file mode 100644 index 0000000..739345a --- /dev/null +++ b/output/2026_02_19_emotions_feelings_it_pl_A2.json @@ -0,0 +1,781 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:06:27.739Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "felice", + "wordSecond": "szczęśliwy", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "contento", + "wordSecond": "zadowolony", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gioioso", + "wordSecond": "radosny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "entusiasta", + "wordSecond": "entuzjastyczny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "orgoglioso", + "wordSecond": "dumny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "calmo", + "wordSecond": "spokojny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "grato", + "wordSecond": "wdzięczny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "allegro", + "wordSecond": "wesoły", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "soddisfatto", + "wordSecond": "zadowolony", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "euforico", + "wordSecond": "euforiczny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "triste", + "wordSecond": "smutny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "arrabbiato", + "wordSecond": "zły", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "furioso", + "wordSecond": "wściekły", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "spaventato", + "wordSecond": "przestraszony", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "preoccupato", + "wordSecond": "zmartwiony", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "solo", + "wordSecond": "samotny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vergognoso", + "wordSecond": "zawstydzony", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "deluso", + "wordSecond": "rozczarowany", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "nervoso", + "wordSecond": "nerwowy", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "stressato", + "wordSecond": "zestresowany", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sorpreso", + "wordSecond": "zaskoczony", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "confuso", + "wordSecond": "zmieszany", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "annoiato", + "wordSecond": "znudzony", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "stanco", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "curioso", + "wordSecond": "ciekawy", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "amorevole", + "wordSecond": "kochający", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gentile", + "wordSecond": "życzliwy", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "paziente", + "wordSecond": "cierpliwy", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ottimista", + "wordSecond": "optymistyczny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "fiducioso", + "wordSecond": "ufny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "rilassato", + "wordSecond": "zrelaksowany", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sereno", + "wordSecond": "pogodny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "energico", + "wordSecond": "energiczny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vivace", + "wordSecond": "żywiołowy", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "speranzoso", + "wordSecond": "pełen nadziei", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "impaziente", + "wordSecond": "niecierpliwy", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "geloso", + "wordSecond": "zazdrosny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "invidioso", + "wordSecond": "zawistny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "timido", + "wordSecond": "nieśmiały", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "imbarazzato", + "wordSecond": "zażenowany", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "frustrato", + "wordSecond": "sfrustrowany", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "irritato", + "wordSecond": "poirytowany", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ansioso", + "wordSecond": "niespokojny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pauroso", + "wordSecond": "bojaźliwy", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "disperato", + "wordSecond": "zrozpaczony", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "colpevole", + "wordSecond": "winny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "scioccato", + "wordSecond": "wstrząśnięty", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "perplesso", + "wordSecond": "zakłopotany", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "indifferente", + "wordSecond": "obojętny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "apattico", + "wordSecond": "apatyczny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "assonnato", + "wordSecond": "senny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "esausto", + "wordSecond": "wyczerpany", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "interessato", + "wordSecond": "zainteresowany", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "eccitato", + "wordSecond": "podekscytowany", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "commosso", + "wordSecond": "wzruszony", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tranquillo", + "wordSecond": "spokojny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "malinconico", + "wordSecond": "melancholijny", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "agitato", + "wordSecond": "podenerwowany", + "createdAt": "2026-02-19T15:06:27.739Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_it_zh_A2.json b/output/2026_02_19_emotions_feelings_it_zh_A2.json new file mode 100644 index 0000000..78aafd1 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_it_zh_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:05:53.614Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "felice", + "wordSecond": "开心 (kaixin)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "gioioso", + "wordSecond": "快乐 (kuaile)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "eccitato", + "wordSecond": "兴奋 (xingfen)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "orgoglioso", + "wordSecond": "骄傲 (jiao'ao)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "calmo", + "wordSecond": "平静 (pingjing)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "grato", + "wordSecond": "感激 (ganji)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "contento", + "wordSecond": "高兴 (gaoxing)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "soddisfatto", + "wordSecond": "满意 (manyi)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "amorevole", + "wordSecond": "有爱 (you'ai)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "speranzoso", + "wordSecond": "有希望 (you xiwang)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "entusiasta", + "wordSecond": "热情 (reqing)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fiducioso", + "wordSecond": "有信心 (you xinxin)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tranquillo", + "wordSecond": "安静 (anjing)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "rilassato", + "wordSecond": "放松 (fangsong)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "allegro", + "wordSecond": "愉快 (yukuai)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "triste", + "wordSecond": "伤心 (shangxin)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "arrabbiato", + "wordSecond": "生气 (shengqi)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "spaventato", + "wordSecond": "害怕 (haipa)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "preoccupato", + "wordSecond": "担心 (danxin)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "solo", + "wordSecond": "孤独 (gudu)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "vergognoso", + "wordSecond": "害羞 (haixiu)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "deluso", + "wordSecond": "失望 (shiwang)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "nervoso", + "wordSecond": "紧张 (jinzhang)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "stressato", + "wordSecond": "有压力 (you yali)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "invidioso", + "wordSecond": "嫉妒 (jidu)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "imbarazzato", + "wordSecond": "尴尬 (ganga)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pauroso", + "wordSecond": "恐惧 (kongju)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "frustrato", + "wordSecond": "沮丧 (jusang)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "irritato", + "wordSecond": "烦躁 (fanzao)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "colpevole", + "wordSecond": "内疚 (neijiu)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sorpreso", + "wordSecond": "惊讶 (jingya)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "confuso", + "wordSecond": "困惑 (kunhuo)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "annoiato", + "wordSecond": "无聊 (wuliao)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "stanco", + "wordSecond": "累 (lei)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "curioso", + "wordSecond": "好奇 (haoqi)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "indifferente", + "wordSecond": "无所谓 (wusuowei)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pensieroso", + "wordSecond": "若有所思 (ruoyousuosi)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "attento", + "wordSecond": "注意 (zhuyi)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sorpreso", + "wordSecond": "吃惊 (chijing)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "perplesso", + "wordSecond": "迷惑 (mihuo)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "assonnato", + "wordSecond": "困 (kun)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "interessato", + "wordSecond": "感兴趣 (gan xingqu)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "meravigliato", + "wordSecond": "惊奇 (jingqi)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "impaurito", + "wordSecond": "受惊 (shoujing)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "agitato", + "wordSecond": "不安 (bu'an)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "malinconico", + "wordSecond": "忧郁 (youyu)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "felice", + "wordSecond": "幸福 (xingfu)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ottimista", + "wordSecond": "乐观 (leguan)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "paziente", + "wordSecond": "耐心 (naixin)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "gentile", + "wordSecond": "善良 (shanliang)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sereno", + "wordSecond": "安宁 (anning)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "commosso", + "wordSecond": "感动 (gandong)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "impaziente", + "wordSecond": "不耐烦 (bu naifan)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dispiaciuto", + "wordSecond": "抱歉 (baoqian)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "timido", + "wordSecond": "害羞 (haixiu)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "insicuro", + "wordSecond": "不安全 (bu anquan)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "scioccato", + "wordSecond": "震惊 (zhenjing)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "estasiato", + "wordSecond": "狂喜 (kuangxi)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sconvolto", + "wordSecond": "心烦意乱 (xinfanyiluan)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "euforico", + "wordSecond": "兴高采烈 (xinggaocailie)", + "createdAt": "2026-02-19T15:05:53.614Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_ja_ko_A2.json b/output/2026_02_19_emotions_feelings_ja_ko_A2.json new file mode 100644 index 0000000..928ead1 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_ja_ko_A2.json @@ -0,0 +1,786 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:07:24.827Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "嬉しい (うれしい, ureshii)", + "wordSecond": "기쁜 (gippeun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "楽しい (たのしい, tanoshii)", + "wordSecond": "즐거운 (jeulgeoun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "幸せ (しあわせ, shiawase)", + "wordSecond": "행복한 (haengbokan)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "興奮した (こうふんした, koufun shita)", + "wordSecond": "흥분한 (heungbunan)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "誇らしい (ほこらしい, hokorashii)", + "wordSecond": "자랑스러운 (jarangseureoun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "穏やか (おだやか, odayaka)", + "wordSecond": "평온한 (pyeong-onhan)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "感謝している (かんしゃしている, kansha shiteiru)", + "wordSecond": "감사하는 (gamsahaneun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "悲しい (かなしい, kanashii)", + "wordSecond": "슬픈 (seulpeun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "怒った (おこった, okotta)", + "wordSecond": "화난 (hwanan)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "怖い (こわい, kowai)", + "wordSecond": "무서운 (museoun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "心配 (しんぱい, shinpai)", + "wordSecond": "걱정하는 (geokjeonghaneun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "寂しい (さびしい, sabishii)", + "wordSecond": "외로운 (oeroun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "恥ずかしい (はずかしい, hazukashii)", + "wordSecond": "부끄러운 (bukkeureoun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "驚いた (おどろいた, odoroita)", + "wordSecond": "놀란 (nollan)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "混乱した (こんらんした, konran shita)", + "wordSecond": "혼란스러운 (hollanseureoun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "退屈 (たいくつ, taikutsu)", + "wordSecond": "지루한 (jiruhan)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "疲れた (つかれた, tsukareta)", + "wordSecond": "피곤한 (pigonhan)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "好奇心旺盛な (こうきしんおうせいな, koukishin ousei na)", + "wordSecond": "호기심 많은 (hogisim maneun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "満足した (まんぞくした, manzoku shita)", + "wordSecond": "만족한 (manjokan)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "安心した (あんしんした, anshin shita)", + "wordSecond": "안심한 (ansimhan)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "感動した (かんどうした, kandou shita)", + "wordSecond": "감동한 (gamdonghan)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "熱心な (ねっしんな, nesshin na)", + "wordSecond": "열정적인 (yeoljeongjeogin)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "希望に満ちた (きぼうにみちた, kibou ni michita)", + "wordSecond": "희망에 찬 (huimange chan)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "優しい (やさしい, yasashii)", + "wordSecond": "다정한 (dajeonghan)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "愛情深い (あいじょうぶかい, aijou bukai)", + "wordSecond": "애정 깊은 (aejeong gipeun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "興奮 (こうふん, koufun)", + "wordSecond": "흥분 (heungbun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "喜び (よろこび, yorokobi)", + "wordSecond": "기쁨 (gippeum)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "悲しみ (かなしみ, kanashimi)", + "wordSecond": "슬픔 (seulpeum)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "怒り (いかり, ikari)", + "wordSecond": "분노 (bunno)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "恐怖 (きょうふ, kyoufu)", + "wordSecond": "공포 (gongpo)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "不安 (ふあん, fuan)", + "wordSecond": "불안 (buran)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "孤独 (こどく, kodoku)", + "wordSecond": "고독 (godok)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "恥 (はじ, haji)", + "wordSecond": "부끄러움 (bukkeureoum)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "驚き (おどろき, odoroki)", + "wordSecond": "놀라움 (nollaum)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "混乱 (こんらん, konran)", + "wordSecond": "혼란 (hollan)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "退屈 (たいくつ, taikutsu)", + "wordSecond": "지루함 (jiruham)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "疲労 (ひろう, hirou)", + "wordSecond": "피로 (piro)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "好奇心 (こうきしん, koukishin)", + "wordSecond": "호기심 (hogisim)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "満足 (まんぞく, manzoku)", + "wordSecond": "만족 (manjok)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "安心 (あんしん, anshin)", + "wordSecond": "안심 (ansim)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "感動 (かんどう, kandou)", + "wordSecond": "감동 (gamdong)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "熱意 (ねつい, netsui)", + "wordSecond": "열정 (yeoljeong)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "希望 (きぼう, kibou)", + "wordSecond": "희망 (huimang)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "優しさ (やさしさ, yasashisa)", + "wordSecond": "다정함 (dajeongham)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "愛情 (あいじょう, aijou)", + "wordSecond": "애정 (aejeong)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "幸せな (しあわせな, shiawase na)", + "wordSecond": "행복한 (haengbokan)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "悲しそうな (かなしそうな, kanashi sou na)", + "wordSecond": "슬퍼 보이는 (seulpeo boineun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "怒っている (おこっている, okotte iru)", + "wordSecond": "화가 난 (hwaga nan)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "怖がっている (こわがっている, kowagatte iru)", + "wordSecond": "무서워하는 (museowohaneun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "心配している (しんぱいしている, shinpai shiteiru)", + "wordSecond": "걱정하는 (geokjeonghaneun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "寂しそうな (さびしそうな, sabishi sou na)", + "wordSecond": "외로워 보이는 (oerowo boineun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "恥ずかしそうな (はずかしそうな, hazukashi sou na)", + "wordSecond": "부끄러워하는 (bukkeureowohaneun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "驚いている (おどろいている, odoroite iru)", + "wordSecond": "놀라고 있는 (nollago inneun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "混乱している (こんらんしている, konran shiteiru)", + "wordSecond": "혼란스러워하는 (hollanseureowohaneun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "退屈している (たいくつしている, taikutsu shiteiru)", + "wordSecond": "지루해하는 (jiruhaehaneun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "疲れている (つかれている, tsukarete iru)", + "wordSecond": "피곤해하는 (pigonhaehaneun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "好奇心を持っている (こうきしんをもっている, koukishin o motte iru)", + "wordSecond": "호기심을 가진 (hogisimeul gajin)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "満足している (まんぞくしている, manzoku shiteiru)", + "wordSecond": "만족하는 (manjokhaneun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "安心している (あんしんしている, anshin shiteiru)", + "wordSecond": "안심하는 (ansimhaneun)", + "createdAt": "2026-02-19T15:07:24.827Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_ja_pl_A2.json b/output/2026_02_19_emotions_feelings_ja_pl_A2.json new file mode 100644 index 0000000..2c683c1 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_ja_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:07:48.747Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "嬉しい (うれしい, ureshii)", + "wordSecond": "szczęśliwy", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "楽しい (たのしい, tanoshii)", + "wordSecond": "wesoły", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "幸せ (しあわせ, shiawase)", + "wordSecond": "szczęśliwy", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "興奮した (こうふんした, koufun shita)", + "wordSecond": "podekscytowany", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "誇らしい (ほこらしい, hokorashii)", + "wordSecond": "dumny", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "穏やか (おだやか, odayaka)", + "wordSecond": "spokojny", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "感謝している (かんしゃしている, kansha shiteiru)", + "wordSecond": "wdzięczny", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "悲しい (かなしい, kanashii)", + "wordSecond": "smutny", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "怒った (おこった, okotta)", + "wordSecond": "zły", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "怖い (こわい, kowai)", + "wordSecond": "przestraszony", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "心配な (しんぱいな, shinpai na)", + "wordSecond": "zmartwiony", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "寂しい (さびしい, sabishii)", + "wordSecond": "samotny", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "恥ずかしい (はずかしい, hazukashii)", + "wordSecond": "zawstydzony", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "驚いた (おどろいた, odoroita)", + "wordSecond": "zaskoczony", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "混乱した (こんらんした, konran shita)", + "wordSecond": "zdezorientowany", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "退屈な (たいくつな, taikutsu na)", + "wordSecond": "znudzony", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "疲れた (つかれた, tsukareta)", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "好奇心旺盛な (こうきしんおうせいな, koukishin ousei na)", + "wordSecond": "ciekawy", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "満足した (まんぞくした, manzoku shita)", + "wordSecond": "zadowolony", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "安心した (あんしんした, anshin shita)", + "wordSecond": "spokojny", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "リラックスした (りらっくすした, rirakkusu shita)", + "wordSecond": "zrelaksowany", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "希望に満ちた (きぼうにみちた, kibou ni michita)", + "wordSecond": "pełen nadziei", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "熱心な (ねっしんな, nesshin na)", + "wordSecond": "entuzjastyczny", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "感動した (かんどうした, kandou shita)", + "wordSecond": "wzruszony", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "優しい (やさしい, yasashii)", + "wordSecond": "miły", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "愛しい (いとしい, itoshii)", + "wordSecond": "kochany", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "勇気がある (ゆうきがある, yuuki ga aru)", + "wordSecond": "odważny", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "落ち込んだ (おちこんだ, ochikonda)", + "wordSecond": "przygnębiony", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "イライラした (いらいらした, iraira shita)", + "wordSecond": "poirytowany", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "恐ろしい (おそろしい, osoroshii)", + "wordSecond": "przerażony", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "不安な (ふあんな, fuan na)", + "wordSecond": "niespokojny", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "失望した (しつぼうした, shitsubou shita)", + "wordSecond": "rozczarowany", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "嫉妬深い (しっとぶかい, shitto bukai)", + "wordSecond": "zazdrosny", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "恥ずかしがり屋 (はずかしがりや, hazukashigariya)", + "wordSecond": "nieśmiały", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "困惑した (こんわくした, konwaku shita)", + "wordSecond": "zakłopotany", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "当惑した (とうわくした, touwaku shita)", + "wordSecond": "zaskoczony", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "飽きた (あきた, akita)", + "wordSecond": "znudzony", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "眠い (ねむい, nemui)", + "wordSecond": "senny", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "興味がある (きょうみがある, kyoumi ga aru)", + "wordSecond": "zainteresowany", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "熱中した (ねっちゅうした, necchuu shita)", + "wordSecond": "zaabsorbowany", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "喜び (よろこび, yorokobi)", + "wordSecond": "radość", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "笑顔 (えがお, egao)", + "wordSecond": "uśmiech", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "平和な (へいわな, heiwa na)", + "wordSecond": "spokojny", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "感謝 (かんしゃ, kansha)", + "wordSecond": "wdzięczność", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "悲しみ (かなしみ, kanashimi)", + "wordSecond": "smutek", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "怒り (いかり, ikari)", + "wordSecond": "gniew", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "恐怖 (きょうふ, kyoufu)", + "wordSecond": "strach", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "心配 (しんぱい, shinpai)", + "wordSecond": "zmartwienie", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "孤独 (こどく, kodoku)", + "wordSecond": "samotność", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "恥 (はじ, haji)", + "wordSecond": "wstyd", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "驚き (おどろき, odoroki)", + "wordSecond": "zdziwienie", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "混乱 (こんらん, konran)", + "wordSecond": "zamieszanie", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "退屈 (たいくつ, taikutsu)", + "wordSecond": "nuda", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "疲労 (ひろう, hirou)", + "wordSecond": "zmęczenie", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "好奇心 (こうきしん, koukishin)", + "wordSecond": "ciekawość", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "満足 (まんぞく, manzoku)", + "wordSecond": "zadowolenie", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "安心 (あんしん, anshin)", + "wordSecond": "spokój", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "希望 (きぼう, kibou)", + "wordSecond": "nadzieja", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "愛 (あい, ai)", + "wordSecond": "miłość", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "勇気 (ゆうき, yuuki)", + "wordSecond": "odwaga", + "createdAt": "2026-02-19T15:07:48.747Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_ja_zh_A2.json b/output/2026_02_19_emotions_feelings_ja_zh_A2.json new file mode 100644 index 0000000..74947ef --- /dev/null +++ b/output/2026_02_19_emotions_feelings_ja_zh_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:06:54.618Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "嬉しい (うれしい, ureshii)", + "wordSecond": "高兴 (gāoxìng)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "楽しい (たのしい, tanoshii)", + "wordSecond": "快乐 (kuàilè)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "幸せ (しあわせ, shiawase)", + "wordSecond": "幸福 (xìngfú)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "興奮 (こうふん, koufun)", + "wordSecond": "兴奋 (xīngfèn)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "誇らしい (ほこらしい, hokorashii)", + "wordSecond": "骄傲 (jiāo'ào)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "穏やか (おだやか, odayaka)", + "wordSecond": "平静 (píngjìng)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "感謝 (かんしゃ, kansha)", + "wordSecond": "感激 (gǎnjī)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "悲しい (かなしい, kanashii)", + "wordSecond": "悲伤 (bēishāng)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "怒る (おこる, okoru)", + "wordSecond": "生气 (shēngqì)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "怖い (こわい, kowai)", + "wordSecond": "害怕 (hàipà)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "心配 (しんぱい, shinpai)", + "wordSecond": "担心 (dānxīn)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "寂しい (さびしい, sabishii)", + "wordSecond": "孤独 (gūdú)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "恥ずかしい (はずかしい, hazukashii)", + "wordSecond": "羞愧 (xiūkuì)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "驚く (おどろく, odoroku)", + "wordSecond": "惊讶 (jīngyà)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "混乱 (こんらん, konran)", + "wordSecond": "困惑 (kùnhuò)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "退屈 (たいくつ, taikutsu)", + "wordSecond": "无聊 (wúliáo)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "疲れる (つかれる, tsukareru)", + "wordSecond": "累 (lèi)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "好奇心 (こうきしん, koukishin)", + "wordSecond": "好奇 (hàoqí)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "喜び (よろこび, yorokobi)", + "wordSecond": "喜悦 (xǐyuè)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "満足 (まんぞく, manzoku)", + "wordSecond": "满意 (mǎnyì)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "安心 (あんしん, anshin)", + "wordSecond": "安心 (ānxīn)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "愛情 (あいじょう, aijou)", + "wordSecond": "爱 (ài)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "優しい (やさしい, yasashii)", + "wordSecond": "温柔 (wēnróu)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "希望 (きぼう, kibou)", + "wordSecond": "希望 (xīwàng)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "勇気 (ゆうき, yuuki)", + "wordSecond": "勇气 (yǒngqì)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "感動 (かんどう, kandou)", + "wordSecond": "感动 (gǎndòng)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "落ち込む (おちこむ, ochikomu)", + "wordSecond": "沮丧 (jǔsàng)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "失望 (しつぼう, shitsubou)", + "wordSecond": "失望 (shīwàng)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "不安 (ふあん, fuan)", + "wordSecond": "不安 (bù'ān)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "緊張 (きんちょう, kinchou)", + "wordSecond": "紧张 (jǐnzhāng)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "嫉妬 (しっと, shitto)", + "wordSecond": "嫉妒 (jídù)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "悔しい (くやしい, kuyashii)", + "wordSecond": "懊悔 (àohuǐ)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "恥 (はじ, haji)", + "wordSecond": "羞耻 (xiūchǐ)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "驚き (おどろき, odoroki)", + "wordSecond": "惊奇 (jīngqí)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "困惑 (こんわく, konwaku)", + "wordSecond": "迷惑 (míhuò)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "飽きる (あきる, akiru)", + "wordSecond": "厌倦 (yànjuàn)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "眠い (ねむい, nemui)", + "wordSecond": "困 (kùn)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "興味 (きょうみ, kyoumi)", + "wordSecond": "兴趣 (xìngqù)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "大好き (だいすき, daisuki)", + "wordSecond": "非常喜欢 (fēicháng xǐhuān)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "嫌い (きらい, kirai)", + "wordSecond": "讨厌 (tǎoyàn)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "好き (すき, suki)", + "wordSecond": "喜欢 (xǐhuān)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "嫌 (いや, iya)", + "wordSecond": "不喜欢 (bù xǐhuān)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "怖がる (こわがる, kowagaru)", + "wordSecond": "惧怕 (jùpà)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "怒り (いかり, ikari)", + "wordSecond": "愤怒 (fènnù)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "悲しみ (かなしみ, kanashimi)", + "wordSecond": "悲哀 (bēi'āi)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "嬉しさ (うれしさ, ureshisa)", + "wordSecond": "开心 (kāixīn)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "楽しさ (たのしさ, tanoshisa)", + "wordSecond": "乐趣 (lèqù)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "幸せな (しあわせな, shiawasena)", + "wordSecond": "幸福的 (xìngfú de)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "興奮した (こうふんした, koufun shita)", + "wordSecond": "兴奋的 (xīngfèn de)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "誇り (ほこり, hokori)", + "wordSecond": "自豪 (zìháo)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "穏やかな (おだやかな, odayakana)", + "wordSecond": "平静的 (píngjìng de)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "感謝の (かんしゃの, kansha no)", + "wordSecond": "感激的 (gǎnjī de)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "悲しい (かなしい, kanashii)", + "wordSecond": "难过的 (nánguò de)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "怒っている (おこっている, okotte iru)", + "wordSecond": "生气的 (shēngqì de)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "怖い (こわい, kowai)", + "wordSecond": "可怕的 (kěpà de)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "心配な (しんぱいな, shinpaina)", + "wordSecond": "担心的 (dānxīn de)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "寂しい (さびしい, sabishii)", + "wordSecond": "孤单的 (gūdān de)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "恥ずかしい (はずかしい, hazukashii)", + "wordSecond": "害羞的 (hàixiū de)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "驚いた (おどろいた, odoroita)", + "wordSecond": "惊讶的 (jīngyà de)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "混乱した (こんらんした, konran shita)", + "wordSecond": "困惑的 (kùnhuò de)", + "createdAt": "2026-02-19T15:06:54.618Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_ko_pl_A2.json b/output/2026_02_19_emotions_feelings_ko_pl_A2.json new file mode 100644 index 0000000..1a3d414 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_ko_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:08:48.407Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "기쁜 (gippeun)", + "wordSecond": "szczęśliwy", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "행복한 (haengbokan)", + "wordSecond": "szczęśliwy", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "즐거운 (jeulgeoun)", + "wordSecond": "radosny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "신나는 (sinnaneun)", + "wordSecond": "podekscytowany", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "흥분한 (heungbunan)", + "wordSecond": "podekscytowany", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "자랑스러운 (jarangseureoun)", + "wordSecond": "dumny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "차분한 (chabunan)", + "wordSecond": "spokojny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "평화로운 (pyeonghwaroun)", + "wordSecond": "spokojny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "감사하는 (gamsahaneun)", + "wordSecond": "wdzięczny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "고마운 (gomaun)", + "wordSecond": "wdzięczny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "슬픈 (seulpeun)", + "wordSecond": "smutny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "우울한 (uulhan)", + "wordSecond": "smutny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "화난 (hwanan)", + "wordSecond": "zły", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "화가 난 (hwaga nan)", + "wordSecond": "zły", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "두려운 (duryeoun)", + "wordSecond": "przestraszony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "무서운 (museoun)", + "wordSecond": "przestraszony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "걱정하는 (geokjeonghaneun)", + "wordSecond": "zmartwiony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "걱정스러운 (geokjeongseureoun)", + "wordSecond": "zmartwiony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "외로운 (oeroun)", + "wordSecond": "samotny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "고독한 (godokan)", + "wordSecond": "samotny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "부끄러운 (bukkeureoun)", + "wordSecond": "zawstydzony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "수줍은 (sujubeun)", + "wordSecond": "nieśmiały", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "놀란 (nollan)", + "wordSecond": "zaskoczony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "놀라운 (nollaun)", + "wordSecond": "zaskakujący", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "혼란스러운 (hollanseureoun)", + "wordSecond": "zmieszany", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "당황한 (danghwanghan)", + "wordSecond": "zmieszany", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "지루한 (jiruhan)", + "wordSecond": "znudzony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "심심한 (simsimhan)", + "wordSecond": "znudzony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "피곤한 (pigonhan)", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "지친 (jichin)", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "호기심 많은 (hogisim maneun)", + "wordSecond": "ciekawy", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "궁금한 (gunggeumhan)", + "wordSecond": "ciekawy", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "사랑하는 (saranghaneun)", + "wordSecond": "zakochany", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "사랑스러운 (sarangseureoun)", + "wordSecond": "kochany", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "편안한 (pyeonanhan)", + "wordSecond": "wygodny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "안정된 (anjeongdoen)", + "wordSecond": "stabilny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "긴장한 (ginjanghan)", + "wordSecond": "spięty", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "불안한 (buranhan)", + "wordSecond": "niespokojny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "짜증나는 (jjajeungnaneun)", + "wordSecond": "irytujący", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "성난 (seongnan)", + "wordSecond": "rozwścieczony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "실망한 (silmanghan)", + "wordSecond": "rozczarowany", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "실망스러운 (silmangseureoun)", + "wordSecond": "rozczarowujący", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "기운찬 (giunch'an)", + "wordSecond": "energiczny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "활기찬 (hwalgich'an)", + "wordSecond": "energiczny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "만족한 (manjokan)", + "wordSecond": "zadowolony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "만족스러운 (manjokseureoun)", + "wordSecond": "zadowalający", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "희망찬 (huimangchan)", + "wordSecond": "pełen nadziei", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "낙관적인 (nakgwanjeogin)", + "wordSecond": "optymistyczny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "비관적인 (bigwanjeogin)", + "wordSecond": "pesymistyczny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "우울한 (uulhan)", + "wordSecond": "przygnębiony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "낙심한 (naksimhan)", + "wordSecond": "zniechęcony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "감동한 (gamdonghan)", + "wordSecond": "wzruszony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "감동받은 (gamdongbadeun)", + "wordSecond": "poruszony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "감격한 (gamgyeokhan)", + "wordSecond": "wzruszony", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "감격스러운 (gamgyeokseureoun)", + "wordSecond": "wzruszający", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "안타까운 (antakkaun)", + "wordSecond": "żałosny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "가여운 (gayeoun)", + "wordSecond": "żałosny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "부러운 (bureoun)", + "wordSecond": "zazdrosny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "질투하는 (jiltuhaneun)", + "wordSecond": "zazdrosny", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "질투스러운 (jiltuseureoun)", + "wordSecond": "zazdrościwy", + "createdAt": "2026-02-19T15:08:48.407Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_pt_de_A2.json b/output/2026_02_19_emotions_feelings_pt_de_A2.json new file mode 100644 index 0000000..5a52aef --- /dev/null +++ b/output/2026_02_19_emotions_feelings_pt_de_A2.json @@ -0,0 +1,763 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:00:14.127Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "feliz", + "wordSecond": "glücklich", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "alegre", + "wordSecond": "fröhlich", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "animado", + "wordSecond": "aufgeregt", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "orgulhoso", + "wordSecond": "stolz", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "calmo", + "wordSecond": "ruhig", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "grato", + "wordSecond": "dankbar", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "triste", + "wordSecond": "traurig", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "bravo", + "wordSecond": "wütend", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "assustado", + "wordSecond": "ängstlich", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "preocupado", + "wordSecond": "besorgt", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sozinho", + "wordSecond": "einsam", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "envergonhado", + "wordSecond": "beschämt", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "surpreso", + "wordSecond": "überrascht", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "confuso", + "wordSecond": "verwirrt", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "entediado", + "wordSecond": "gelangweilt", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cansado", + "wordSecond": "müde", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "curioso", + "wordSecond": "neugierig", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "contente", + "wordSecond": "zufrieden", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "encantado", + "wordSecond": "entzückt", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "esperançoso", + "wordSecond": "hoffnungsvoll", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "apaixonado", + "wordSecond": "verliebt", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "relaxado", + "wordSecond": "entspannt", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "satisfeito", + "wordSecond": "befriedigt", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "emocionado", + "wordSecond": "aufgeregt", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "radiante", + "wordSecond": "strahlend", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "desapontado", + "wordSecond": "enttäuscht", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "frustrado", + "wordSecond": "frustriert", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nervoso", + "wordSecond": "nervös", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ansioso", + "wordSecond": "ängstlich", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "deprimido", + "wordSecond": "deprimiert", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "desesperado", + "wordSecond": "verzweifelt", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chateado", + "wordSecond": "verärgert", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "irritado", + "wordSecond": "gereizt", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "furioso", + "wordSecond": "wütend", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "enjoado", + "wordSecond": "übel", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "com medo", + "wordSecond": "ängstlich", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "inseguro", + "wordSecond": "unsicher", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "culpado", + "wordSecond": "schuldig", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "arrependido", + "wordSecond": "reumütig", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "impressionado", + "wordSecond": "beeindruckt", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "confiante", + "wordSecond": "selbstbewusst", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tímido", + "wordSecond": "schüchtern", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "paciente", + "wordSecond": "geduldig", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "impaciente", + "wordSecond": "ungeduldig", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sonolento", + "wordSecond": "schläfrig", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "faminto", + "wordSecond": "hungrig", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sedento", + "wordSecond": "durstig", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "saudoso", + "wordSecond": "sehnsüchtig", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "com saudade", + "wordSecond": "sehnsüchtig", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "com ciúmes", + "wordSecond": "eifersüchtig", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "invejoso", + "wordSecond": "neidisch", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "aliviado", + "wordSecond": "erleichtert", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "perplexo", + "wordSecond": "verblüfft", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "desconfiado", + "wordSecond": "misstrauisch", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cético", + "wordSecond": "skeptisch", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "entusiasmado", + "wordSecond": "begeistert", + "createdAt": "2026-02-19T15:00:14.127Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_pt_fr_A2.json b/output/2026_02_19_emotions_feelings_pt_fr_A2.json new file mode 100644 index 0000000..a5a9b80 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_pt_fr_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:00:27.334Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "feliz", + "wordSecond": "heureux", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "triste", + "wordSecond": "triste", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "bravo", + "wordSecond": "en colère", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "assustado", + "wordSecond": "effrayé", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "animado", + "wordSecond": "excité", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "calmo", + "wordSecond": "calme", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "orgulhoso", + "wordSecond": "fier", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "grato", + "wordSecond": "reconnaissant", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "alegre", + "wordSecond": "joyeux", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "preocupado", + "wordSecond": "inquiet", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sozinho", + "wordSecond": "seul", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "envergonhado", + "wordSecond": "honteux", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "surpreso", + "wordSecond": "surpris", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "confuso", + "wordSecond": "confus", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "entediado", + "wordSecond": "ennuyé", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cansado", + "wordSecond": "fatigué", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "curioso", + "wordSecond": "curieux", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "nervoso", + "wordSecond": "nerveux", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ansioso", + "wordSecond": "anxieux", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tímido", + "wordSecond": "timide", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "relaxado", + "wordSecond": "détendu", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "impaciente", + "wordSecond": "impatient", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "esperançoso", + "wordSecond": "plein d'espoir", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "desapontado", + "wordSecond": "déçu", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "com medo", + "wordSecond": "peureux", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "apaixonado", + "wordSecond": "amoureux", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ciumento", + "wordSecond": "jaloux", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "invejoso", + "wordSecond": "envieux", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "satisfeito", + "wordSecond": "satisfait", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "contente", + "wordSecond": "content", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "irritado", + "wordSecond": "irrité", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "furioso", + "wordSecond": "furieux", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chateado", + "wordSecond": "contrarié", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tranquilo", + "wordSecond": "tranquille", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sereno", + "wordSecond": "serein", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "agitado", + "wordSecond": "agité", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "entusiasmado", + "wordSecond": "enthousiaste", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "encantado", + "wordSecond": "ravi", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "maravilhado", + "wordSecond": "émerveillé", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "desconfiado", + "wordSecond": "méfiant", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "desesperado", + "wordSecond": "désespéré", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "desanimado", + "wordSecond": "découragé", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "arrependido", + "wordSecond": "repentant", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "culpado", + "wordSecond": "coupable", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "inseguro", + "wordSecond": "insécurisé", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "seguro", + "wordSecond": "confiant", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "corajoso", + "wordSecond": "courageux", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "covarde", + "wordSecond": "lâche", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "paciente", + "wordSecond": "patient", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sensível", + "wordSecond": "sensible", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "emocionado", + "wordSecond": "ému", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "comovido", + "wordSecond": "touché", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "indiferente", + "wordSecond": "indifférent", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "entediado", + "wordSecond": "ennuyé", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sonolento", + "wordSecond": "somnolent", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vigoroso", + "wordSecond": "vigoureux", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fraco", + "wordSecond": "faible", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "forte", + "wordSecond": "fort", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "saudoso", + "wordSecond": "nostalgique", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "aliviado", + "wordSecond": "soulagé", + "createdAt": "2026-02-19T15:00:27.334Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_pt_it_A2.json b/output/2026_02_19_emotions_feelings_pt_it_A2.json new file mode 100644 index 0000000..ee28c6f --- /dev/null +++ b/output/2026_02_19_emotions_feelings_pt_it_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:00:41.011Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "feliz", + "wordSecond": "felice", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "alegre", + "wordSecond": "allegro", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "animado", + "wordSecond": "eccitato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "orgulhoso", + "wordSecond": "orgoglioso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "calmo", + "wordSecond": "calmo", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "grato", + "wordSecond": "grato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "triste", + "wordSecond": "triste", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bravo", + "wordSecond": "arrabbiato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "assustado", + "wordSecond": "spaventato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "preocupado", + "wordSecond": "preoccupato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sozinho", + "wordSecond": "solo", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "envergonhado", + "wordSecond": "vergognoso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "surpreso", + "wordSecond": "sorpreso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "confuso", + "wordSecond": "confuso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "entediado", + "wordSecond": "annoiato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cansado", + "wordSecond": "stanco", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "curioso", + "wordSecond": "curioso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "contente", + "wordSecond": "contento", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "radiante", + "wordSecond": "raggiante", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "encantado", + "wordSecond": "incantato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "apaixonado", + "wordSecond": "innamorato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "esperançoso", + "wordSecond": "speranzoso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "satisfeito", + "wordSecond": "soddisfatto", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "relaxado", + "wordSecond": "rilassato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tranquilo", + "wordSecond": "tranquillo", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "paciente", + "wordSecond": "paziente", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "amoroso", + "wordSecond": "amoroso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gentil", + "wordSecond": "gentile", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "agradecido", + "wordSecond": "riconoscente", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "encorajado", + "wordSecond": "incoraggiato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "deprimido", + "wordSecond": "depresso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "frustrado", + "wordSecond": "frustrato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nervoso", + "wordSecond": "nervoso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ansioso", + "wordSecond": "ansioso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "desapontado", + "wordSecond": "deluso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "culpado", + "wordSecond": "colpevole", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "inseguro", + "wordSecond": "insicuro", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "desesperado", + "wordSecond": "disperato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "irritado", + "wordSecond": "irritato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chateado", + "wordSecond": "seccato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "entediado", + "wordSecond": "noioso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "exausto", + "wordSecond": "esausto", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sonolento", + "wordSecond": "assonnato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "faminto", + "wordSecond": "affamato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sedento", + "wordSecond": "assetato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "impaciente", + "wordSecond": "impaziente", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "indeciso", + "wordSecond": "indeciso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "perdido", + "wordSecond": "perso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "desconfiado", + "wordSecond": "diffidente", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cauteloso", + "wordSecond": "cauto", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "timido", + "wordSecond": "timido", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "corajoso", + "wordSecond": "coraggioso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "forte", + "wordSecond": "forte", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fraco", + "wordSecond": "debole", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "doente", + "wordSecond": "malato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "saudável", + "wordSecond": "sano", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "livre", + "wordSecond": "libero", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ocupado", + "wordSecond": "occupato", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pensativo", + "wordSecond": "pensieroso", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sério", + "wordSecond": "serio", + "createdAt": "2026-02-19T15:00:41.011Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_pt_ja_A2.json b/output/2026_02_19_emotions_feelings_pt_ja_A2.json new file mode 100644 index 0000000..699528f --- /dev/null +++ b/output/2026_02_19_emotions_feelings_pt_ja_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:01:07.304Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "feliz", + "wordSecond": "嬉しい (うれしい, ureshii)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "alegre", + "wordSecond": "楽しい (たのしい, tanoshii)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "animado", + "wordSecond": "興奮した (こうふんした, koufun shita)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "orgulhoso", + "wordSecond": "誇り高い (ほこりだかい, hokori takai)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "calmo", + "wordSecond": "穏やかな (おだやかな, odayaka na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "grato", + "wordSecond": "感謝している (かんしゃしている, kansha shiteiru)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "triste", + "wordSecond": "悲しい (かなしい, kanashii)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "bravo", + "wordSecond": "怒った (おこった, okotta)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "com medo", + "wordSecond": "怖い (こわい, kowai)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "preocupado", + "wordSecond": "心配な (しんぱいな, shinpai na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sozinho", + "wordSecond": "寂しい (さびしい, sabishii)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "envergonhado", + "wordSecond": "恥ずかしい (はずかしい, hazukashii)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "surpreso", + "wordSecond": "驚いた (おどろいた, odoroi ta)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "confuso", + "wordSecond": "混乱した (こんらんした, konran shita)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "entediado", + "wordSecond": "退屈な (たいくつな, taikutsu na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cansado", + "wordSecond": "疲れた (つかれた, tsukareta)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "curioso", + "wordSecond": "好奇心旺盛な (こうきしんおうせいな, koukishin ousei na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "contente", + "wordSecond": "幸せな (しあわせな, shiawase na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "satisfeito", + "wordSecond": "満足した (まんぞくした, manzoku shita)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "encantado", + "wordSecond": "喜んでいる (よろこんでいる, yorokondeiru)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "apaixonado", + "wordSecond": "恋をしている (こいをしている, koi o shiteiru)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "esperançoso", + "wordSecond": "希望に満ちた (きぼうにみちた, kibou ni michita)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "entusiasmado", + "wordSecond": "熱心な (ねっしんな, nesshin na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "relaxado", + "wordSecond": "リラックスした (りらっくすした, rirakkusu shita)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "agradecido", + "wordSecond": "ありがたい (arigatai)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "deprimido", + "wordSecond": "落ち込んだ (おちこんだ, ochikonda)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "frustrado", + "wordSecond": "失望した (しつぼうした, shitsubou shita)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "nervoso", + "wordSecond": "緊張した (きんちょうした, kinchou shita)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ansioso", + "wordSecond": "不安な (ふあんな, fuan na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "assustado", + "wordSecond": "恐れた (おそれた, osoreta)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "desapontado", + "wordSecond": "がっかりした (gakkari shita)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "culpado", + "wordSecond": "罪悪感がある (ざいあくかんがある, zaiakukan ga aru)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ciumento", + "wordSecond": "嫉妬深い (しっとぶかい, shitto bukai)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "irritado", + "wordSecond": "イライラした (iraira shita)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "chateado", + "wordSecond": "不快な (ふかいな, fukai na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "desesperado", + "wordSecond": "絶望的な (ぜつぼうてきな, zetsubouteki na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "desanimado", + "wordSecond": "気落ちした (きおちした, kiochi shita)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "desconfortável", + "wordSecond": "居心地が悪い (いごこちがわるい, igokochi ga warui)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "impressionado", + "wordSecond": "感銘を受けた (かんめいをうけた, kanmei o uketa)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "perplexo", + "wordSecond": "当惑した (とうわくした, touwaku shita)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "indeciso", + "wordSecond": "迷っている (まよっている, mayotteiru)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "entediado", + "wordSecond": "飽きた (あきた, akita)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "exausto", + "wordSecond": "疲れ果てた (つかれはてた, tsukarehateta)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sonolento", + "wordSecond": "眠い (ねむい, nemui)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "interessado", + "wordSecond": "興味がある (きょうみがある, kyoumi ga aru)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "fascinado", + "wordSecond": "魅了された (みりょうされた, miryou sareta)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "maravilhado", + "wordSecond": "驚嘆した (きょうたんした, kyoutan shita)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "emocionado", + "wordSecond": "感動した (かんどうした, kandou shita)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "aliviado", + "wordSecond": "安心した (あんしんした, anshin shita)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "seguro", + "wordSecond": "安全な (あんぜんな, anzen na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "inseguro", + "wordSecond": "不安定な (ふあんていな, fuantei na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "desconfiado", + "wordSecond": "疑わしい (うたがわしい, utagawashii)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "desinteressado", + "wordSecond": "無関心な (むかんしんな, mukanshin na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "indiferente", + "wordSecond": "無関心な (むかんしんな, mukanshin na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "paciente", + "wordSecond": "忍耐強い (にんたいづよい, nintai zuyoi)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "impaciente", + "wordSecond": "せっかちな (sekkachi na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tímido", + "wordSecond": "恥ずかしがり屋 (はずかしがりや, hazukashigariya)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "extrovertido", + "wordSecond": "外向的な (がいこうてきな, gaikouteki na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "introvertido", + "wordSecond": "内向的な (ないこうてきな, naikouteki na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sensível", + "wordSecond": "敏感な (びんかんな, binkan na)", + "createdAt": "2026-02-19T15:01:07.304Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_pt_ko_A2.json b/output/2026_02_19_emotions_feelings_pt_ko_A2.json new file mode 100644 index 0000000..b08aee7 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_pt_ko_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:01:45.311Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "feliz", + "wordSecond": "기쁜 (gippeun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "alegre", + "wordSecond": "즐거운 (jeulgeoun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "animado", + "wordSecond": "신난 (sinnan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "orgulhoso", + "wordSecond": "자랑스러운 (jarangseureoun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "calmo", + "wordSecond": "차분한 (chabunhan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "grato", + "wordSecond": "감사하는 (gamsahaneun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "triste", + "wordSecond": "슬픈 (seulpeun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "bravo", + "wordSecond": "화난 (hwanan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "assustado", + "wordSecond": "무서운 (museoun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "preocupado", + "wordSecond": "걱정하는 (geokjeonghaneun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sozinho", + "wordSecond": "외로운 (oeroun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "envergonhado", + "wordSecond": "부끄러운 (bukkeureoun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "surpreso", + "wordSecond": "놀란 (nollan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "confuso", + "wordSecond": "혼란스러운 (hollanseureoun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "entediado", + "wordSecond": "지루한 (jiruhan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cansado", + "wordSecond": "피곤한 (pigonhan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "curioso", + "wordSecond": "호기심 많은 (hogisim maneun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "contente", + "wordSecond": "만족한 (manjokan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "encantado", + "wordSecond": "매혹된 (maehokdoen)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "apaixonado", + "wordSecond": "사랑에 빠진 (sarange ppajin)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "esperançoso", + "wordSecond": "희망찬 (huimangchan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "emocionado", + "wordSecond": "감동한 (gamdonghan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "satisfeito", + "wordSecond": "만족스러운 (manjokseureoun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "relaxado", + "wordSecond": "편안한 (pyeonanhan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "paciente", + "wordSecond": "참는 (chamneun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "amoroso", + "wordSecond": "사랑스러운 (sarangseureoun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "gentil", + "wordSecond": "친절한 (chinjeolhan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "agradecido", + "wordSecond": "고마운 (gomaun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "entusiasmado", + "wordSecond": "열정적인 (yeoljeongjeogin)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "encorajado", + "wordSecond": "격려받은 (gyeongnyeobadeun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "deprimido", + "wordSecond": "우울한 (uulhan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "frustrado", + "wordSecond": "좌절한 (jwajeolhan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ansioso", + "wordSecond": "불안한 (buranhan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "nervoso", + "wordSecond": "긴장한 (ginjanghan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "desapontado", + "wordSecond": "실망한 (silmanghan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ciumento", + "wordSecond": "질투하는 (jiltuhaneun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "entediado", + "wordSecond": "따분한 (ttabunhan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "desanimado", + "wordSecond": "낙담한 (nakdamhan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "culpado", + "wordSecond": "죄책감 느끼는 (joechaekgam neukkineun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "amedrontado", + "wordSecond": "겁먹은 (geopmeogeun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "enjoado", + "wordSecond": "짜증나는 (jjajeungnaneun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "desesperado", + "wordSecond": "절망적인 (jeolmangjeogin)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "chateado", + "wordSecond": "속상한 (soksanghan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "aborrecido", + "wordSecond": "성난 (seongnan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "desconfiado", + "wordSecond": "의심스러운 (uisimseureoun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "indiferente", + "wordSecond": "무관심한 (mugwansimhan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "impaciente", + "wordSecond": "조바심하는 (jobasimhaneun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "desconfortável", + "wordSecond": "불편한 (bulpyeonhan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "desmotivado", + "wordSecond": "의욕 없는 (uiyok eomneun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "desorientado", + "wordSecond": "방향을 잃은 (banghyangeul ireun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "impressionado", + "wordSecond": "감탄한 (gamtanhan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pensativo", + "wordSecond": "생각에 잠긴 (saenggage jamgin)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sonolento", + "wordSecond": "졸린 (jollin)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "faminto", + "wordSecond": "배고픈 (baegopeun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sedento", + "wordSecond": "목마른 (mongmareun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "saudoso", + "wordSecond": "그리운 (geuriun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tímido", + "wordSecond": "수줍은 (sujubeun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "corajoso", + "wordSecond": "용감한 (yonggamhan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "determinado", + "wordSecond": "결심한 (gyeolsimhan)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "inspirado", + "wordSecond": "영감을 받은 (yeonggameul badeun)", + "createdAt": "2026-02-19T15:01:45.311Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_pt_pl_A2.json b/output/2026_02_19_emotions_feelings_pt_pl_A2.json new file mode 100644 index 0000000..56a6a11 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_pt_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:01:58.875Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "feliz", + "wordSecond": "szczęśliwy", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "alegre", + "wordSecond": "radosny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "animado", + "wordSecond": "ożywiony", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "orgulhoso", + "wordSecond": "dumny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "calmo", + "wordSecond": "spokojny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "grato", + "wordSecond": "wdzięczny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "triste", + "wordSecond": "smutny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "zangado", + "wordSecond": "zły", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "com raiva", + "wordSecond": "gniewny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "assustado", + "wordSecond": "przestraszony", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "preocupado", + "wordSecond": "zmartwiony", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "solitário", + "wordSecond": "samotny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "envergonhado", + "wordSecond": "zawstydzony", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "surpreso", + "wordSecond": "zaskoczony", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "confuso", + "wordSecond": "zmieszany", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "entediado", + "wordSecond": "znudzony", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cansado", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "curioso", + "wordSecond": "ciekawy", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "contente", + "wordSecond": "zadowolony", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "encantado", + "wordSecond": "zachwycony", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "apaixonado", + "wordSecond": "zakochany", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "esperançoso", + "wordSecond": "pełen nadziei", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "satisfeito", + "wordSecond": "usatysfakcjonowany", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "relaxado", + "wordSecond": "zrelaksowany", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "seguro", + "wordSecond": "pewny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "impaciente", + "wordSecond": "niecierpliwy", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "nervoso", + "wordSecond": "nerwowy", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ansioso", + "wordSecond": "niespokojny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "com medo", + "wordSecond": "przerażony", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "deprimido", + "wordSecond": "przygnębiony", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "desapontado", + "wordSecond": "rozczarowany", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "frustrado", + "wordSecond": "sfrustrowany", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ciumento", + "wordSecond": "zazdrosny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "culpado", + "wordSecond": "winny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "enjoado", + "wordSecond": "znudzony", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "exausto", + "wordSecond": "wyczerpany", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "faminto", + "wordSecond": "głodny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sedento", + "wordSecond": "spragniony", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sonolento", + "wordSecond": "senny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "doente", + "wordSecond": "chory", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "saudoso", + "wordSecond": "tęskniący", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "emocionado", + "wordSecond": "podekscytowany", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "encorajado", + "wordSecond": "zachęcony", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "inspirado", + "wordSecond": "inspirowany", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "motivado", + "wordSecond": "zmotywowany", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "otimista", + "wordSecond": "optymistyczny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pessimista", + "wordSecond": "pesymistyczny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "realista", + "wordSecond": "realistyczny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sensível", + "wordSecond": "wrażliwy", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tímido", + "wordSecond": "nieśmiały", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "corajoso", + "wordSecond": "odważny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "forte", + "wordSecond": "silny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "fraco", + "wordSecond": "słaby", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "livre", + "wordSecond": "wolny", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ocupado", + "wordSecond": "zajęty", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "preguiçoso", + "wordSecond": "leniwy", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "surdo", + "wordSecond": "głuchy", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cego", + "wordSecond": "ślepy", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "mudo", + "wordSecond": "niemy", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "surpreso", + "wordSecond": "zdumiony", + "createdAt": "2026-02-19T15:01:58.875Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_pt_zh_A2.json b/output/2026_02_19_emotions_feelings_pt_zh_A2.json new file mode 100644 index 0000000..86c4472 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_pt_zh_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:01:23.497Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "feliz", + "wordSecond": "高兴 (gaoxing)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "alegre", + "wordSecond": "快乐 (kuaile)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "animado", + "wordSecond": "兴奋 (xingfen)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "orgulhoso", + "wordSecond": "骄傲 (jiao'ao)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "calmo", + "wordSecond": "平静 (pingjing)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "grato", + "wordSecond": "感激 (ganji)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "triste", + "wordSecond": "悲伤 (beishang)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "bravo", + "wordSecond": "生气 (shengqi)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "assustado", + "wordSecond": "害怕 (haipa)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "preocupado", + "wordSecond": "担心 (danxin)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sozinho", + "wordSecond": "孤独 (gudu)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "envergonhado", + "wordSecond": "羞愧 (xiukui)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "surpreso", + "wordSecond": "惊讶 (jingya)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "confuso", + "wordSecond": "困惑 (kunhuo)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "entediado", + "wordSecond": "无聊 (wuliao)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cansado", + "wordSecond": "累 (lei)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "curioso", + "wordSecond": "好奇 (haoqi)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "contente", + "wordSecond": "开心 (kaixin)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "satisfeito", + "wordSecond": "满意 (manyi)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "amoroso", + "wordSecond": "有爱 (you'ai)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "esperançoso", + "wordSecond": "有希望 (you xiwang)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "encantado", + "wordSecond": "高兴 (gaoxing)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "radiante", + "wordSecond": "容光焕发 (rongguang huanfa)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "apaixonado", + "wordSecond": "热情 (reqing)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "relaxado", + "wordSecond": "放松 (fangsong)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sereno", + "wordSecond": "安宁 (anning)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "paciente", + "wordSecond": "耐心 (naixin)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "agradecido", + "wordSecond": "感谢 (ganxie)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tocado", + "wordSecond": "感动 (gandong)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "desapontado", + "wordSecond": "失望 (shiwang)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "frustrado", + "wordSecond": "沮丧 (jusang)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "nervoso", + "wordSecond": "紧张 (jinzhang)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ansioso", + "wordSecond": "焦虑 (jiaolv)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "com medo", + "wordSecond": "恐惧 (kongju)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "chateado", + "wordSecond": "烦恼 (fannao)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "irritado", + "wordSecond": "恼怒 (naonu)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "furioso", + "wordSecond": "愤怒 (fennu)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ciumento", + "wordSecond": "嫉妒 (jidu)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "culpado", + "wordSecond": "内疚 (neijiu)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "humilhado", + "wordSecond": "羞辱 (xiuru)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "arrependido", + "wordSecond": "后悔 (houhui)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "desesperado", + "wordSecond": "绝望 (juewang)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "desanimado", + "wordSecond": "气馁 (qinei)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "indiferente", + "wordSecond": "冷漠 (lengmo)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "confiante", + "wordSecond": "自信 (zixin)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "corajoso", + "wordSecond": "勇敢 (yonggan)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "determinado", + "wordSecond": "坚定 (jianding)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "forte", + "wordSecond": "坚强 (jianqiang)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "gentil", + "wordSecond": "善良 (shanliang)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "simpático", + "wordSecond": "友好 (youhao)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "generoso", + "wordSecond": "慷慨 (kangkai)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "honesto", + "wordSecond": "诚实 (chengshi)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "leal", + "wordSecond": "忠诚 (zhongcheng)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "otimista", + "wordSecond": "乐观 (leguan)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pensativo", + "wordSecond": "沉思 (chensi)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sonolento", + "wordSecond": "困 (kun)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "faminto", + "wordSecond": "饿 (e)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sedento", + "wordSecond": "渴 (ke)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "doente", + "wordSecond": "生病 (shengbing)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "saudoso", + "wordSecond": "想念 (xiangnian)", + "createdAt": "2026-02-19T15:01:23.497Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_zh_ko_A2.json b/output/2026_02_19_emotions_feelings_zh_ko_A2.json new file mode 100644 index 0000000..f3bd874 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_zh_ko_A2.json @@ -0,0 +1,786 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:08:12.531Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "快乐 (kuàilè)", + "wordSecond": "행복하다 (haengbokhada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "高兴 (gāoxìng)", + "wordSecond": "기쁘다 (gippeuda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "兴奋 (xīngfèn)", + "wordSecond": "신나다 (sinnada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "自豪 (zìháo)", + "wordSecond": "자랑스럽다 (jarangseureopda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "平静 (píngjìng)", + "wordSecond": "평화롭다 (pyeonghwaropda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "感激 (gǎnjī)", + "wordSecond": "감사하다 (gamsahada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "开心 (kāixīn)", + "wordSecond": "즐겁다 (jeulgeopda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "满意 (mǎnyì)", + "wordSecond": "만족하다 (manjokada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "爱 (ài)", + "wordSecond": "사랑하다 (saranghada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "喜欢 (xǐhuan)", + "wordSecond": "좋아하다 (joahada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "有趣 (yǒuqù)", + "wordSecond": "재미있다 (jaemiitda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "舒服 (shūfu)", + "wordSecond": "편안하다 (pyeonanhada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "安全 (ānquán)", + "wordSecond": "안전하다 (anjeonhada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "希望 (xīwàng)", + "wordSecond": "희망하다 (huimanghada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "放松 (fàngsōng)", + "wordSecond": "편하다 (pyeonhada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "自信 (zìxìn)", + "wordSecond": "자신감 있다 (jasin-gam itda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "勇敢 (yǒnggǎn)", + "wordSecond": "용감하다 (yonggamhada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "热情 (rèqíng)", + "wordSecond": "열정적이다 (yeoljeongjeogida)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "乐观 (lèguān)", + "wordSecond": "낙관적이다 (nakgwanjeogida)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "友好 (yǒuhǎo)", + "wordSecond": "친절하다 (chinjeolhada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "悲伤 (bēishāng)", + "wordSecond": "슬프다 (seulpeuda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "难过 (nánguò)", + "wordSecond": "슬프다 (seulpeuda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "生气 (shēngqì)", + "wordSecond": "화나다 (hwanada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "愤怒 (fènnù)", + "wordSecond": "화내다 (hwanaeda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "害怕 (hàipà)", + "wordSecond": "무섭다 (museopda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "恐惧 (kǒngjù)", + "wordSecond": "두렵다 (duryeopda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "担心 (dānxīn)", + "wordSecond": "걱정하다 (geokjeonghada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "忧虑 (yōulǜ)", + "wordSecond": "걱정하다 (geokjeonghada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "孤独 (gūdú)", + "wordSecond": "외롭다 (oeropda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "寂寞 (jìmò)", + "wordSecond": "외롭다 (oeropda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "羞耻 (xiūchǐ)", + "wordSecond": "부끄럽다 (bukkeureopda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "尴尬 (gāngà)", + "wordSecond": "당황하다 (danghwanghada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "紧张 (jǐnzhāng)", + "wordSecond": "긴장하다 (ginjanghada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "压力 (yālì)", + "wordSecond": "스트레스 (seuteureseu)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "失望 (shīwàng)", + "wordSecond": "실망하다 (silmanghada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "嫉妒 (jídù)", + "wordSecond": "질투하다 (jiltuhada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "无聊 (wúliáo)", + "wordSecond": "지루하다 (jiruhada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "累 (lèi)", + "wordSecond": "피곤하다 (pigonhada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "困 (kùn)", + "wordSecond": "졸리다 (jollida)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "饿 (è)", + "wordSecond": "배고프다 (baegopeuda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "渴 (kě)", + "wordSecond": "목마르다 (mongmareuda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "痛 (tòng)", + "wordSecond": "아프다 (apeuda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "惊讶 (jīngyà)", + "wordSecond": "놀라다 (nollada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "吃惊 (chījīng)", + "wordSecond": "놀라다 (nollada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "困惑 (kùnhuò)", + "wordSecond": "혼란스럽다 (hollanseureopda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "好奇 (hàoqí)", + "wordSecond": "호기심 있다 (hogisim itda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "无聊 (wúliáo)", + "wordSecond": "심심하다 (simsimhada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "疲倦 (píjuàn)", + "wordSecond": "피곤하다 (pigonhada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "困倦 (kùnjuàn)", + "wordSecond": "졸리다 (jollida)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "想念 (xiǎngniàn)", + "wordSecond": "그리워하다 (geuriwohada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "想念 (xiǎngniàn)", + "wordSecond": "보고 싶다 (bogo sipda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "害羞 (hàixiū)", + "wordSecond": "수줍다 (sujupda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "兴奋 (xīngfèn)", + "wordSecond": "흥분하다 (heungbunhada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "平静 (píngjìng)", + "wordSecond": "차분하다 (chabunhada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "感激 (gǎnjī)", + "wordSecond": "고맙다 (gomapda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "自豪 (zìháo)", + "wordSecond": "자부심 있다 (jabusim itda)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "害怕 (hàipà)", + "wordSecond": "겁나다 (geomnada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "担心 (dānxīn)", + "wordSecond": "염려하다 (yeomnyeohada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "孤独 (gūdú)", + "wordSecond": "고독하다 (godokada)", + "createdAt": "2026-02-19T15:08:12.531Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_emotions_feelings_zh_pl_A2.json b/output/2026_02_19_emotions_feelings_zh_pl_A2.json new file mode 100644 index 0000000..fe94d24 --- /dev/null +++ b/output/2026_02_19_emotions_feelings_zh_pl_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:08:27.689Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Emotions & Feelings" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Emotions & Feelings" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "高兴 (gaoxing)", + "wordSecond": "szczęśliwy", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "快乐 (kuaile)", + "wordSecond": "radosny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "兴奋 (xingfen)", + "wordSecond": "podekscytowany", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "自豪 (zihao)", + "wordSecond": "dumny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "平静 (pingjing)", + "wordSecond": "spokojny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "感激 (ganji)", + "wordSecond": "wdzięczny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "幸福 (xingfu)", + "wordSecond": "szczęśliwy", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "满意 (manyi)", + "wordSecond": "zadowolony", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "乐观 (leguan)", + "wordSecond": "optymistyczny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "热情 (reqing)", + "wordSecond": "entuzjastyczny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "有趣 (youqu)", + "wordSecond": "zabawny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "可爱 (ke'ai)", + "wordSecond": "słodki", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "强大 (qiangda)", + "wordSecond": "silny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "勇敢 (yonggan)", + "wordSecond": "odważny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "放松 (fangsong)", + "wordSecond": "zrelaksowany", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "悲伤 (beishang)", + "wordSecond": "smutny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "生气 (shengqi)", + "wordSecond": "zły", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "害怕 (haipa)", + "wordSecond": "przestraszony", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "担心 (danxin)", + "wordSecond": "zmartwiony", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "孤独 (gudu)", + "wordSecond": "samotny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "羞愧 (xiukui)", + "wordSecond": "zawstydzony", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "难过 (nanguo)", + "wordSecond": "zasmucony", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "愤怒 (fennu)", + "wordSecond": "wściekły", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "恐惧 (kongju)", + "wordSecond": "przerażony", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "紧张 (jinzhang)", + "wordSecond": "nerwowy", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "嫉妒 (jidu)", + "wordSecond": "zazdrosny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "失望 (shiwang)", + "wordSecond": "rozczarowany", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "无聊 (wuliao)", + "wordSecond": "znudzony", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "疲惫 (pibei)", + "wordSecond": "zmęczony", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "痛苦 (tongku)", + "wordSecond": "cierpiący", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "尴尬 (ganga)", + "wordSecond": "zakłopotany", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "不安 (bu'an)", + "wordSecond": "niespokojny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "惊讶 (jingya)", + "wordSecond": "zaskoczony", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "困惑 (kunhuo)", + "wordSecond": "zdezorientowany", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "好奇 (haoqi)", + "wordSecond": "ciekawy", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "困 (kun)", + "wordSecond": "senny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "饿 (e)", + "wordSecond": "głodny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "渴 (ke)", + "wordSecond": "spragniony", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "冷 (leng)", + "wordSecond": "zimny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "热 (re)", + "wordSecond": "gorący", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "舒服 (shufu)", + "wordSecond": "wygodny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "不舒服 (bushufu)", + "wordSecond": "niewygodny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "健康 (jiankang)", + "wordSecond": "zdrowy", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "生病 (shengbing)", + "wordSecond": "chory", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "忙 (mang)", + "wordSecond": "zajęty", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "闲 (xian)", + "wordSecond": "wolny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "安全 (anquan)", + "wordSecond": "bezpieczny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "危险 (weixian)", + "wordSecond": "niebezpieczny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "容易 (rongyi)", + "wordSecond": "łatwy", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "难 (nan)", + "wordSecond": "trudny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "重要 (zhongyao)", + "wordSecond": "ważny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "不重要 (buzhongyao)", + "wordSecond": "nieważny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "漂亮 (piaoliang)", + "wordSecond": "ładny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "丑 (chou)", + "wordSecond": "brzydki", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "好 (hao)", + "wordSecond": "dobry", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "坏 (huai)", + "wordSecond": "zły", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "快 (kuai)", + "wordSecond": "szybki", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "慢 (man)", + "wordSecond": "wolny", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "年轻 (nianqing)", + "wordSecond": "młody", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "老 (lao)", + "wordSecond": "stary", + "createdAt": "2026-02-19T15:08:27.689Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_environment_climate_en_es_B1.json b/output/2026_02_19_environment_climate_en_es_B1.json new file mode 100644 index 0000000..d8dafc1 --- /dev/null +++ b/output/2026_02_19_environment_climate_en_es_B1.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:51:08.238Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Environment & Climate" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Environment & Climate" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "forest", + "wordSecond": "bosque", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ocean", + "wordSecond": "océano", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "desert", + "wordSecond": "desierto", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "glacier", + "wordSecond": "glaciar", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "river", + "wordSecond": "río", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mountain", + "wordSecond": "montaña", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "valley", + "wordSecond": "valle", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lake", + "wordSecond": "lago", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "coast", + "wordSecond": "costa", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "island", + "wordSecond": "isla", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hill", + "wordSecond": "colina", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "plain", + "wordSecond": "llanura", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "waterfall", + "wordSecond": "cascada", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cave", + "wordSecond": "cueva", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "beach", + "wordSecond": "playa", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pollution", + "wordSecond": "contaminación", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "deforestation", + "wordSecond": "deforestación", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "drought", + "wordSecond": "sequía", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "flood", + "wordSecond": "inundación", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "emissions", + "wordSecond": "emisiones", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "waste", + "wordSecond": "residuos", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "litter", + "wordSecond": "basura", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "smog", + "wordSecond": "smog", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "oil spill", + "wordSecond": "derrame de petróleo", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "acid rain", + "wordSecond": "lluvia ácida", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "recycling", + "wordSecond": "reciclaje", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "renewable", + "wordSecond": "renovable", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "carbon footprint", + "wordSecond": "huella de carbono", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "conservation", + "wordSecond": "conservación", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sustainable", + "wordSecond": "sostenible", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "compost", + "wordSecond": "compost", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "biodegradable", + "wordSecond": "biodegradable", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "solar energy", + "wordSecond": "energía solar", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wind energy", + "wordSecond": "energía eólica", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "greenhouse effect", + "wordSecond": "efecto invernadero", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ozone", + "wordSecond": "ozono", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "temperature", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "extreme weather", + "wordSecond": "clima extremo", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "climate", + "wordSecond": "clima", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "weather", + "wordSecond": "tiempo", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rainfall", + "wordSecond": "precipitación", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "snowfall", + "wordSecond": "nevada", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "storm", + "wordSecond": "tormenta", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hurricane", + "wordSecond": "huracán", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tornado", + "wordSecond": "tornado", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "heatwave", + "wordSecond": "ola de calor", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cold wave", + "wordSecond": "ola de frío", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "global warming", + "wordSecond": "calentamiento global", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "climate change", + "wordSecond": "cambio climático", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "atmosphere", + "wordSecond": "atmósfera", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "air", + "wordSecond": "aire", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "water", + "wordSecond": "agua", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "soil", + "wordSecond": "suelo", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nature", + "wordSecond": "naturaleza", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wildlife", + "wordSecond": "vida silvestre", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "species", + "wordSecond": "especies", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "endangered", + "wordSecond": "en peligro de extinción", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "habitat", + "wordSecond": "hábitat", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ecosystem", + "wordSecond": "ecosistema", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "park", + "wordSecond": "parque", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "reserve", + "wordSecond": "reserva", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "protection", + "wordSecond": "protección", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "clean", + "wordSecond": "limpio", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dirty", + "wordSecond": "sucio", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "toxic", + "wordSecond": "tóxico", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "plastic", + "wordSecond": "plástico", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "paper", + "wordSecond": "papel", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "glass", + "wordSecond": "vidrio", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "metal", + "wordSecond": "metal", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "energy", + "wordSecond": "energía", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fuel", + "wordSecond": "combustible", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "gas", + "wordSecond": "gas", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "electricity", + "wordSecond": "electricidad", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "transport", + "wordSecond": "transporte", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "industry", + "wordSecond": "industria", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "agriculture", + "wordSecond": "agricultura", + "createdAt": "2026-02-19T15:51:08.238Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_environment_climate_en_pt_B1.json b/output/2026_02_19_environment_climate_en_pt_B1.json new file mode 100644 index 0000000..d3a097d --- /dev/null +++ b/output/2026_02_19_environment_climate_en_pt_B1.json @@ -0,0 +1,1085 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T16:02:26.505Z", + "metadata": { + "itemCount": 82, + "categoryCount": 1, + "exportScope": "Category: Environment & Climate" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Environment & Climate" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "forest", + "wordSecond": "floresta", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ocean", + "wordSecond": "oceano", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "desert", + "wordSecond": "deserto", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "glacier", + "wordSecond": "geleira", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "river", + "wordSecond": "rio", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mountain", + "wordSecond": "montanha", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "valley", + "wordSecond": "vale", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "coast", + "wordSecond": "costa", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lake", + "wordSecond": "lago", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "island", + "wordSecond": "ilha", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "beach", + "wordSecond": "praia", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cave", + "wordSecond": "caverna", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "waterfall", + "wordSecond": "cachoeira", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "volcano", + "wordSecond": "vulcão", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hill", + "wordSecond": "colina", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "plain", + "wordSecond": "planície", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cliff", + "wordSecond": "penhasco", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pollution", + "wordSecond": "poluição", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "deforestation", + "wordSecond": "desmatamento", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "drought", + "wordSecond": "seca", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "flood", + "wordSecond": "inundação", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "emissions", + "wordSecond": "emissões", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "waste", + "wordSecond": "lixo", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "garbage", + "wordSecond": "lixo", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "smog", + "wordSecond": "poluição do ar", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "contamination", + "wordSecond": "contaminação", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "oil spill", + "wordSecond": "vazamento de óleo", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "litter", + "wordSecond": "lixo", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "acid rain", + "wordSecond": "chuva ácida", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "soil erosion", + "wordSecond": "erosão do solo", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wildfire", + "wordSecond": "incêndio florestal", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "extinction", + "wordSecond": "extinção", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "habitat loss", + "wordSecond": "perda de habitat", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "overfishing", + "wordSecond": "pesca excessiva", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "recycling", + "wordSecond": "reciclagem", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "renewable", + "wordSecond": "renovável", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "carbon footprint", + "wordSecond": "pegada de carbono", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "conservation", + "wordSecond": "conservação", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sustainability", + "wordSecond": "sustentabilidade", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "eco-friendly", + "wordSecond": "ecologicamente correto", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "compost", + "wordSecond": "composto", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "biodegradable", + "wordSecond": "biodegradável", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "solar energy", + "wordSecond": "energia solar", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wind energy", + "wordSecond": "energia eólica", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hydropower", + "wordSecond": "energia hidrelétrica", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "organic", + "wordSecond": "orgânico", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "greenhouse effect", + "wordSecond": "efeito estufa", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ozone", + "wordSecond": "ozônio", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "temperature", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "extreme weather", + "wordSecond": "clima extremo", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "climate change", + "wordSecond": "mudança climática", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "global warming", + "wordSecond": "aquecimento global", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "weather", + "wordSecond": "clima", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rainfall", + "wordSecond": "precipitação", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "humidity", + "wordSecond": "umidade", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "storm", + "wordSecond": "tempestade", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hurricane", + "wordSecond": "furacão", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tornado", + "wordSecond": "tornado", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "blizzard", + "wordSecond": "nevasca", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "heatwave", + "wordSecond": "onda de calor", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cold snap", + "wordSecond": "onda de frio", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fog", + "wordSecond": "névoa", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mist", + "wordSecond": "névoa", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "breeze", + "wordSecond": "brisa", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wind", + "wordSecond": "vento", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sunshine", + "wordSecond": "sol", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cloud", + "wordSecond": "nuvem", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sky", + "wordSecond": "céu", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "horizon", + "wordSecond": "horizonte", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "environment", + "wordSecond": "meio ambiente", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "nature", + "wordSecond": "natureza", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wildlife", + "wordSecond": "vida selvagem", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "plant", + "wordSecond": "planta", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tree", + "wordSecond": "árvore", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "flower", + "wordSecond": "flor", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "grass", + "wordSecond": "grama", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "soil", + "wordSecond": "solo", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rock", + "wordSecond": "rocha", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sand", + "wordSecond": "areia", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ice", + "wordSecond": "gelo", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "snow", + "wordSecond": "neve", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rain", + "wordSecond": "chuva", + "createdAt": "2026-02-19T16:02:26.505Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_environment_climate_es_pt_B1.json b/output/2026_02_19_environment_climate_es_pt_B1.json new file mode 100644 index 0000000..ee0c9bf --- /dev/null +++ b/output/2026_02_19_environment_climate_es_pt_B1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T16:02:42.321Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Environment & Climate" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Environment & Climate" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bosque", + "wordSecond": "floresta", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "océano", + "wordSecond": "oceano", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desierto", + "wordSecond": "deserto", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "glaciar", + "wordSecond": "geleira", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "río", + "wordSecond": "rio", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "montaña", + "wordSecond": "montanha", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "valle", + "wordSecond": "vale", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lago", + "wordSecond": "lago", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "playa", + "wordSecond": "praia", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "isla", + "wordSecond": "ilha", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "selva", + "wordSecond": "selva", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "costa", + "wordSecond": "costa", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bahía", + "wordSecond": "baía", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "volcán", + "wordSecond": "vulcão", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cueva", + "wordSecond": "caverna", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cascada", + "wordSecond": "cachoeira", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "arroyo", + "wordSecond": "riacho", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "colina", + "wordSecond": "colina", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "llanura", + "wordSecond": "planície", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "acantilado", + "wordSecond": "penhasco", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "contaminación", + "wordSecond": "poluição", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "deforestación", + "wordSecond": "desmatamento", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sequía", + "wordSecond": "seca", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "inundación", + "wordSecond": "inundação", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "emisiones", + "wordSecond": "emissões", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "residuos", + "wordSecond": "resíduos", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "basura", + "wordSecond": "lixo", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "smog", + "wordSecond": "nevoeiro", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "derrame", + "wordSecond": "vazamento", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escasez", + "wordSecond": "escassez", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "erosión", + "wordSecond": "erosão", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vertido", + "wordSecond": "descarga", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tóxico", + "wordSecond": "tóxico", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "plástico", + "wordSecond": "plástico", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reciclaje", + "wordSecond": "reciclagem", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "renovable", + "wordSecond": "renovável", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "huella de carbono", + "wordSecond": "pegada de carbono", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "conservación", + "wordSecond": "conservação", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sostenible", + "wordSecond": "sustentável", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "energía solar", + "wordSecond": "energia solar", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "energía eólica", + "wordSecond": "energia eólica", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "eficiencia energética", + "wordSecond": "eficiência energética", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "compostaje", + "wordSecond": "compostagem", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "biodegradable", + "wordSecond": "biodegradável", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ecológico", + "wordSecond": "ecológico", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "protección", + "wordSecond": "proteção", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "biodiversidad", + "wordSecond": "biodiversidade", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reutilizar", + "wordSecond": "reutilizar", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reducir", + "wordSecond": "reduzir", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "efecto invernadero", + "wordSecond": "efeito estufa", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "capa de ozono", + "wordSecond": "camada de ozônio", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "temperatura", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "clima", + "wordSecond": "clima", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "calentamiento global", + "wordSecond": "aquecimento global", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cambio climático", + "wordSecond": "mudança climática", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tiempo extremo", + "wordSecond": "tempo extremo", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "huracán", + "wordSecond": "furacão", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tornado", + "wordSecond": "tornado", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tormenta", + "wordSecond": "tempestade", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ola de calor", + "wordSecond": "onda de calor", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ola de frío", + "wordSecond": "onda de frio", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nieve", + "wordSecond": "neve", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hielo", + "wordSecond": "gelo", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lluvia", + "wordSecond": "chuva", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "viento", + "wordSecond": "vento", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nube", + "wordSecond": "nuvem", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sol", + "wordSecond": "sol", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "atmósfera", + "wordSecond": "atmosfera", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "medio ambiente", + "wordSecond": "meio ambiente", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "naturaleza", + "wordSecond": "natureza", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ecosistema", + "wordSecond": "ecossistema", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hábitat", + "wordSecond": "habitat", + "createdAt": "2026-02-19T16:02:42.321Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_de_fr_A1.json b/output/2026_02_19_family_home_de_fr_A1.json new file mode 100644 index 0000000..2d538be --- /dev/null +++ b/output/2026_02_19_family_home_de_fr_A1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:20:53.568Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Mutter", + "wordSecond": "mère", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Vater", + "wordSecond": "père", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bruder", + "wordSecond": "frère", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schwester", + "wordSecond": "soeur", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Sohn", + "wordSecond": "fils", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tochter", + "wordSecond": "fille", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Großmutter", + "wordSecond": "grand-mère", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Großvater", + "wordSecond": "grand-père", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Eltern", + "wordSecond": "parents", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Familie", + "wordSecond": "famille", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Baby", + "wordSecond": "bébé", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kind", + "wordSecond": "enfant", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Onkel", + "wordSecond": "oncle", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tante", + "wordSecond": "tante", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Cousin", + "wordSecond": "cousin", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Cousine", + "wordSecond": "cousine", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Haus", + "wordSecond": "maison", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wohnung", + "wordSecond": "appartement", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Zimmer", + "wordSecond": "pièce", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Küche", + "wordSecond": "cuisine", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schlafzimmer", + "wordSecond": "chambre", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Badezimmer", + "wordSecond": "salle de bain", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wohnzimmer", + "wordSecond": "salon", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tür", + "wordSecond": "porte", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fenster", + "wordSecond": "fenêtre", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wand", + "wordSecond": "mur", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Decke", + "wordSecond": "plafond", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fußboden", + "wordSecond": "sol", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Treppe", + "wordSecond": "escalier", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tisch", + "wordSecond": "table", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Stuhl", + "wordSecond": "chaise", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Sofa", + "wordSecond": "canapé", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bett", + "wordSecond": "lit", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schrank", + "wordSecond": "armoire", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Regal", + "wordSecond": "étagère", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Lampe", + "wordSecond": "lampe", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Teppich", + "wordSecond": "tapis", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kühlschrank", + "wordSecond": "réfrigérateur", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Herd", + "wordSecond": "cuisinière", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ofen", + "wordSecond": "four", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Spüle", + "wordSecond": "évier", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Waschbecken", + "wordSecond": "lavabo", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Toilette", + "wordSecond": "toilettes", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Dusche", + "wordSecond": "douche", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Badewanne", + "wordSecond": "baignoire", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Spiegel", + "wordSecond": "miroir", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bettdecke", + "wordSecond": "couverture", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kissen", + "wordSecond": "oreiller", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Vorhang", + "wordSecond": "rideau", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bild", + "wordSecond": "tableau", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Uhr", + "wordSecond": "horloge", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Buch", + "wordSecond": "livre", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fernseher", + "wordSecond": "télévision", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Telefon", + "wordSecond": "téléphone", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Computer", + "wordSecond": "ordinateur", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tasse", + "wordSecond": "tasse", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Glas", + "wordSecond": "verre", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Teller", + "wordSecond": "assiette", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Messer", + "wordSecond": "couteau", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gabel", + "wordSecond": "fourchette", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Löffel", + "wordSecond": "cuillère", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Topf", + "wordSecond": "casserole", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pfanne", + "wordSecond": "poêle", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Licht", + "wordSecond": "lumière", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schlüssel", + "wordSecond": "clé", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tasche", + "wordSecond": "sac", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schuhe", + "wordSecond": "chaussures", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kleidung", + "wordSecond": "vêtements", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Spielzeug", + "wordSecond": "jouet", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Blume", + "wordSecond": "fleur", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pflanze", + "wordSecond": "plante", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hund", + "wordSecond": "chien", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Katze", + "wordSecond": "chat", + "createdAt": "2026-02-19T14:20:53.568Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_de_it_A1.json b/output/2026_02_19_family_home_de_it_A1.json new file mode 100644 index 0000000..2f338ab --- /dev/null +++ b/output/2026_02_19_family_home_de_it_A1.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:21:08.194Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mutter", + "wordSecond": "madre", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Vater", + "wordSecond": "padre", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bruder", + "wordSecond": "fratello", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schwester", + "wordSecond": "sorella", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sohn", + "wordSecond": "figlio", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tochter", + "wordSecond": "figlia", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Großmutter", + "wordSecond": "nonna", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Großvater", + "wordSecond": "nonno", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Eltern", + "wordSecond": "genitori", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kinder", + "wordSecond": "bambini", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Familie", + "wordSecond": "famiglia", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Baby", + "wordSecond": "bambino", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Oma", + "wordSecond": "nonna", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Opa", + "wordSecond": "nonno", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Onkel", + "wordSecond": "zio", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tante", + "wordSecond": "zia", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Cousin", + "wordSecond": "cugino", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Cousine", + "wordSecond": "cugina", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Enkel", + "wordSecond": "nipote", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Enkelin", + "wordSecond": "nipote", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Haus", + "wordSecond": "casa", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wohnung", + "wordSecond": "appartamento", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zimmer", + "wordSecond": "stanza", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Küche", + "wordSecond": "cucina", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schlafzimmer", + "wordSecond": "camera da letto", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Badezimmer", + "wordSecond": "bagno", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wohnzimmer", + "wordSecond": "soggiorno", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Esszimmer", + "wordSecond": "sala da pranzo", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Flur", + "wordSecond": "corridoio", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tür", + "wordSecond": "porta", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fenster", + "wordSecond": "finestra", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wand", + "wordSecond": "muro", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Decke", + "wordSecond": "soffitto", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Boden", + "wordSecond": "pavimento", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Treppe", + "wordSecond": "scala", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Garten", + "wordSecond": "giardino", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tisch", + "wordSecond": "tavolo", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Stuhl", + "wordSecond": "sedia", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bett", + "wordSecond": "letto", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sofa", + "wordSecond": "divano", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sessel", + "wordSecond": "poltrona", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schrank", + "wordSecond": "armadio", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Regal", + "wordSecond": "scaffale", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Lampe", + "wordSecond": "lampada", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Uhr", + "wordSecond": "orologio", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bild", + "wordSecond": "quadro", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Teppich", + "wordSecond": "tappeto", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kissen", + "wordSecond": "cuscino", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Decke", + "wordSecond": "coperta", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Spiegel", + "wordSecond": "specchio", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Badewanne", + "wordSecond": "vasca da bagno", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Dusche", + "wordSecond": "doccia", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Waschbecken", + "wordSecond": "lavandino", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Toilette", + "wordSecond": "toilette", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Herd", + "wordSecond": "fornello", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ofen", + "wordSecond": "forno", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kühlschrank", + "wordSecond": "frigorifero", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Spüle", + "wordSecond": "lavello", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schublade", + "wordSecond": "cassetto", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Besteck", + "wordSecond": "posate", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Teller", + "wordSecond": "piatto", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Glas", + "wordSecond": "bicchiere", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tasse", + "wordSecond": "tazza", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Löffel", + "wordSecond": "cucchiaio", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gabel", + "wordSecond": "forchetta", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Messer", + "wordSecond": "coltello", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Buch", + "wordSecond": "libro", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zeitung", + "wordSecond": "giornale", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fernseher", + "wordSecond": "televisione", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Radio", + "wordSecond": "radio", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Telefon", + "wordSecond": "telefono", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schlüssel", + "wordSecond": "chiave", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Blume", + "wordSecond": "fiore", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Katze", + "wordSecond": "gatto", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hund", + "wordSecond": "cane", + "createdAt": "2026-02-19T14:21:08.194Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_de_ja_A1.json b/output/2026_02_19_family_home_de_ja_A1.json new file mode 100644 index 0000000..65199cd --- /dev/null +++ b/output/2026_02_19_family_home_de_ja_A1.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:21:29.906Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Mutter", + "wordSecond": "母 (はは, haha)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Vater", + "wordSecond": "父 (ちち, chichi)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Bruder", + "wordSecond": "兄 (あに, ani) / 弟 (おとうと, otouto)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schwester", + "wordSecond": "姉 (あね, ane) / 妹 (いもうと, imouto)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Großmutter", + "wordSecond": "祖母 (そぼ, sobo)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Großvater", + "wordSecond": "祖父 (そふ, sofu)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Eltern", + "wordSecond": "両親 (りょうしん, ryoushin)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kind", + "wordSecond": "子供 (こども, kodomo)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Sohn", + "wordSecond": "息子 (むすこ, musuko)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tochter", + "wordSecond": "娘 (むすめ, musume)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Onkel", + "wordSecond": "おじ (oji)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tante", + "wordSecond": "おば (oba)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Cousin", + "wordSecond": "いとこ (itoko)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Cousine", + "wordSecond": "いとこ (itoko)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Familie", + "wordSecond": "家族 (かぞく, kazoku)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Haus", + "wordSecond": "家 (いえ, ie)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wohnung", + "wordSecond": "アパート (apaato)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Zimmer", + "wordSecond": "部屋 (へや, heya)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Küche", + "wordSecond": "台所 (だいどころ, daidokoro)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schlafzimmer", + "wordSecond": "寝室 (しんしつ, shinshitsu)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Badezimmer", + "wordSecond": "浴室 (よくしつ, yokushitsu)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wohnzimmer", + "wordSecond": "居間 (いま, ima)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tür", + "wordSecond": "ドア (doa)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fenster", + "wordSecond": "窓 (まど, mado)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wand", + "wordSecond": "壁 (かべ, kabe)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Decke", + "wordSecond": "天井 (てんじょう, tenjou)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Boden", + "wordSecond": "床 (ゆか, yuka)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Treppe", + "wordSecond": "階段 (かいだん, kaidan)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tisch", + "wordSecond": "テーブル (teeburu)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Stuhl", + "wordSecond": "椅子 (いす, isu)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Bett", + "wordSecond": "ベッド (beddo)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Sofa", + "wordSecond": "ソファ (sofa)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Lampe", + "wordSecond": "ランプ (ranpu)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schrank", + "wordSecond": "戸棚 (とだな, todana)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Regal", + "wordSecond": "本棚 (ほんだな, hondana)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kühlschrank", + "wordSecond": "冷蔵庫 (れいぞうこ, reizouko)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Herd", + "wordSecond": "コンロ (konro)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ofen", + "wordSecond": "オーブン (oobun)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Waschmaschine", + "wordSecond": "洗濯機 (せんたくき, sentakuki)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fernseher", + "wordSecond": "テレビ (terebi)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Telefon", + "wordSecond": "電話 (でんわ, denwa)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Uhr", + "wordSecond": "時計 (とけい, tokei)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Bild", + "wordSecond": "絵 (え, e)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Spiegel", + "wordSecond": "鏡 (かがみ, kagami)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Teppich", + "wordSecond": "絨毯 (じゅうたん, juutan)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Vorhang", + "wordSecond": "カーテン (kaaten)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kissen", + "wordSecond": "枕 (まくら, makura)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Decke", + "wordSecond": "毛布 (もうふ, moufu)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Teller", + "wordSecond": "皿 (さら, sara)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Glas", + "wordSecond": "グラス (gurasu)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tasse", + "wordSecond": "カップ (kappu)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Messer", + "wordSecond": "ナイフ (naifu)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Gabel", + "wordSecond": "フォーク (fooku)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Löffel", + "wordSecond": "スプーン (supuun)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Topf", + "wordSecond": "鍋 (なべ, nabe)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Pfanne", + "wordSecond": "フライパン (furaipan)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Buch", + "wordSecond": "本 (ほん, hon)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Zeitung", + "wordSecond": "新聞 (しんぶん, shinbun)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Stift", + "wordSecond": "ペン (pen)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Papier", + "wordSecond": "紙 (かみ, kami)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schlüssel", + "wordSecond": "鍵 (かぎ, kagi)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Geld", + "wordSecond": "お金 (おかね, okane)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Blume", + "wordSecond": "花 (はな, hana)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Pflanze", + "wordSecond": "植物 (しょくぶつ, shokubutsu)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hund", + "wordSecond": "犬 (いぬ, inu)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Katze", + "wordSecond": "猫 (ねこ, neko)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Vogel", + "wordSecond": "鳥 (とり, tori)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fisch", + "wordSecond": "魚 (さかな, sakana)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Auto", + "wordSecond": "車 (くるま, kuruma)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fahrrad", + "wordSecond": "自転車 (じてんしゃ, jitensha)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Garten", + "wordSecond": "庭 (にわ, niwa)", + "createdAt": "2026-02-19T14:21:29.906Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_de_ko_A1.json b/output/2026_02_19_family_home_de_ko_A1.json new file mode 100644 index 0000000..317b48b --- /dev/null +++ b/output/2026_02_19_family_home_de_ko_A1.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:22:07.791Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Mutter", + "wordSecond": "어머니 (eomeoni)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Vater", + "wordSecond": "아버지 (abeoji)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Eltern", + "wordSecond": "부모님 (bumonim)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bruder", + "wordSecond": "형제 (hyeongje)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schwester", + "wordSecond": "자매 (jamae)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Geschwister", + "wordSecond": "형제자매 (hyeongjejamae)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Sohn", + "wordSecond": "아들 (adeul)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Tochter", + "wordSecond": "딸 (ttal)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Großmutter", + "wordSecond": "할머니 (halmeoni)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Großvater", + "wordSecond": "할아버지 (harabeoji)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Großeltern", + "wordSecond": "조부모님 (jobumonim)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Onkel", + "wordSecond": "삼촌 (samchon)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Tante", + "wordSecond": "이모 (imo)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Cousin", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Cousine", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Familie", + "wordSecond": "가족 (gajok)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Baby", + "wordSecond": "아기 (agi)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kind", + "wordSecond": "아이 (ai)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Haus", + "wordSecond": "집 (jip)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wohnung", + "wordSecond": "아파트 (apateu)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zimmer", + "wordSecond": "방 (bang)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Küche", + "wordSecond": "부엌 (bueok)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schlafzimmer", + "wordSecond": "침실 (chimsil)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Badezimmer", + "wordSecond": "욕실 (yoksil)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wohnzimmer", + "wordSecond": "거실 (geosil)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Tür", + "wordSecond": "문 (mun)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fenster", + "wordSecond": "창문 (changmun)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wand", + "wordSecond": "벽 (byeok)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Decke", + "wordSecond": "천장 (cheonjang)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Boden", + "wordSecond": "바닥 (badak)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Treppe", + "wordSecond": "계단 (gyedan)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Tisch", + "wordSecond": "탁자 (takja)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Stuhl", + "wordSecond": "의자 (uija)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Sofa", + "wordSecond": "소파 (sopa)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bett", + "wordSecond": "침대 (chimdae)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schrank", + "wordSecond": "장 (jang)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Regal", + "wordSecond": "선반 (seonban)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Lampe", + "wordSecond": "램프 (raempeu)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Teppich", + "wordSecond": "카펫 (kapet)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Spiegel", + "wordSecond": "거울 (geoul)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Uhr", + "wordSecond": "시계 (sigye)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bild", + "wordSecond": "그림 (geurim)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fernseher", + "wordSecond": "텔레비전 (tellebijeon)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Radio", + "wordSecond": "라디오 (radio)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Telefon", + "wordSecond": "전화기 (jeonhwagi)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kühlschrank", + "wordSecond": "냉장고 (naengjanggo)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Herd", + "wordSecond": "가스레인지 (gaseureinji)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ofen", + "wordSecond": "오븐 (obeun)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Mikrowelle", + "wordSecond": "전자레인지 (jeonjareinji)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Waschmaschine", + "wordSecond": "세탁기 (setakgi)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Toilette", + "wordSecond": "변기 (byeongi)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Badewanne", + "wordSecond": "욕조 (yokjo)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Dusche", + "wordSecond": "샤워기 (syawogi)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Waschbecken", + "wordSecond": "세면대 (semyeondae)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bürste", + "wordSecond": "솔 (sol)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kamm", + "wordSecond": "빗 (bit)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Handtuch", + "wordSecond": "수건 (sugeon)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Seife", + "wordSecond": "비누 (binu)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Shampoo", + "wordSecond": "샴푸 (syampu)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zahnbürste", + "wordSecond": "칫솔 (chitsol)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zahnpasta", + "wordSecond": "치약 (chiyak)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bettdecke", + "wordSecond": "이불 (ibul)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kissen", + "wordSecond": "베개 (begae)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Vorhang", + "wordSecond": "커튼 (keoteun)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Licht", + "wordSecond": "빛 (bit)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schalter", + "wordSecond": "스위치 (seuwichi)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Steckdose", + "wordSecond": "콘센트 (konsenteu)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schlüssel", + "wordSecond": "열쇠 (yeolsoe)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Briefkasten", + "wordSecond": "우편함 (upyeonham)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Garten", + "wordSecond": "정원 (jeongwon)", + "createdAt": "2026-02-19T14:22:07.791Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_de_pl_A1.json b/output/2026_02_19_family_home_de_pl_A1.json new file mode 100644 index 0000000..a101ca6 --- /dev/null +++ b/output/2026_02_19_family_home_de_pl_A1.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:22:23.224Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Mutter", + "wordSecond": "matka", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Vater", + "wordSecond": "ojciec", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bruder", + "wordSecond": "brat", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schwester", + "wordSecond": "siostra", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Sohn", + "wordSecond": "syn", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Tochter", + "wordSecond": "córka", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Großmutter", + "wordSecond": "babcia", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Großvater", + "wordSecond": "dziadek", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Eltern", + "wordSecond": "rodzice", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kinder", + "wordSecond": "dzieci", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Familie", + "wordSecond": "rodzina", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Onkel", + "wordSecond": "wujek", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Tante", + "wordSecond": "ciocia", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Cousin", + "wordSecond": "kuzyn", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Cousine", + "wordSecond": "kuzynka", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Enkel", + "wordSecond": "wnuk", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Enkelin", + "wordSecond": "wnuczka", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Haus", + "wordSecond": "dom", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wohnung", + "wordSecond": "mieszkanie", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Zimmer", + "wordSecond": "pokój", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Küche", + "wordSecond": "kuchnia", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schlafzimmer", + "wordSecond": "sypialnia", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Badezimmer", + "wordSecond": "łazienka", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wohnzimmer", + "wordSecond": "salon", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Flur", + "wordSecond": "korytarz", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Tür", + "wordSecond": "drzwi", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fenster", + "wordSecond": "okno", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wand", + "wordSecond": "ściana", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Decke", + "wordSecond": "sufit", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fußboden", + "wordSecond": "podłoga", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Treppe", + "wordSecond": "schody", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Tisch", + "wordSecond": "stół", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Stuhl", + "wordSecond": "krzesło", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Sofa", + "wordSecond": "sofa", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Sessel", + "wordSecond": "fotel", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bett", + "wordSecond": "łóżko", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schrank", + "wordSecond": "szafa", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Regal", + "wordSecond": "półka", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kommode", + "wordSecond": "komoda", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Lampe", + "wordSecond": "lampa", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Teppich", + "wordSecond": "dywan", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Vorhang", + "wordSecond": "zasłona", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kühlschrank", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Herd", + "wordSecond": "kuchenka", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ofen", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Spüle", + "wordSecond": "zlew", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Waschbecken", + "wordSecond": "umywalka", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Toilette", + "wordSecond": "toaleta", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Dusche", + "wordSecond": "prysznic", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Badewanne", + "wordSecond": "wanna", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Spiegel", + "wordSecond": "lustro", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bettdecke", + "wordSecond": "kołdra", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kissen", + "wordSecond": "poduszka", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bücher", + "wordSecond": "książki", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fernseher", + "wordSecond": "telewizor", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Radio", + "wordSecond": "radio", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Uhr", + "wordSecond": "zegar", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bild", + "wordSecond": "obraz", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Blume", + "wordSecond": "kwiat", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Pflanze", + "wordSecond": "roślina", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schlüssel", + "wordSecond": "klucz", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Tasche", + "wordSecond": "torba", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Jacke", + "wordSecond": "kurtka", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schuhe", + "wordSecond": "buty", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Spielzeug", + "wordSecond": "zabawka", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ball", + "wordSecond": "piłka", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Buch", + "wordSecond": "książka", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Stift", + "wordSecond": "długopis", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Papier", + "wordSecond": "papier", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Essen", + "wordSecond": "jedzenie", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Trinken", + "wordSecond": "napój", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wasser", + "wordSecond": "woda", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Milch", + "wordSecond": "mleko", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Brot", + "wordSecond": "chleb", + "createdAt": "2026-02-19T14:22:23.224Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_de_zh_A1.json b/output/2026_02_19_family_home_de_zh_A1.json new file mode 100644 index 0000000..434cb21 --- /dev/null +++ b/output/2026_02_19_family_home_de_zh_A1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:21:47.870Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Mutter", + "wordSecond": "妈妈 (mama)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Vater", + "wordSecond": "爸爸 (baba)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bruder", + "wordSecond": "哥哥 (gege)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schwester", + "wordSecond": "姐姐 (jiejie)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Sohn", + "wordSecond": "儿子 (erzi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tochter", + "wordSecond": "女儿 (nüer)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Großmutter", + "wordSecond": "奶奶 (nainai)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Großvater", + "wordSecond": "爷爷 (yeye)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Oma", + "wordSecond": "外婆 (waipo)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Opa", + "wordSecond": "外公 (waigong)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Onkel", + "wordSecond": "叔叔 (shushu)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tante", + "wordSecond": "阿姨 (ayi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Cousin", + "wordSecond": "表哥 (biaoge)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Cousine", + "wordSecond": "表姐 (biaojie)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Familie", + "wordSecond": "家庭 (jiating)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Haus", + "wordSecond": "房子 (fangzi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wohnung", + "wordSecond": "公寓 (gongyu)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Zimmer", + "wordSecond": "房间 (fangjian)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schlafzimmer", + "wordSecond": "卧室 (woshi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Küche", + "wordSecond": "厨房 (chufang)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Badezimmer", + "wordSecond": "浴室 (yushi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wohnzimmer", + "wordSecond": "客厅 (keting)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tür", + "wordSecond": "门 (men)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Fenster", + "wordSecond": "窗户 (chuanghu)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wand", + "wordSecond": "墙 (qiang)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Boden", + "wordSecond": "地板 (diban)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Decke", + "wordSecond": "天花板 (tianhuaban)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Treppe", + "wordSecond": "楼梯 (louti)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Garten", + "wordSecond": "花园 (huayuan)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Garage", + "wordSecond": "车库 (cheku)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tisch", + "wordSecond": "桌子 (zhuozi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Stuhl", + "wordSecond": "椅子 (yizi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Sofa", + "wordSecond": "沙发 (shafa)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bett", + "wordSecond": "床 (chuang)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schrank", + "wordSecond": "衣柜 (yigui)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Regal", + "wordSecond": "书架 (shujia)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Lampe", + "wordSecond": "灯 (deng)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Teppich", + "wordSecond": "地毯 (ditan)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Spiegel", + "wordSecond": "镜子 (jingzi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Uhr", + "wordSecond": "钟 (zhong)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bild", + "wordSecond": "画 (hua)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Fernseher", + "wordSecond": "电视 (dianshi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Radio", + "wordSecond": "收音机 (shouyinji)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Telefon", + "wordSecond": "电话 (dianhua)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kühlschrank", + "wordSecond": "冰箱 (bingxiang)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Herd", + "wordSecond": "炉子 (luzi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ofen", + "wordSecond": "烤箱 (kaoxiang)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Mikrowelle", + "wordSecond": "微波炉 (weibolu)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Waschmaschine", + "wordSecond": "洗衣机 (xiyiji)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Spülmaschine", + "wordSecond": "洗碗机 (xiwanji)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Badewanne", + "wordSecond": "浴缸 (yugang)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Dusche", + "wordSecond": "淋浴 (linyu)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Toilette", + "wordSecond": "马桶 (matong)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Waschbecken", + "wordSecond": "洗手池 (xishouchi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bettdecke", + "wordSecond": "被子 (beizi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kissen", + "wordSecond": "枕头 (zhentou)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Vorhang", + "wordSecond": "窗帘 (chuanglian)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Teller", + "wordSecond": "盘子 (panzi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Glas", + "wordSecond": "杯子 (beizi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Messer", + "wordSecond": "刀 (dao)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gabel", + "wordSecond": "叉子 (chazi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Löffel", + "wordSecond": "勺子 (shaozi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Topf", + "wordSecond": "锅 (guo)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Pfanne", + "wordSecond": "平底锅 (pingdiguo)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Buch", + "wordSecond": "书 (shu)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Zeitung", + "wordSecond": "报纸 (baozhi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schlüssel", + "wordSecond": "钥匙 (yaoshi)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Geld", + "wordSecond": "钱 (qian)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Auto", + "wordSecond": "汽车 (qiche)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Fahrrad", + "wordSecond": "自行车 (zixingche)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hund", + "wordSecond": "狗 (gou)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Katze", + "wordSecond": "猫 (mao)", + "createdAt": "2026-02-19T14:21:47.870Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_en_de_A1.json b/output/2026_02_19_family_home_en_de_A1.json new file mode 100644 index 0000000..f8c3662 --- /dev/null +++ b/output/2026_02_19_family_home_en_de_A1.json @@ -0,0 +1,1020 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:14:43.925Z", + "metadata": { + "itemCount": 77, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "mother", + "wordSecond": "Mutter", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "father", + "wordSecond": "Vater", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sister", + "wordSecond": "Schwester", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "brother", + "wordSecond": "Bruder", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sibling", + "wordSecond": "Geschwister", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "grandmother", + "wordSecond": "Großmutter", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "grandfather", + "wordSecond": "Großvater", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "grandparent", + "wordSecond": "Großeltern", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cousin", + "wordSecond": "Cousin", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "aunt", + "wordSecond": "Tante", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "uncle", + "wordSecond": "Onkel", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "parents", + "wordSecond": "Eltern", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "family", + "wordSecond": "Familie", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "baby", + "wordSecond": "Baby", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "child", + "wordSecond": "Kind", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "son", + "wordSecond": "Sohn", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "daughter", + "wordSecond": "Tochter", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "house", + "wordSecond": "Haus", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "home", + "wordSecond": "Zuhause", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "kitchen", + "wordSecond": "Küche", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bedroom", + "wordSecond": "Schlafzimmer", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bathroom", + "wordSecond": "Badezimmer", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "living room", + "wordSecond": "Wohnzimmer", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "room", + "wordSecond": "Zimmer", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "door", + "wordSecond": "Tür", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "window", + "wordSecond": "Fenster", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wall", + "wordSecond": "Wand", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "floor", + "wordSecond": "Boden", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ceiling", + "wordSecond": "Decke", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "table", + "wordSecond": "Tisch", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "chair", + "wordSecond": "Stuhl", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bed", + "wordSecond": "Bett", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sofa", + "wordSecond": "Sofa", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lamp", + "wordSecond": "Lampe", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "light", + "wordSecond": "Licht", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cupboard", + "wordSecond": "Schrank", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wardrobe", + "wordSecond": "Kleiderschrank", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shelf", + "wordSecond": "Regal", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "desk", + "wordSecond": "Schreibtisch", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bookcase", + "wordSecond": "Bücherregal", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "mirror", + "wordSecond": "Spiegel", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "picture", + "wordSecond": "Bild", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "clock", + "wordSecond": "Uhr", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "television", + "wordSecond": "Fernseher", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "radio", + "wordSecond": "Radio", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "telephone", + "wordSecond": "Telefon", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "computer", + "wordSecond": "Computer", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "refrigerator", + "wordSecond": "Kühlschrank", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "oven", + "wordSecond": "Ofen", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stove", + "wordSecond": "Herd", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sink", + "wordSecond": "Spüle", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "toilet", + "wordSecond": "Toilette", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shower", + "wordSecond": "Dusche", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bathtub", + "wordSecond": "Badewanne", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "towel", + "wordSecond": "Handtuch", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "soap", + "wordSecond": "Seife", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "toothbrush", + "wordSecond": "Zahnbürste", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "toothpaste", + "wordSecond": "Zahnpasta", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pillow", + "wordSecond": "Kopfkissen", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "blanket", + "wordSecond": "Decke", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sheet", + "wordSecond": "Bettlaken", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "carpet", + "wordSecond": "Teppich", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "curtain", + "wordSecond": "Vorhang", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "key", + "wordSecond": "Schlüssel", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "garden", + "wordSecond": "Garten", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "garage", + "wordSecond": "Garage", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stairs", + "wordSecond": "Treppe", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hall", + "wordSecond": "Flur", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "basement", + "wordSecond": "Keller", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "attic", + "wordSecond": "Dachboden", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fridge", + "wordSecond": "Kühlschrank", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "plate", + "wordSecond": "Teller", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cup", + "wordSecond": "Tasse", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "glass", + "wordSecond": "Glas", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "knife", + "wordSecond": "Messer", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fork", + "wordSecond": "Gabel", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "spoon", + "wordSecond": "Löffel", + "createdAt": "2026-02-19T14:14:43.925Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_en_es_A1.json b/output/2026_02_19_family_home_en_es_A1.json new file mode 100644 index 0000000..2d071fe --- /dev/null +++ b/output/2026_02_19_family_home_en_es_A1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:14:17.803Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mother", + "wordSecond": "madre", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "father", + "wordSecond": "padre", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sister", + "wordSecond": "hermana", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "brother", + "wordSecond": "hermano", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sibling", + "wordSecond": "hermano", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "grandmother", + "wordSecond": "abuela", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "grandfather", + "wordSecond": "abuelo", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "grandparent", + "wordSecond": "abuelo", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cousin", + "wordSecond": "primo", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "family", + "wordSecond": "familia", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "house", + "wordSecond": "casa", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "home", + "wordSecond": "hogar", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "kitchen", + "wordSecond": "cocina", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bedroom", + "wordSecond": "dormitorio", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bathroom", + "wordSecond": "baño", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "living room", + "wordSecond": "sala", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "room", + "wordSecond": "habitación", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "table", + "wordSecond": "mesa", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "chair", + "wordSecond": "silla", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bed", + "wordSecond": "cama", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sofa", + "wordSecond": "sofá", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lamp", + "wordSecond": "lámpara", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "door", + "wordSecond": "puerta", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "window", + "wordSecond": "ventana", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wall", + "wordSecond": "pared", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "floor", + "wordSecond": "suelo", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ceiling", + "wordSecond": "techo", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "roof", + "wordSecond": "tejado", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "garden", + "wordSecond": "jardín", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "garage", + "wordSecond": "garaje", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "stairs", + "wordSecond": "escaleras", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "key", + "wordSecond": "llave", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "clock", + "wordSecond": "reloj", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "picture", + "wordSecond": "foto", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mirror", + "wordSecond": "espejo", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cupboard", + "wordSecond": "armario", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shelf", + "wordSecond": "estante", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "drawer", + "wordSecond": "cajón", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "refrigerator", + "wordSecond": "refrigerador", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "oven", + "wordSecond": "horno", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sink", + "wordSecond": "fregadero", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "plate", + "wordSecond": "plato", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cup", + "wordSecond": "taza", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "glass", + "wordSecond": "vaso", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fork", + "wordSecond": "tenedor", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "knife", + "wordSecond": "cuchillo", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "spoon", + "wordSecond": "cuchara", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "napkin", + "wordSecond": "servilleta", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pot", + "wordSecond": "olla", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pan", + "wordSecond": "sartén", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "toilet", + "wordSecond": "inodoro", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shower", + "wordSecond": "ducha", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bathtub", + "wordSecond": "bañera", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "towel", + "wordSecond": "toalla", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "soap", + "wordSecond": "jabón", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "toothbrush", + "wordSecond": "cepillo de dientes", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "toothpaste", + "wordSecond": "pasta de dientes", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pillow", + "wordSecond": "almohada", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "blanket", + "wordSecond": "manta", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sheet", + "wordSecond": "sábana", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wardrobe", + "wordSecond": "guardarropa", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "desk", + "wordSecond": "escritorio", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bookcase", + "wordSecond": "estantería", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "television", + "wordSecond": "televisión", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "remote", + "wordSecond": "mando", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "carpet", + "wordSecond": "alfombra", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "curtain", + "wordSecond": "cortina", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "light", + "wordSecond": "luz", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "switch", + "wordSecond": "interruptor", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "trash can", + "wordSecond": "cubo de basura", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "broom", + "wordSecond": "escoba", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mop", + "wordSecond": "fregona", + "createdAt": "2026-02-19T14:14:17.803Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_en_fr_A1.json b/output/2026_02_19_family_home_en_fr_A1.json new file mode 100644 index 0000000..695be2d --- /dev/null +++ b/output/2026_02_19_family_home_en_fr_A1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:14:56.566Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "mother", + "wordSecond": "mère", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "father", + "wordSecond": "père", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sister", + "wordSecond": "sœur", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "brother", + "wordSecond": "frère", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sibling", + "wordSecond": "frère ou sœur", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "grandmother", + "wordSecond": "grand-mère", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "grandfather", + "wordSecond": "grand-père", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "grandparent", + "wordSecond": "grand-parent", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cousin", + "wordSecond": "cousin", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "family", + "wordSecond": "famille", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "home", + "wordSecond": "maison", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "house", + "wordSecond": "maison", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "kitchen", + "wordSecond": "cuisine", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bedroom", + "wordSecond": "chambre", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bathroom", + "wordSecond": "salle de bain", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "living room", + "wordSecond": "salon", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "room", + "wordSecond": "pièce", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "door", + "wordSecond": "porte", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "window", + "wordSecond": "fenêtre", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wall", + "wordSecond": "mur", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "floor", + "wordSecond": "sol", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ceiling", + "wordSecond": "plafond", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "table", + "wordSecond": "table", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "chair", + "wordSecond": "chaise", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bed", + "wordSecond": "lit", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sofa", + "wordSecond": "canapé", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lamp", + "wordSecond": "lampe", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "desk", + "wordSecond": "bureau", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wardrobe", + "wordSecond": "armoire", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cupboard", + "wordSecond": "placard", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shelf", + "wordSecond": "étagère", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "mirror", + "wordSecond": "miroir", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "carpet", + "wordSecond": "tapis", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "curtain", + "wordSecond": "rideau", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "clock", + "wordSecond": "horloge", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "picture", + "wordSecond": "image", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "photo", + "wordSecond": "photo", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "book", + "wordSecond": "livre", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "key", + "wordSecond": "clé", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "light", + "wordSecond": "lumière", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "garden", + "wordSecond": "jardin", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "garage", + "wordSecond": "garage", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "stairs", + "wordSecond": "escalier", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "telephone", + "wordSecond": "téléphone", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "television", + "wordSecond": "télévision", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "radio", + "wordSecond": "radio", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "computer", + "wordSecond": "ordinateur", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "refrigerator", + "wordSecond": "réfrigérateur", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "oven", + "wordSecond": "four", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "stove", + "wordSecond": "cuisinière", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sink", + "wordSecond": "évier", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "toilet", + "wordSecond": "toilette", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shower", + "wordSecond": "douche", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bath", + "wordSecond": "bain", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "towel", + "wordSecond": "serviette", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "soap", + "wordSecond": "savon", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "toothbrush", + "wordSecond": "brosse à dents", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "toothpaste", + "wordSecond": "dentifrice", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pillow", + "wordSecond": "oreiller", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "blanket", + "wordSecond": "couverture", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sheet", + "wordSecond": "drap", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "plate", + "wordSecond": "assiette", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cup", + "wordSecond": "tasse", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "glass", + "wordSecond": "verre", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fork", + "wordSecond": "fourchette", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "knife", + "wordSecond": "couteau", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "spoon", + "wordSecond": "cuillère", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bowl", + "wordSecond": "bol", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bottle", + "wordSecond": "bouteille", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "food", + "wordSecond": "nourriture", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "water", + "wordSecond": "eau", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "child", + "wordSecond": "enfant", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "baby", + "wordSecond": "bébé", + "createdAt": "2026-02-19T14:14:56.566Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_en_it_A1.json b/output/2026_02_19_family_home_en_it_A1.json new file mode 100644 index 0000000..d56f1dd --- /dev/null +++ b/output/2026_02_19_family_home_en_it_A1.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:15:09.808Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "mother", + "wordSecond": "madre", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "father", + "wordSecond": "padre", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sister", + "wordSecond": "sorella", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "brother", + "wordSecond": "fratello", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "grandmother", + "wordSecond": "nonna", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "grandfather", + "wordSecond": "nonno", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "parents", + "wordSecond": "genitori", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "children", + "wordSecond": "bambini", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "son", + "wordSecond": "figlio", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "daughter", + "wordSecond": "figlia", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "baby", + "wordSecond": "bambino", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "family", + "wordSecond": "famiglia", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "home", + "wordSecond": "casa", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "house", + "wordSecond": "casa", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "room", + "wordSecond": "stanza", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "kitchen", + "wordSecond": "cucina", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bedroom", + "wordSecond": "camera da letto", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bathroom", + "wordSecond": "bagno", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "living room", + "wordSecond": "soggiorno", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "door", + "wordSecond": "porta", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "window", + "wordSecond": "finestra", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wall", + "wordSecond": "muro", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "floor", + "wordSecond": "pavimento", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ceiling", + "wordSecond": "soffitto", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "roof", + "wordSecond": "tetto", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "garden", + "wordSecond": "giardino", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "table", + "wordSecond": "tavolo", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "chair", + "wordSecond": "sedia", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bed", + "wordSecond": "letto", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sofa", + "wordSecond": "divano", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lamp", + "wordSecond": "lampada", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "light", + "wordSecond": "luce", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "clock", + "wordSecond": "orologio", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "picture", + "wordSecond": "quadro", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "mirror", + "wordSecond": "specchio", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cupboard", + "wordSecond": "armadio", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wardrobe", + "wordSecond": "armadio", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shelf", + "wordSecond": "scaffale", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "desk", + "wordSecond": "scrivania", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bookcase", + "wordSecond": "libreria", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "television", + "wordSecond": "televisione", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "radio", + "wordSecond": "radio", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "telephone", + "wordSecond": "telefono", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "computer", + "wordSecond": "computer", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "refrigerator", + "wordSecond": "frigorifero", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "oven", + "wordSecond": "forno", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "stove", + "wordSecond": "fornello", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sink", + "wordSecond": "lavandino", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shower", + "wordSecond": "doccia", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bathtub", + "wordSecond": "vasca da bagno", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "toilet", + "wordSecond": "water", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "towel", + "wordSecond": "asciugamano", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "soap", + "wordSecond": "sapone", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "toothbrush", + "wordSecond": "spazzolino da denti", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "toothpaste", + "wordSecond": "dentifricio", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "comb", + "wordSecond": "pettine", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "brush", + "wordSecond": "spazzola", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "key", + "wordSecond": "chiave", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lock", + "wordSecond": "serratura", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "stairs", + "wordSecond": "scale", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "elevator", + "wordSecond": "ascensore", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "garage", + "wordSecond": "garage", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "basement", + "wordSecond": "cantina", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "attic", + "wordSecond": "soffitta", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "neighbor", + "wordSecond": "vicino", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "friend", + "wordSecond": "amico", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "guest", + "wordSecond": "ospite", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cat", + "wordSecond": "gatto", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dog", + "wordSecond": "cane", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fish", + "wordSecond": "pesce", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bird", + "wordSecond": "uccello", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "flower", + "wordSecond": "fiore", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tree", + "wordSecond": "albero", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "car", + "wordSecond": "macchina", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bicycle", + "wordSecond": "bicicletta", + "createdAt": "2026-02-19T14:15:09.808Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_en_ja_A1.json b/output/2026_02_19_family_home_en_ja_A1.json new file mode 100644 index 0000000..734ec65 --- /dev/null +++ b/output/2026_02_19_family_home_en_ja_A1.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:15:30.234Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "mother", + "wordSecond": "母 (はは, haha)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "father", + "wordSecond": "父 (ちち, chichi)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sister", + "wordSecond": "姉妹 (しまい, shimai)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "brother", + "wordSecond": "兄弟 (きょうだい, kyoudai)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "grandmother", + "wordSecond": "祖母 (そぼ, sobo)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "grandfather", + "wordSecond": "祖父 (そふ, sofu)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cousin", + "wordSecond": "いとこ (itoko)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "aunt", + "wordSecond": "おば (oba)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "uncle", + "wordSecond": "おじ (oji)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "family", + "wordSecond": "家族 (かぞく, kazoku)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "house", + "wordSecond": "家 (いえ, ie)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "home", + "wordSecond": "家 (うち, uchi)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "kitchen", + "wordSecond": "台所 (だいどころ, daidokoro)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bedroom", + "wordSecond": "寝室 (しんしつ, shinshitsu)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bathroom", + "wordSecond": "浴室 (よくしつ, yokushitsu)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "living room", + "wordSecond": "居間 (いま, ima)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "table", + "wordSecond": "テーブル (teeburu)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "chair", + "wordSecond": "椅子 (いす, isu)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bed", + "wordSecond": "ベッド (beddo)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sofa", + "wordSecond": "ソファ (sofa)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "lamp", + "wordSecond": "ランプ (ranpu)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "window", + "wordSecond": "窓 (まど, mado)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "door", + "wordSecond": "ドア (doa)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "floor", + "wordSecond": "床 (ゆか, yuka)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "wall", + "wordSecond": "壁 (かべ, kabe)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "roof", + "wordSecond": "屋根 (やね, yane)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "garden", + "wordSecond": "庭 (にわ, niwa)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "room", + "wordSecond": "部屋 (へや, heya)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "key", + "wordSecond": "鍵 (かぎ, kagi)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "clock", + "wordSecond": "時計 (とけい, tokei)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "picture", + "wordSecond": "絵 (え, e)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "mirror", + "wordSecond": "鏡 (かがみ, kagami)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cup", + "wordSecond": "カップ (kappu)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "plate", + "wordSecond": "皿 (さら, sara)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "fork", + "wordSecond": "フォーク (fooku)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "spoon", + "wordSecond": "スプーン (supuun)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "knife", + "wordSecond": "ナイフ (naifu)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "glass", + "wordSecond": "グラス (gurasu)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bowl", + "wordSecond": "ボウル (bouru)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "refrigerator", + "wordSecond": "冷蔵庫 (れいぞうこ, reizouko)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "stove", + "wordSecond": "ストーブ (sutoobu)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sink", + "wordSecond": "流し (ながし, nagashi)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "toilet", + "wordSecond": "トイレ (toire)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "shower", + "wordSecond": "シャワー (shawaa)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bathtub", + "wordSecond": "浴槽 (よくそう, yokusou)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "towel", + "wordSecond": "タオル (taoru)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "soap", + "wordSecond": "石鹸 (せっけん, sekken)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "toothbrush", + "wordSecond": "歯ブラシ (はぶらし, haburashi)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "toothpaste", + "wordSecond": "歯磨き粉 (はみがきこ, hamigakiko)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pillow", + "wordSecond": "枕 (まくら, makura)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "blanket", + "wordSecond": "毛布 (もうふ, moufu)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sheet", + "wordSecond": "シーツ (shiitsu)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "wardrobe", + "wordSecond": "洋服だんす (ようふくだんす, youfukudansu)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "drawer", + "wordSecond": "引き出し (ひきだし, hikidashi)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "shelf", + "wordSecond": "棚 (たな, tana)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "book", + "wordSecond": "本 (ほん, hon)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pen", + "wordSecond": "ペン (pen)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "paper", + "wordSecond": "紙 (かみ, kami)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bag", + "wordSecond": "かばん (kaban)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "shoes", + "wordSecond": "靴 (くつ, kutsu)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "clothes", + "wordSecond": "服 (ふく, fuku)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hat", + "wordSecond": "帽子 (ぼうし, boushi)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "glasses", + "wordSecond": "眼鏡 (めがね, megane)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "umbrella", + "wordSecond": "傘 (かさ, kasa)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bicycle", + "wordSecond": "自転車 (じてんしゃ, jitensha)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "car", + "wordSecond": "車 (くるま, kuruma)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "tree", + "wordSecond": "木 (き, ki)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "flower", + "wordSecond": "花 (はな, hana)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cat", + "wordSecond": "猫 (ねこ, neko)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "dog", + "wordSecond": "犬 (いぬ, inu)", + "createdAt": "2026-02-19T14:15:30.234Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_en_ko_A1.json b/output/2026_02_19_family_home_en_ko_A1.json new file mode 100644 index 0000000..3853d04 --- /dev/null +++ b/output/2026_02_19_family_home_en_ko_A1.json @@ -0,0 +1,953 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:16:08.747Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "mother", + "wordSecond": "어머니 (eomeoni)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "father", + "wordSecond": "아버지 (abeoji)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "parents", + "wordSecond": "부모님 (bumonim)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "mom", + "wordSecond": "엄마 (eomma)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "dad", + "wordSecond": "아빠 (appa)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sister", + "wordSecond": "누나 (nuna)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "brother", + "wordSecond": "오빠 (oppa)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sibling", + "wordSecond": "형제자매 (hyeongjejamae)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "grandmother", + "wordSecond": "할머니 (halmeoni)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "grandfather", + "wordSecond": "할아버지 (harabeoji)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "grandparents", + "wordSecond": "조부모 (jobumo)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "aunt", + "wordSecond": "이모 (imo)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "uncle", + "wordSecond": "삼촌 (samchon)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cousin", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "family", + "wordSecond": "가족 (gajok)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "home", + "wordSecond": "집 (jip)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "house", + "wordSecond": "주택 (jutaek)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "apartment", + "wordSecond": "아파트 (apateu)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "room", + "wordSecond": "방 (bang)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "kitchen", + "wordSecond": "부엌 (bueok)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bedroom", + "wordSecond": "침실 (chimsil)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bathroom", + "wordSecond": "화장실 (hwajangsil)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "living room", + "wordSecond": "거실 (geosil)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "door", + "wordSecond": "문 (mun)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "window", + "wordSecond": "창문 (changmun)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "wall", + "wordSecond": "벽 (byeok)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "floor", + "wordSecond": "바닥 (badak)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "ceiling", + "wordSecond": "천장 (cheonjang)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "roof", + "wordSecond": "지붕 (jibung)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "garden", + "wordSecond": "정원 (jeongwon)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "yard", + "wordSecond": "마당 (madang)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "table", + "wordSecond": "탁자 (takja)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "desk", + "wordSecond": "책상 (chaeksang)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "chair", + "wordSecond": "의자 (uija)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bed", + "wordSecond": "침대 (chimdae)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sofa", + "wordSecond": "소파 (sopa)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "lamp", + "wordSecond": "램프 (raempeu)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "light", + "wordSecond": "불 (bul)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "clock", + "wordSecond": "시계 (sigye)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "picture", + "wordSecond": "사진 (sajin)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "mirror", + "wordSecond": "거울 (geoul)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "television", + "wordSecond": "텔레비전 (tellebijeon)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "TV", + "wordSecond": "티비 (tibi)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "radio", + "wordSecond": "라디오 (radio)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "telephone", + "wordSecond": "전화 (jeonhwa)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "phone", + "wordSecond": "핸드폰 (haendeupon)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "computer", + "wordSecond": "컴퓨터 (keompyuteo)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "refrigerator", + "wordSecond": "냉장고 (naengjanggo)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "stove", + "wordSecond": "가스레인지 (gaseureinji)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "oven", + "wordSecond": "오븐 (obeun)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sink", + "wordSecond": "싱크대 (singkeudae)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "toilet", + "wordSecond": "변기 (byeongi)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "shower", + "wordSecond": "샤워기 (syawogi)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bathtub", + "wordSecond": "욕조 (yokjo)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "towel", + "wordSecond": "수건 (sugeon)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "soap", + "wordSecond": "비누 (binu)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "toothbrush", + "wordSecond": "칫솔 (chitsol)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "toothpaste", + "wordSecond": "치약 (chiyak)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pillow", + "wordSecond": "베개 (begae)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "blanket", + "wordSecond": "이불 (ibul)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sheet", + "wordSecond": "침대보 (chimdaebo)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "closet", + "wordSecond": "옷장 (otjang)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "wardrobe", + "wordSecond": "장롱 (jangnong)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bookshelf", + "wordSecond": "책장 (chaekjang)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cup", + "wordSecond": "컵 (keop)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "plate", + "wordSecond": "접시 (jeopsi)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bowl", + "wordSecond": "그릇 (geureut)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "spoon", + "wordSecond": "숟가락 (sutgarak)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "fork", + "wordSecond": "포크 (pokeu)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "knife", + "wordSecond": "나이프 (naipeu)", + "createdAt": "2026-02-19T14:16:08.747Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_en_pl_A1.json b/output/2026_02_19_family_home_en_pl_A1.json new file mode 100644 index 0000000..8b22146 --- /dev/null +++ b/output/2026_02_19_family_home_en_pl_A1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:16:22.200Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "mother", + "wordSecond": "matka", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "father", + "wordSecond": "ojciec", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "parents", + "wordSecond": "rodzice", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sister", + "wordSecond": "siostra", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "brother", + "wordSecond": "brat", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "siblings", + "wordSecond": "rodzeństwo", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "grandmother", + "wordSecond": "babcia", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "grandfather", + "wordSecond": "dziadek", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "grandparents", + "wordSecond": "dziadkowie", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "aunt", + "wordSecond": "ciocia", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "uncle", + "wordSecond": "wujek", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cousin", + "wordSecond": "kuzyn", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "daughter", + "wordSecond": "córka", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "son", + "wordSecond": "syn", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "children", + "wordSecond": "dzieci", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "family", + "wordSecond": "rodzina", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "home", + "wordSecond": "dom", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "house", + "wordSecond": "dom", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "kitchen", + "wordSecond": "kuchnia", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bedroom", + "wordSecond": "sypialnia", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bathroom", + "wordSecond": "łazienka", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "living room", + "wordSecond": "salon", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "room", + "wordSecond": "pokój", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "garden", + "wordSecond": "ogród", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "door", + "wordSecond": "drzwi", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "window", + "wordSecond": "okno", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "wall", + "wordSecond": "ściana", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "floor", + "wordSecond": "podłoga", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "ceiling", + "wordSecond": "sufit", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "roof", + "wordSecond": "dach", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "table", + "wordSecond": "stół", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "chair", + "wordSecond": "krzesło", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bed", + "wordSecond": "łóżko", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sofa", + "wordSecond": "sofa", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "lamp", + "wordSecond": "lampa", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "desk", + "wordSecond": "biurko", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "wardrobe", + "wordSecond": "szafa", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cupboard", + "wordSecond": "szafka", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "shelf", + "wordSecond": "półka", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "mirror", + "wordSecond": "lustro", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "picture", + "wordSecond": "obraz", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "clock", + "wordSecond": "zegar", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "television", + "wordSecond": "telewizor", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "radio", + "wordSecond": "radio", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "computer", + "wordSecond": "komputer", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "telephone", + "wordSecond": "telefon", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "refrigerator", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "oven", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "stove", + "wordSecond": "kuchenka", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sink", + "wordSecond": "zlew", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "toilet", + "wordSecond": "toaleta", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "shower", + "wordSecond": "prysznic", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bathtub", + "wordSecond": "wanna", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "towel", + "wordSecond": "ręcznik", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "soap", + "wordSecond": "mydło", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "toothbrush", + "wordSecond": "szczoteczka do zębów", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "toothpaste", + "wordSecond": "pasta do zębów", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "comb", + "wordSecond": "grzebień", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "brush", + "wordSecond": "szczotka", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "key", + "wordSecond": "klucz", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "light", + "wordSecond": "światło", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "switch", + "wordSecond": "wyłącznik", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "carpet", + "wordSecond": "dywan", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "curtain", + "wordSecond": "zasłona", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "blanket", + "wordSecond": "koc", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pillow", + "wordSecond": "poduszka", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sheet", + "wordSecond": "prześcieradło", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "plate", + "wordSecond": "talerz", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cup", + "wordSecond": "kubek", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "glass", + "wordSecond": "szklanka", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "knife", + "wordSecond": "nóż", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fork", + "wordSecond": "widelec", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "spoon", + "wordSecond": "łyżka", + "createdAt": "2026-02-19T14:16:22.200Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_en_pt_A1.json b/output/2026_02_19_family_home_en_pt_A1.json new file mode 100644 index 0000000..3529b39 --- /dev/null +++ b/output/2026_02_19_family_home_en_pt_A1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:14:30.094Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mother", + "wordSecond": "mãe", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "father", + "wordSecond": "pai", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sister", + "wordSecond": "irmã", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "brother", + "wordSecond": "irmão", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "grandmother", + "wordSecond": "avó", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "grandfather", + "wordSecond": "avô", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "son", + "wordSecond": "filho", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "daughter", + "wordSecond": "filha", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "baby", + "wordSecond": "bebê", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "child", + "wordSecond": "criança", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "family", + "wordSecond": "família", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "parents", + "wordSecond": "pais", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "children", + "wordSecond": "filhos", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "uncle", + "wordSecond": "tio", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "aunt", + "wordSecond": "tia", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cousin", + "wordSecond": "primo", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cousin", + "wordSecond": "prima", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "grandson", + "wordSecond": "neto", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "granddaughter", + "wordSecond": "neta", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "house", + "wordSecond": "casa", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "home", + "wordSecond": "lar", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "apartment", + "wordSecond": "apartamento", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "room", + "wordSecond": "quarto", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "kitchen", + "wordSecond": "cozinha", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bedroom", + "wordSecond": "quarto", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bathroom", + "wordSecond": "banheiro", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "living room", + "wordSecond": "sala", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "garden", + "wordSecond": "jardim", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "door", + "wordSecond": "porta", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "window", + "wordSecond": "janela", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wall", + "wordSecond": "parede", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "floor", + "wordSecond": "chão", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ceiling", + "wordSecond": "teto", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "roof", + "wordSecond": "telhado", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stairs", + "wordSecond": "escada", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "table", + "wordSecond": "mesa", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chair", + "wordSecond": "cadeira", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bed", + "wordSecond": "cama", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sofa", + "wordSecond": "sofá", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lamp", + "wordSecond": "lâmpada", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "light", + "wordSecond": "luz", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "clock", + "wordSecond": "relógio", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "picture", + "wordSecond": "foto", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "television", + "wordSecond": "televisão", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "radio", + "wordSecond": "rádio", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "telephone", + "wordSecond": "telefone", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "refrigerator", + "wordSecond": "geladeira", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "oven", + "wordSecond": "forno", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stove", + "wordSecond": "fogão", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sink", + "wordSecond": "pia", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cupboard", + "wordSecond": "armário", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "plate", + "wordSecond": "prato", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cup", + "wordSecond": "copo", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "glass", + "wordSecond": "copo", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "knife", + "wordSecond": "faca", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fork", + "wordSecond": "garfo", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "spoon", + "wordSecond": "colher", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bottle", + "wordSecond": "garrafa", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "key", + "wordSecond": "chave", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "book", + "wordSecond": "livro", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "newspaper", + "wordSecond": "jornal", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pen", + "wordSecond": "caneta", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pencil", + "wordSecond": "lápis", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "paper", + "wordSecond": "papel", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bag", + "wordSecond": "bolsa", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shoes", + "wordSecond": "sapatos", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "clothes", + "wordSecond": "roupas", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "money", + "wordSecond": "dinheiro", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "car", + "wordSecond": "carro", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bicycle", + "wordSecond": "bicicleta", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tree", + "wordSecond": "árvore", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "flower", + "wordSecond": "flor", + "createdAt": "2026-02-19T14:14:30.094Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_en_zh_A1.json b/output/2026_02_19_family_home_en_zh_A1.json new file mode 100644 index 0000000..754e0d8 --- /dev/null +++ b/output/2026_02_19_family_home_en_zh_A1.json @@ -0,0 +1,1020 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:15:48.092Z", + "metadata": { + "itemCount": 77, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "mother", + "wordSecond": "妈妈 (mama)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "father", + "wordSecond": "爸爸 (baba)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sister", + "wordSecond": "姐姐 (jiejie)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "brother", + "wordSecond": "哥哥 (gege)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "grandmother", + "wordSecond": "奶奶 (nainai)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "grandfather", + "wordSecond": "爷爷 (yeye)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "grandmother (maternal)", + "wordSecond": "外婆 (waipo)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "grandfather (maternal)", + "wordSecond": "外公 (waigong)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "aunt", + "wordSecond": "阿姨 (ayi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "uncle", + "wordSecond": "叔叔 (shushu)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cousin", + "wordSecond": "堂兄 (tangxiong)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "son", + "wordSecond": "儿子 (erzi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "daughter", + "wordSecond": "女儿 (nver)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "baby", + "wordSecond": "宝宝 (baobao)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "family", + "wordSecond": "家庭 (jiating)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "home", + "wordSecond": "家 (jia)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "house", + "wordSecond": "房子 (fangzi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "room", + "wordSecond": "房间 (fangjian)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "kitchen", + "wordSecond": "厨房 (chufang)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bedroom", + "wordSecond": "卧室 (woshi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bathroom", + "wordSecond": "浴室 (yushi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "living room", + "wordSecond": "客厅 (keting)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "door", + "wordSecond": "门 (men)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "window", + "wordSecond": "窗户 (chuanghu)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "wall", + "wordSecond": "墙 (qiang)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "floor", + "wordSecond": "地板 (diban)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "ceiling", + "wordSecond": "天花板 (tianhuaban)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "roof", + "wordSecond": "屋顶 (wuding)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "garden", + "wordSecond": "花园 (huayuan)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "table", + "wordSecond": "桌子 (zhuozi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "chair", + "wordSecond": "椅子 (yizi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bed", + "wordSecond": "床 (chuang)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sofa", + "wordSecond": "沙发 (shafa)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "lamp", + "wordSecond": "灯 (deng)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "light", + "wordSecond": "灯 (deng)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "television", + "wordSecond": "电视 (dianshi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "computer", + "wordSecond": "电脑 (diannao)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "telephone", + "wordSecond": "电话 (dianhua)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "clock", + "wordSecond": "钟 (zhong)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "book", + "wordSecond": "书 (shu)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pen", + "wordSecond": "笔 (bi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "paper", + "wordSecond": "纸 (zhi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cup", + "wordSecond": "杯子 (beizi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "plate", + "wordSecond": "盘子 (panzi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bowl", + "wordSecond": "碗 (wan)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "spoon", + "wordSecond": "勺子 (shaozi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "fork", + "wordSecond": "叉子 (chazi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "knife", + "wordSecond": "刀 (dao)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "refrigerator", + "wordSecond": "冰箱 (bingxiang)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "stove", + "wordSecond": "炉子 (luzi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "oven", + "wordSecond": "烤箱 (kaoxiang)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sink", + "wordSecond": "水槽 (shuicao)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "toilet", + "wordSecond": "马桶 (matong)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "shower", + "wordSecond": "淋浴 (linyu)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bathtub", + "wordSecond": "浴缸 (yugang)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "mirror", + "wordSecond": "镜子 (jingzi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "towel", + "wordSecond": "毛巾 (maojin)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "soap", + "wordSecond": "肥皂 (feizao)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "toothbrush", + "wordSecond": "牙刷 (yashua)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "toothpaste", + "wordSecond": "牙膏 (yagao)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "clothes", + "wordSecond": "衣服 (yifu)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "shoes", + "wordSecond": "鞋子 (xiezi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bag", + "wordSecond": "包 (bao)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "key", + "wordSecond": "钥匙 (yaoshi)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "money", + "wordSecond": "钱 (qian)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "food", + "wordSecond": "食物 (shiwu)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "water", + "wordSecond": "水 (shui)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "milk", + "wordSecond": "牛奶 (niunai)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bread", + "wordSecond": "面包 (mianbao)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "rice", + "wordSecond": "米饭 (mifan)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "fruit", + "wordSecond": "水果 (shuiguo)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "vegetable", + "wordSecond": "蔬菜 (shucai)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "meat", + "wordSecond": "肉 (rou)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "fish", + "wordSecond": "鱼 (yu)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "egg", + "wordSecond": "鸡蛋 (jidan)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "tea", + "wordSecond": "茶 (cha)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "coffee", + "wordSecond": "咖啡 (kafei)", + "createdAt": "2026-02-19T14:15:48.092Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_es_de_A1.json b/output/2026_02_19_family_home_es_de_A1.json new file mode 100644 index 0000000..4d33785 --- /dev/null +++ b/output/2026_02_19_family_home_es_de_A1.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:16:51.827Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la madre", + "wordSecond": "die Mutter", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el padre", + "wordSecond": "der Vater", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el hermano", + "wordSecond": "der Bruder", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la hermana", + "wordSecond": "die Schwester", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el hijo", + "wordSecond": "der Sohn", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la hija", + "wordSecond": "die Tochter", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el abuelo", + "wordSecond": "der Großvater", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la abuela", + "wordSecond": "die Großmutter", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el nieto", + "wordSecond": "der Enkel", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la nieta", + "wordSecond": "die Enkelin", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el tío", + "wordSecond": "der Onkel", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la tía", + "wordSecond": "die Tante", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el primo", + "wordSecond": "der Cousin", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la prima", + "wordSecond": "die Cousine", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el sobrino", + "wordSecond": "der Neffe", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la sobrina", + "wordSecond": "die Nichte", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la familia", + "wordSecond": "die Familie", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "los padres", + "wordSecond": "die Eltern", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "los hijos", + "wordSecond": "die Kinder", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "los abuelos", + "wordSecond": "die Großeltern", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la casa", + "wordSecond": "das Haus", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el apartamento", + "wordSecond": "die Wohnung", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la habitación", + "wordSecond": "das Zimmer", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el dormitorio", + "wordSecond": "das Schlafzimmer", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cocina", + "wordSecond": "die Küche", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el baño", + "wordSecond": "das Badezimmer", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el salón", + "wordSecond": "das Wohnzimmer", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el comedor", + "wordSecond": "das Esszimmer", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el jardín", + "wordSecond": "der Garten", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la puerta", + "wordSecond": "die Tür", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la ventana", + "wordSecond": "das Fenster", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la pared", + "wordSecond": "die Wand", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el suelo", + "wordSecond": "der Boden", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el techo", + "wordSecond": "die Decke", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cama", + "wordSecond": "das Bett", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la almohada", + "wordSecond": "das Kissen", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la manta", + "wordSecond": "die Decke", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el armario", + "wordSecond": "der Schrank", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cómoda", + "wordSecond": "die Kommode", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la mesa", + "wordSecond": "der Tisch", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la silla", + "wordSecond": "der Stuhl", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el sofá", + "wordSecond": "das Sofa", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la butaca", + "wordSecond": "der Sessel", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la lámpara", + "wordSecond": "die Lampe", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la televisión", + "wordSecond": "der Fernseher", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la estantería", + "wordSecond": "das Regal", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la nevera", + "wordSecond": "der Kühlschrank", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el horno", + "wordSecond": "der Ofen", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el fregadero", + "wordSecond": "das Spülbecken", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el plato", + "wordSecond": "der Teller", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el vaso", + "wordSecond": "das Glas", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la taza", + "wordSecond": "die Tasse", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el cuchillo", + "wordSecond": "das Messer", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el tenedor", + "wordSecond": "die Gabel", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cuchara", + "wordSecond": "der Löffel", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el lavabo", + "wordSecond": "das Waschbecken", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el inodoro", + "wordSecond": "die Toilette", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la ducha", + "wordSecond": "die Dusche", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la bañera", + "wordSecond": "die Badewanne", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el espejo", + "wordSecond": "der Spiegel", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la toalla", + "wordSecond": "das Handtuch", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el cepillo de dientes", + "wordSecond": "die Zahnbürste", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el champú", + "wordSecond": "das Shampoo", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el jabón", + "wordSecond": "die Seife", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la alfombra", + "wordSecond": "der Teppich", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cortina", + "wordSecond": "der Vorhang", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la escalera", + "wordSecond": "die Treppe", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el garaje", + "wordSecond": "die Garage", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el sótano", + "wordSecond": "der Keller", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el ático", + "wordSecond": "der Dachboden", + "createdAt": "2026-02-19T14:16:51.827Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_es_fr_A1.json b/output/2026_02_19_family_home_es_fr_A1.json new file mode 100644 index 0000000..cea4c37 --- /dev/null +++ b/output/2026_02_19_family_home_es_fr_A1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:17:05.926Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "madre", + "wordSecond": "mère", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "padre", + "wordSecond": "père", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hermana", + "wordSecond": "sœur", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hermano", + "wordSecond": "frère", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "abuela", + "wordSecond": "grand-mère", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "abuelo", + "wordSecond": "grand-père", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tía", + "wordSecond": "tante", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tío", + "wordSecond": "oncle", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "prima", + "wordSecond": "cousine", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "primo", + "wordSecond": "cousin", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hija", + "wordSecond": "fille", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hijo", + "wordSecond": "fils", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "familia", + "wordSecond": "famille", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "casa", + "wordSecond": "maison", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cocina", + "wordSecond": "cuisine", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dormitorio", + "wordSecond": "chambre", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "baño", + "wordSecond": "salle de bain", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sala", + "wordSecond": "salon", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "comedor", + "wordSecond": "salle à manger", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "puerta", + "wordSecond": "porte", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ventana", + "wordSecond": "fenêtre", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "techo", + "wordSecond": "plafond", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "suelo", + "wordSecond": "sol", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pared", + "wordSecond": "mur", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "escalera", + "wordSecond": "escalier", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mesa", + "wordSecond": "table", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "silla", + "wordSecond": "chaise", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cama", + "wordSecond": "lit", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sofá", + "wordSecond": "canapé", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lámpara", + "wordSecond": "lampe", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "armario", + "wordSecond": "armoire", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cómoda", + "wordSecond": "commode", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "estantería", + "wordSecond": "étagère", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "espejo", + "wordSecond": "miroir", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "alfombra", + "wordSecond": "tapis", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cortina", + "wordSecond": "rideau", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cama", + "wordSecond": "lit", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "almohada", + "wordSecond": "oreiller", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "manta", + "wordSecond": "couverture", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sábana", + "wordSecond": "drap", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "toalla", + "wordSecond": "serviette", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "jabón", + "wordSecond": "savon", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cepillo", + "wordSecond": "brosse", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "peine", + "wordSecond": "peigne", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cepillo de dientes", + "wordSecond": "brosse à dents", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pasta de dientes", + "wordSecond": "dentifrice", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "inodoro", + "wordSecond": "toilettes", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ducha", + "wordSecond": "douche", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "bañera", + "wordSecond": "bain", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lavabo", + "wordSecond": "lavabo", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fregadero", + "wordSecond": "évier", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nevera", + "wordSecond": "réfrigérateur", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "horno", + "wordSecond": "four", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "microondas", + "wordSecond": "micro-ondes", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cafetera", + "wordSecond": "cafetière", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tostadora", + "wordSecond": "grille-pain", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "plato", + "wordSecond": "assiette", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vaso", + "wordSecond": "verre", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "taza", + "wordSecond": "tasse", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cuchara", + "wordSecond": "cuillère", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tenedor", + "wordSecond": "fourchette", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cuchillo", + "wordSecond": "couteau", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "olla", + "wordSecond": "casserole", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sartén", + "wordSecond": "poêle", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "teléfono", + "wordSecond": "téléphone", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "televisión", + "wordSecond": "télévision", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "radio", + "wordSecond": "radio", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ordenador", + "wordSecond": "ordinateur", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "libro", + "wordSecond": "livre", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cuadro", + "wordSecond": "tableau", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "planta", + "wordSecond": "plante", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "llave", + "wordSecond": "clé", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "reloj", + "wordSecond": "horloge", + "createdAt": "2026-02-19T14:17:05.926Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_es_it_A1.json b/output/2026_02_19_family_home_es_it_A1.json new file mode 100644 index 0000000..9ecbe07 --- /dev/null +++ b/output/2026_02_19_family_home_es_it_A1.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:17:19.476Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "madre", + "wordSecond": "madre", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "padre", + "wordSecond": "padre", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hermano", + "wordSecond": "fratello", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hermana", + "wordSecond": "sorella", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "abuelo", + "wordSecond": "nonno", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "abuela", + "wordSecond": "nonna", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tío", + "wordSecond": "zio", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tía", + "wordSecond": "zia", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "primo", + "wordSecond": "cugino", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "prima", + "wordSecond": "cugina", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hijo", + "wordSecond": "figlio", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hija", + "wordSecond": "figlia", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "esposo", + "wordSecond": "marito", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "esposa", + "wordSecond": "moglie", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "familia", + "wordSecond": "famiglia", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "casa", + "wordSecond": "casa", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hogar", + "wordSecond": "casa", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cocina", + "wordSecond": "cucina", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "comedor", + "wordSecond": "sala da pranzo", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sala", + "wordSecond": "salotto", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dormitorio", + "wordSecond": "camera da letto", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "baño", + "wordSecond": "bagno", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "puerta", + "wordSecond": "porta", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ventana", + "wordSecond": "finestra", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pared", + "wordSecond": "parete", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "techo", + "wordSecond": "soffitto", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "suelo", + "wordSecond": "pavimento", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "escalera", + "wordSecond": "scala", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "jardín", + "wordSecond": "giardino", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "garaje", + "wordSecond": "garage", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mesa", + "wordSecond": "tavolo", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "silla", + "wordSecond": "sedia", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sofá", + "wordSecond": "divano", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cama", + "wordSecond": "letto", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "armario", + "wordSecond": "armadio", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lámpara", + "wordSecond": "lampada", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "televisión", + "wordSecond": "televisione", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "radio", + "wordSecond": "radio", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "teléfono", + "wordSecond": "telefono", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "reloj", + "wordSecond": "orologio", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "espejo", + "wordSecond": "specchio", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "alfombra", + "wordSecond": "tappeto", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cortina", + "wordSecond": "tenda", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "plato", + "wordSecond": "piatto", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vaso", + "wordSecond": "bicchiere", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "taza", + "wordSecond": "tazza", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cuchara", + "wordSecond": "cucchiaio", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tenedor", + "wordSecond": "forchetta", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cuchillo", + "wordSecond": "coltello", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nevera", + "wordSecond": "frigorifero", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "horno", + "wordSecond": "forno", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "fregadero", + "wordSecond": "lavandino", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ducha", + "wordSecond": "doccia", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bañera", + "wordSecond": "vasca da bagno", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "inodoro", + "wordSecond": "water", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lavabo", + "wordSecond": "lavandino", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "toalla", + "wordSecond": "asciugamano", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cepillo", + "wordSecond": "spazzola", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "peine", + "wordSecond": "pettine", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "jabón", + "wordSecond": "sapone", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "papel", + "wordSecond": "carta", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "libro", + "wordSecond": "libro", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cuadro", + "wordSecond": "quadro", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "flor", + "wordSecond": "fiore", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "planta", + "wordSecond": "pianta", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "llave", + "wordSecond": "chiave", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "luz", + "wordSecond": "luce", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "agua", + "wordSecond": "acqua", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "comida", + "wordSecond": "cibo", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ropa", + "wordSecond": "vestiti", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "zapatos", + "wordSecond": "scarpe", + "createdAt": "2026-02-19T14:17:19.476Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_es_ja_A1.json b/output/2026_02_19_family_home_es_ja_A1.json new file mode 100644 index 0000000..5188b41 --- /dev/null +++ b/output/2026_02_19_family_home_es_ja_A1.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:17:41.206Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "madre", + "wordSecond": "母 (はは, haha)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "padre", + "wordSecond": "父 (ちち, chichi)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hermana", + "wordSecond": "姉妹 (しまい, shimai)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hermano", + "wordSecond": "兄弟 (きょうだい, kyōdai)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "abuela", + "wordSecond": "祖母 (そぼ, sobo)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "abuelo", + "wordSecond": "祖父 (そふ, sofu)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hija", + "wordSecond": "娘 (むすめ, musume)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hijo", + "wordSecond": "息子 (むすこ, musuko)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tía", + "wordSecond": "叔母 (おば, oba)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tío", + "wordSecond": "叔父 (おじ, oji)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "prima", + "wordSecond": "いとこ (itoko)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "primo", + "wordSecond": "いとこ (itoko)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "familia", + "wordSecond": "家族 (かぞく, kazoku)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "casa", + "wordSecond": "家 (いえ, ie)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cocina", + "wordSecond": "台所 (だいどころ, daidokoro)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dormitorio", + "wordSecond": "寝室 (しんしつ, shinshitsu)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "baño", + "wordSecond": "浴室 (よくしつ, yokushitsu)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sala", + "wordSecond": "居間 (いま, ima)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "comedor", + "wordSecond": "食堂 (しょくどう, shokudō)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "puerta", + "wordSecond": "ドア (doa)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ventana", + "wordSecond": "窓 (まど, mado)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "techo", + "wordSecond": "天井 (てんじょう, tenjō)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "suelo", + "wordSecond": "床 (ゆか, yuka)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pared", + "wordSecond": "壁 (かべ, kabe)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "escalera", + "wordSecond": "階段 (かいだん, kaidan)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mesa", + "wordSecond": "テーブル (tēburu)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "silla", + "wordSecond": "椅子 (いす, isu)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cama", + "wordSecond": "ベッド (beddo)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sofá", + "wordSecond": "ソファ (sofa)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lámpara", + "wordSecond": "ランプ (ranpu)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "armario", + "wordSecond": "クローゼット (kurōzetto)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cómoda", + "wordSecond": "たんす (tansu)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "estantería", + "wordSecond": "本棚 (ほんだな, hondana)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "espejo", + "wordSecond": "鏡 (かがみ, kagami)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "reloj", + "wordSecond": "時計 (とけい, tokei)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "alfombra", + "wordSecond": "カーペット (kāpetto)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cortina", + "wordSecond": "カーテン (kāten)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "fregadero", + "wordSecond": "流し (ながし, nagashi)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "estufa", + "wordSecond": "コンロ (konro)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "horno", + "wordSecond": "オーブン (ōbun)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "refrigerador", + "wordSecond": "冷蔵庫 (れいぞうこ, reizōko)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "microondas", + "wordSecond": "電子レンジ (でんしれんじ, denshirenji)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "plato", + "wordSecond": "皿 (さら, sara)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "vaso", + "wordSecond": "グラス (gurasu)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "taza", + "wordSecond": "カップ (kappu)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cuchara", + "wordSecond": "スプーン (supūn)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tenedor", + "wordSecond": "フォーク (fōku)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cuchillo", + "wordSecond": "ナイフ (naifu)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sartén", + "wordSecond": "フライパン (furaipan)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "olla", + "wordSecond": "鍋 (なべ, nabe)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "inodoro", + "wordSecond": "トイレ (toire)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ducha", + "wordSecond": "シャワー (shawā)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "bañera", + "wordSecond": "浴槽 (よくそう, yokusō)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lavabo", + "wordSecond": "洗面台 (せんめんだい, senmendai)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "toalla", + "wordSecond": "タオル (taoru)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "jabón", + "wordSecond": "石鹸 (せっけん, sekken)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cepillo de dientes", + "wordSecond": "歯ブラシ (はぶらし, haburashi)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pasta de dientes", + "wordSecond": "歯磨き粉 (はみがきこ, hamigakiko)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "televisión", + "wordSecond": "テレビ (terebi)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "radio", + "wordSecond": "ラジオ (rajio)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "teléfono", + "wordSecond": "電話 (でんわ, denwa)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "computadora", + "wordSecond": "コンピューター (konpyūtā)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "libro", + "wordSecond": "本 (ほん, hon)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cuadro", + "wordSecond": "絵 (え, e)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "planta", + "wordSecond": "植物 (しょくぶつ, shokubutsu)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "flor", + "wordSecond": "花 (はな, hana)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mascota", + "wordSecond": "ペット (petto)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "perro", + "wordSecond": "犬 (いぬ, inu)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "gato", + "wordSecond": "猫 (ねこ, neko)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "juguete", + "wordSecond": "おもちゃ (omocha)", + "createdAt": "2026-02-19T14:17:41.206Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_es_ko_A1.json b/output/2026_02_19_family_home_es_ko_A1.json new file mode 100644 index 0000000..3c62e9c --- /dev/null +++ b/output/2026_02_19_family_home_es_ko_A1.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:18:22.988Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "madre", + "wordSecond": "어머니 (eomeoni)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "padre", + "wordSecond": "아버지 (abeoji)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hermano", + "wordSecond": "형제 (hyeongje)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hermana", + "wordSecond": "자매 (jamae)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "abuelo", + "wordSecond": "할아버지 (harabeoji)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "abuela", + "wordSecond": "할머니 (halmeoni)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tío", + "wordSecond": "삼촌 (samchon)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tía", + "wordSecond": "이모 (imo)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "primo", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "prima", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hijo", + "wordSecond": "아들 (adeul)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hija", + "wordSecond": "딸 (ttal)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "familia", + "wordSecond": "가족 (gajok)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "casa", + "wordSecond": "집 (jip)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cocina", + "wordSecond": "부엌 (bueok)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "comedor", + "wordSecond": "식당 (sikdang)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sala", + "wordSecond": "거실 (geosil)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dormitorio", + "wordSecond": "침실 (chimsil)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "baño", + "wordSecond": "화장실 (hwajangsil)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "puerta", + "wordSecond": "문 (mun)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ventana", + "wordSecond": "창문 (changmun)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "techo", + "wordSecond": "천장 (cheonjang)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "suelo", + "wordSecond": "바닥 (badak)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pared", + "wordSecond": "벽 (byeok)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "escalera", + "wordSecond": "계단 (gyedan)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "jardín", + "wordSecond": "정원 (jeongwon)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "garaje", + "wordSecond": "차고 (chago)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mesa", + "wordSecond": "탁자 (takja)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "silla", + "wordSecond": "의자 (uija)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sofá", + "wordSecond": "소파 (sopa)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cama", + "wordSecond": "침대 (chimdae)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "armario", + "wordSecond": "옷장 (otjang)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lámpara", + "wordSecond": "램프 (raempeu)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "televisión", + "wordSecond": "텔레비전 (tellebijeon)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "radio", + "wordSecond": "라디오 (radio)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "teléfono", + "wordSecond": "전화기 (jeonhwagi)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "reloj", + "wordSecond": "시계 (sigye)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "espejo", + "wordSecond": "거울 (geoul)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cuadro", + "wordSecond": "그림 (geurim)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "alfombra", + "wordSecond": "카펫 (kapet)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cortina", + "wordSecond": "커튼 (keoteun)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "nevera", + "wordSecond": "냉장고 (naengjanggo)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "horno", + "wordSecond": "오븐 (obeun)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "fregadero", + "wordSecond": "싱크대 (singkeudae)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "estufa", + "wordSecond": "가스레인지 (gaseureinji)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "microondas", + "wordSecond": "전자레인지 (jeonjareinji)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lavadora", + "wordSecond": "세탁기 (setakgi)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "secadora", + "wordSecond": "건조기 (geonjogi)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ducha", + "wordSecond": "샤워기 (syaweogi)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "bañera", + "wordSecond": "욕조 (yokjo)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "inodoro", + "wordSecond": "변기 (byeongi)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lavabo", + "wordSecond": "세면대 (semyeondae)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "toalla", + "wordSecond": "수건 (sugeon)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cepillo de dientes", + "wordSecond": "칫솔 (chitsol)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pasta de dientes", + "wordSecond": "치약 (chiyak)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "jabón", + "wordSecond": "비누 (binu)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "champú", + "wordSecond": "샴푸 (syampu)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cuchara", + "wordSecond": "숟가락 (sutgarak)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tenedor", + "wordSecond": "포크 (pokeu)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cuchillo", + "wordSecond": "나이프 (naipeu)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "plato", + "wordSecond": "접시 (jeopsi)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "vaso", + "wordSecond": "유리잔 (yurijan)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "taza", + "wordSecond": "컵 (keop)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "olla", + "wordSecond": "냄비 (naembi)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sartén", + "wordSecond": "프라이팬 (peuraipaen)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tetera", + "wordSecond": "주전자 (jujeonja)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cafetera", + "wordSecond": "커피메이커 (keopimeikeo)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "basura", + "wordSecond": "쓰레기 (sseuregi)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "escoba", + "wordSecond": "빗자루 (bitjaru)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "trapeador", + "wordSecond": "걸레 (geolle)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "aspiradora", + "wordSecond": "진공청소기 (jingongcheongsogi)", + "createdAt": "2026-02-19T14:18:22.988Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_es_pl_A1.json b/output/2026_02_19_family_home_es_pl_A1.json new file mode 100644 index 0000000..45c1f75 --- /dev/null +++ b/output/2026_02_19_family_home_es_pl_A1.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:18:38.038Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "madre", + "wordSecond": "matka", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "padre", + "wordSecond": "ojciec", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hermana", + "wordSecond": "siostra", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hermano", + "wordSecond": "brat", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hija", + "wordSecond": "córka", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hijo", + "wordSecond": "syn", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "abuela", + "wordSecond": "babcia", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "abuelo", + "wordSecond": "dziadek", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tía", + "wordSecond": "ciotka", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tío", + "wordSecond": "wujek", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "prima", + "wordSecond": "kuzynka", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "primo", + "wordSecond": "kuzyn", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "familia", + "wordSecond": "rodzina", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "casa", + "wordSecond": "dom", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cocina", + "wordSecond": "kuchnia", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dormitorio", + "wordSecond": "sypialnia", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "baño", + "wordSecond": "łazienka", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "salón", + "wordSecond": "salon", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "comedor", + "wordSecond": "jadalnia", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "puerta", + "wordSecond": "drzwi", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ventana", + "wordSecond": "okno", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "techo", + "wordSecond": "sufit", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "suelo", + "wordSecond": "podłoga", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pared", + "wordSecond": "ściana", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "escalera", + "wordSecond": "schody", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mesa", + "wordSecond": "stół", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "silla", + "wordSecond": "krzesło", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sofá", + "wordSecond": "sofa", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cama", + "wordSecond": "łóżko", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "armario", + "wordSecond": "szafa", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cómoda", + "wordSecond": "komoda", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "lámpara", + "wordSecond": "lampa", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "alfombra", + "wordSecond": "dywan", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "espejo", + "wordSecond": "lustro", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "reloj", + "wordSecond": "zegar", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cuadro", + "wordSecond": "obraz", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "estantería", + "wordSecond": "półka", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "nevera", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "horno", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "fregadero", + "wordSecond": "zlew", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "plato", + "wordSecond": "talerz", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "vaso", + "wordSecond": "szklanka", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "taza", + "wordSecond": "filiżanka", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cuchara", + "wordSecond": "łyżka", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tenedor", + "wordSecond": "widelec", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cuchillo", + "wordSecond": "nóż", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sartén", + "wordSecond": "patelnia", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "olla", + "wordSecond": "garnek", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "toalla", + "wordSecond": "ręcznik", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cepillo", + "wordSecond": "szczotka", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "peine", + "wordSecond": "grzebień", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "jabón", + "wordSecond": "mydło", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cepillo de dientes", + "wordSecond": "szczoteczka do zębów", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pasta de dientes", + "wordSecond": "pasta do zębów", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "papel higiénico", + "wordSecond": "papier toaletowy", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ducha", + "wordSecond": "prysznic", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "bañera", + "wordSecond": "wanna", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "inodoro", + "wordSecond": "toaleta", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "lavabo", + "wordSecond": "umywalka", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "televisión", + "wordSecond": "telewizor", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "radio", + "wordSecond": "radio", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "teléfono", + "wordSecond": "telefon", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ordenador", + "wordSecond": "komputer", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "libro", + "wordSecond": "książka", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "periódico", + "wordSecond": "gazeta", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "revista", + "wordSecond": "czasopismo", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "flor", + "wordSecond": "kwiat", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "planta", + "wordSecond": "roślina", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mascota", + "wordSecond": "zwierzę domowe", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "perro", + "wordSecond": "pies", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "gato", + "wordSecond": "kot", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "llave", + "wordSecond": "klucz", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "bolso", + "wordSecond": "torba", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "zapatos", + "wordSecond": "buty", + "createdAt": "2026-02-19T14:18:38.038Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_es_pt_A1.json b/output/2026_02_19_family_home_es_pt_A1.json new file mode 100644 index 0000000..a998544 --- /dev/null +++ b/output/2026_02_19_family_home_es_pt_A1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:16:36.795Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "madre", + "wordSecond": "mãe", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "padre", + "wordSecond": "pai", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hermano", + "wordSecond": "irmão", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hermana", + "wordSecond": "irmã", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hijo", + "wordSecond": "filho", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hija", + "wordSecond": "filha", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "abuelo", + "wordSecond": "avô", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "abuela", + "wordSecond": "avó", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tío", + "wordSecond": "tio", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tía", + "wordSecond": "tia", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "primo", + "wordSecond": "primo", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "prima", + "wordSecond": "prima", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "familia", + "wordSecond": "família", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "casa", + "wordSecond": "casa", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cocina", + "wordSecond": "cozinha", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "comedor", + "wordSecond": "sala de jantar", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sala", + "wordSecond": "sala", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dormitorio", + "wordSecond": "quarto", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "baño", + "wordSecond": "banheiro", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "puerta", + "wordSecond": "porta", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ventana", + "wordSecond": "janela", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "techo", + "wordSecond": "teto", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "suelo", + "wordSecond": "chão", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pared", + "wordSecond": "parede", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escaleras", + "wordSecond": "escadas", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "jardín", + "wordSecond": "jardim", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "garaje", + "wordSecond": "garagem", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mesa", + "wordSecond": "mesa", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "silla", + "wordSecond": "cadeira", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sofá", + "wordSecond": "sofá", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cama", + "wordSecond": "cama", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "armario", + "wordSecond": "armário", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lámpara", + "wordSecond": "lâmpada", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "televisión", + "wordSecond": "televisão", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "radio", + "wordSecond": "rádio", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "teléfono", + "wordSecond": "telefone", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reloj", + "wordSecond": "relógio", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "espejo", + "wordSecond": "espelho", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuadro", + "wordSecond": "quadro", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alfombra", + "wordSecond": "tapete", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cortina", + "wordSecond": "cortina", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fregadero", + "wordSecond": "pia", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nevera", + "wordSecond": "geladeira", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "horno", + "wordSecond": "forno", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "microondas", + "wordSecond": "micro-ondas", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lavadora", + "wordSecond": "máquina de lavar", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "secadora", + "wordSecond": "secadora", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ducha", + "wordSecond": "chuveiro", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "inodoro", + "wordSecond": "vaso sanitário", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lavabo", + "wordSecond": "pia", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "toalla", + "wordSecond": "toalha", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cepillo", + "wordSecond": "escova", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "peine", + "wordSecond": "pente", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "jabón", + "wordSecond": "sabão", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "papel higiénico", + "wordSecond": "papel higiênico", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "plato", + "wordSecond": "prato", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vaso", + "wordSecond": "copo", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "taza", + "wordSecond": "xícara", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuchara", + "wordSecond": "colher", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tenedor", + "wordSecond": "garfo", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuchillo", + "wordSecond": "faca", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "olla", + "wordSecond": "panela", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sartén", + "wordSecond": "frigideira", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tostadora", + "wordSecond": "torradeira", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cafetera", + "wordSecond": "cafeteira", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "basura", + "wordSecond": "lixo", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escoba", + "wordSecond": "vassoura", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "trapeador", + "wordSecond": "esfregão", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "polvo", + "wordSecond": "pó", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "libro", + "wordSecond": "livro", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "juguete", + "wordSecond": "brinquedo", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "manta", + "wordSecond": "cobertor", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "almohada", + "wordSecond": "travesseiro", + "createdAt": "2026-02-19T14:16:36.795Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_es_zh_A1.json b/output/2026_02_19_family_home_es_zh_A1.json new file mode 100644 index 0000000..31751fb --- /dev/null +++ b/output/2026_02_19_family_home_es_zh_A1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:18:01.646Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "madre", + "wordSecond": "妈妈 (māma)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "padre", + "wordSecond": "爸爸 (bàba)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hermana", + "wordSecond": "姐姐 (jiějie)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hermano", + "wordSecond": "哥哥 (gēge)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "abuela", + "wordSecond": "奶奶 (nǎinai)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "abuelo", + "wordSecond": "爷爷 (yéye)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tía", + "wordSecond": "阿姨 (āyí)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tío", + "wordSecond": "叔叔 (shūshu)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "primo", + "wordSecond": "表哥 (biǎogē)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "prima", + "wordSecond": "表姐 (biǎojiě)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hijo", + "wordSecond": "儿子 (érzi)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hija", + "wordSecond": "女儿 (nǚ'ér)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "familia", + "wordSecond": "家庭 (jiātíng)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "casa", + "wordSecond": "家 (jiā)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cocina", + "wordSecond": "厨房 (chúfáng)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "dormitorio", + "wordSecond": "卧室 (wòshì)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "baño", + "wordSecond": "浴室 (yùshì)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sala", + "wordSecond": "客厅 (kètīng)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "comedor", + "wordSecond": "餐厅 (cāntīng)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "puerta", + "wordSecond": "门 (mén)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ventana", + "wordSecond": "窗户 (chuānghu)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "techo", + "wordSecond": "屋顶 (wūdǐng)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pared", + "wordSecond": "墙 (qiáng)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "suelo", + "wordSecond": "地板 (dìbǎn)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "escalera", + "wordSecond": "楼梯 (lóutī)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mesa", + "wordSecond": "桌子 (zhuōzi)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "silla", + "wordSecond": "椅子 (yǐzi)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cama", + "wordSecond": "床 (chuáng)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sofá", + "wordSecond": "沙发 (shāfā)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "lámpara", + "wordSecond": "灯 (dēng)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "armario", + "wordSecond": "衣柜 (yīguì)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cómoda", + "wordSecond": "抽屉柜 (chōutiguì)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "estantería", + "wordSecond": "书架 (shūjià)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "televisión", + "wordSecond": "电视 (diànshì)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "radio", + "wordSecond": "收音机 (shōuyīnjī)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "reloj", + "wordSecond": "钟 (zhōng)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "espejo", + "wordSecond": "镜子 (jìngzi)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "alfombra", + "wordSecond": "地毯 (dìtǎn)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cortina", + "wordSecond": "窗帘 (chuānglián)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nevera", + "wordSecond": "冰箱 (bīngxiāng)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "horno", + "wordSecond": "烤箱 (kǎoxiāng)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "fregadero", + "wordSecond": "水槽 (shuǐcáo)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "plato", + "wordSecond": "盘子 (pánzi)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "vaso", + "wordSecond": "杯子 (bēizi)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tenedor", + "wordSecond": "叉子 (chāzi)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cuchillo", + "wordSecond": "刀 (dāo)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cuchara", + "wordSecond": "勺子 (sháozi)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "olla", + "wordSecond": "锅 (guō)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sartén", + "wordSecond": "平底锅 (píngdǐguō)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "toalla", + "wordSecond": "毛巾 (máojīn)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cepillo de dientes", + "wordSecond": "牙刷 (yáshuā)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pasta de dientes", + "wordSecond": "牙膏 (yágāo)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "jabón", + "wordSecond": "肥皂 (féizào)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "champú", + "wordSecond": "洗发水 (xǐfàshuǐ)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cepillo", + "wordSecond": "刷子 (shuāzi)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "peine", + "wordSecond": "梳子 (shūzi)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "papel higiénico", + "wordSecond": "卫生纸 (wèishēngzhǐ)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "basura", + "wordSecond": "垃圾 (lājī)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cubierta", + "wordSecond": "盖子 (gàizi)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "llave", + "wordSecond": "钥匙 (yàoshi)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cerradura", + "wordSecond": "锁 (suǒ)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "luz", + "wordSecond": "光 (guāng)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "electricidad", + "wordSecond": "电 (diàn)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "agua", + "wordSecond": "水 (shuǐ)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "fuego", + "wordSecond": "火 (huǒ)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "calefacción", + "wordSecond": "暖气 (nuǎnqì)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "aire acondicionado", + "wordSecond": "空调 (kōngtiáo)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "jardín", + "wordSecond": "花园 (huāyuán)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "garaje", + "wordSecond": "车库 (chēkù)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "vecino", + "wordSecond": "邻居 (línjū)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "perro", + "wordSecond": "狗 (gǒu)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "gato", + "wordSecond": "猫 (māo)", + "createdAt": "2026-02-19T14:18:01.646Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_fr_it_A1.json b/output/2026_02_19_family_home_fr_it_A1.json new file mode 100644 index 0000000..2a7a326 --- /dev/null +++ b/output/2026_02_19_family_home_fr_it_A1.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:22:37.211Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mère", + "wordSecond": "madre", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "père", + "wordSecond": "padre", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fils", + "wordSecond": "figlio", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fille", + "wordSecond": "figlia", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "frère", + "wordSecond": "fratello", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sœur", + "wordSecond": "sorella", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "parents", + "wordSecond": "genitori", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "enfant", + "wordSecond": "bambino", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bébé", + "wordSecond": "bambino", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "grand-mère", + "wordSecond": "nonna", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "grand-père", + "wordSecond": "nonno", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "oncle", + "wordSecond": "zio", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tante", + "wordSecond": "zia", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cousin", + "wordSecond": "cugino", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cousine", + "wordSecond": "cugina", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "famille", + "wordSecond": "famiglia", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "maison", + "wordSecond": "casa", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "appartement", + "wordSecond": "appartamento", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chambre", + "wordSecond": "camera", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cuisine", + "wordSecond": "cucina", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "salle de bains", + "wordSecond": "bagno", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "salon", + "wordSecond": "soggiorno", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "salle à manger", + "wordSecond": "sala da pranzo", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "jardin", + "wordSecond": "giardino", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "porte", + "wordSecond": "porta", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fenêtre", + "wordSecond": "finestra", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mur", + "wordSecond": "muro", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "toit", + "wordSecond": "tetto", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "escalier", + "wordSecond": "scala", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "table", + "wordSecond": "tavolo", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chaise", + "wordSecond": "sedia", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "lit", + "wordSecond": "letto", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "canapé", + "wordSecond": "divano", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fauteuil", + "wordSecond": "poltrona", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "armoire", + "wordSecond": "armadio", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "commode", + "wordSecond": "comò", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "étagère", + "wordSecond": "scaffale", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "lampe", + "wordSecond": "lampada", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "télévision", + "wordSecond": "televisione", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "radio", + "wordSecond": "radio", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tapis", + "wordSecond": "tappeto", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rideau", + "wordSecond": "tenda", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "oreiller", + "wordSecond": "cuscino", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "couverture", + "wordSecond": "coperta", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "draps", + "wordSecond": "lenzuola", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "miroir", + "wordSecond": "specchio", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "horloge", + "wordSecond": "orologio", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tableau", + "wordSecond": "quadro", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vase", + "wordSecond": "vaso", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "plante", + "wordSecond": "pianta", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "frigo", + "wordSecond": "frigorifero", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "four", + "wordSecond": "forno", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "évier", + "wordSecond": "lavello", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "poêle", + "wordSecond": "fornello", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "casserole", + "wordSecond": "pentola", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "assiette", + "wordSecond": "piatto", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "verre", + "wordSecond": "bicchiere", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tasse", + "wordSecond": "tazza", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cuillère", + "wordSecond": "cucchiaio", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fourchette", + "wordSecond": "forchetta", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "couteau", + "wordSecond": "coltello", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "douche", + "wordSecond": "doccia", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bain", + "wordSecond": "vasca", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "lavabo", + "wordSecond": "lavandino", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "toilettes", + "wordSecond": "gabinetto", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "savon", + "wordSecond": "sapone", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "serviette", + "wordSecond": "asciugamano", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dentifrice", + "wordSecond": "dentifricio", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "brosse à dents", + "wordSecond": "spazzolino da denti", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "balai", + "wordSecond": "scopa", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "aspirateur", + "wordSecond": "aspirapolvere", + "createdAt": "2026-02-19T14:22:37.211Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_fr_ja_A1.json b/output/2026_02_19_family_home_fr_ja_A1.json new file mode 100644 index 0000000..4730091 --- /dev/null +++ b/output/2026_02_19_family_home_fr_ja_A1.json @@ -0,0 +1,1033 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:23:01.099Z", + "metadata": { + "itemCount": 78, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mère", + "wordSecond": "母 (はは, haha)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "père", + "wordSecond": "父 (ちち, chichi)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "fils", + "wordSecond": "息子 (むすこ, musuko)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "fille", + "wordSecond": "娘 (むすめ, musume)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "frère", + "wordSecond": "兄弟 (きょうだい, kyōdai)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sœur", + "wordSecond": "姉妹 (しまい, shimai)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "parents", + "wordSecond": "両親 (りょうしん, ryōshin)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "enfant", + "wordSecond": "子供 (こども, kodomo)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bébé", + "wordSecond": "赤ちゃん (あかちゃん, akachan)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "grand-père", + "wordSecond": "祖父 (そふ, sofu)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "grand-mère", + "wordSecond": "祖母 (そぼ, sobo)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "oncle", + "wordSecond": "おじ (oji)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tante", + "wordSecond": "おば (oba)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cousin", + "wordSecond": "いとこ (itoko)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cousine", + "wordSecond": "いとこ (itoko)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "famille", + "wordSecond": "家族 (かぞく, kazoku)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "maison", + "wordSecond": "家 (いえ, ie)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "appartement", + "wordSecond": "アパート (apāto)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chambre", + "wordSecond": "部屋 (へや, heya)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chambre à coucher", + "wordSecond": "寝室 (しんしつ, shinshitsu)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "salle de bains", + "wordSecond": "バスルーム (basurūmu)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cuisine", + "wordSecond": "台所 (だいどころ, daidokoro)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "salon", + "wordSecond": "リビングルーム (ribingurūmu)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "salle à manger", + "wordSecond": "ダイニングルーム (dainingurūmu)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "toilettes", + "wordSecond": "トイレ (toire)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "jardin", + "wordSecond": "庭 (にわ, niwa)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "porte", + "wordSecond": "ドア (doa)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "fenêtre", + "wordSecond": "窓 (まど, mado)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mur", + "wordSecond": "壁 (かべ, kabe)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "plafond", + "wordSecond": "天井 (てんじょう, tenjō)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sol", + "wordSecond": "床 (ゆか, yuka)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "escalier", + "wordSecond": "階段 (かいだん, kaidan)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "table", + "wordSecond": "テーブル (tēburu)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chaise", + "wordSecond": "椅子 (いす, isu)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "lit", + "wordSecond": "ベッド (beddo)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "canapé", + "wordSecond": "ソファ (sofa)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "armoire", + "wordSecond": "クローゼット (kurōzetto)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "commode", + "wordSecond": "たんす (tansu)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "étagère", + "wordSecond": "本棚 (ほんだな, hondana)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "lampe", + "wordSecond": "ランプ (ranpu)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "télévision", + "wordSecond": "テレビ (terebi)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "radio", + "wordSecond": "ラジオ (rajio)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ordinateur", + "wordSecond": "コンピューター (konpyūtā)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "réfrigérateur", + "wordSecond": "冷蔵庫 (れいぞうこ, reizōko)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "four", + "wordSecond": "オーブン (ōbun)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cuisinière", + "wordSecond": "コンロ (konro)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "évier", + "wordSecond": "流し (ながし, nagashi)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "lavabo", + "wordSecond": "洗面台 (せんめんだい, senmendai)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "douche", + "wordSecond": "シャワー (shawā)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bain", + "wordSecond": "お風呂 (おふろ, ofuro)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "toilette", + "wordSecond": "便器 (べんき, benki)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "miroir", + "wordSecond": "鏡 (かがみ, kagami)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tapis", + "wordSecond": "カーペット (kāpetto)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rideau", + "wordSecond": "カーテン (kāten)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "oreiller", + "wordSecond": "枕 (まくら, makura)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "couverture", + "wordSecond": "毛布 (もうふ, mōfu)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "draps", + "wordSecond": "シーツ (shītsu)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "serviette", + "wordSecond": "タオル (taoru)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "savon", + "wordSecond": "石鹸 (せっけん, sekken)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "shampooing", + "wordSecond": "シャンプー (shanpū)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "dentifrice", + "wordSecond": "歯磨き粉 (はみがきこ, hamigakiko)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "brosse à dents", + "wordSecond": "歯ブラシ (はぶらし, haburashi)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "peigne", + "wordSecond": "櫛 (くし, kushi)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "téléphone", + "wordSecond": "電話 (でんわ, denwa)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "horloge", + "wordSecond": "時計 (とけい, tokei)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "clé", + "wordSecond": "鍵 (かぎ, kagi)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sac", + "wordSecond": "鞄 (かばん, kaban)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chaussures", + "wordSecond": "靴 (くつ, kutsu)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "vêtements", + "wordSecond": "服 (ふく, fuku)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "nourriture", + "wordSecond": "食べ物 (たべもの, tabemono)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "eau", + "wordSecond": "水 (みず, mizu)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "électricité", + "wordSecond": "電気 (でんき, denki)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "argent", + "wordSecond": "お金 (おかね, okane)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "livre", + "wordSecond": "本 (ほん, hon)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "stylo", + "wordSecond": "ペン (pen)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "papier", + "wordSecond": "紙 (かみ, kami)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "photo", + "wordSecond": "写真 (しゃしん, shashin)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cadeau", + "wordSecond": "プレゼント (purezento)", + "createdAt": "2026-02-19T14:23:01.099Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_fr_ko_A1.json b/output/2026_02_19_family_home_fr_ko_A1.json new file mode 100644 index 0000000..8a3423c --- /dev/null +++ b/output/2026_02_19_family_home_fr_ko_A1.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:23:40.373Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "mère", + "wordSecond": "어머니 (eomeoni)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "père", + "wordSecond": "아버지 (abeoji)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "parents", + "wordSecond": "부모님 (bumonim)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "frère", + "wordSecond": "형제 (hyeongje)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sœur", + "wordSecond": "자매 (jamae)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "fils", + "wordSecond": "아들 (adeul)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "fille", + "wordSecond": "딸 (ttal)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "grand-mère", + "wordSecond": "할머니 (halmeoni)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "grand-père", + "wordSecond": "할아버지 (harabeoji)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "oncle", + "wordSecond": "삼촌 (samchon)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tante", + "wordSecond": "이모 (imo)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cousin", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cousine", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "famille", + "wordSecond": "가족 (gajok)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "maison", + "wordSecond": "집 (jip)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "appartement", + "wordSecond": "아파트 (apateu)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cuisine", + "wordSecond": "부엌 (bueok)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "salle à manger", + "wordSecond": "식당 (sikdang)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "salon", + "wordSecond": "거실 (geosil)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chambre", + "wordSecond": "침실 (chimsil)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "salle de bains", + "wordSecond": "욕실 (yoksil)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "toilettes", + "wordSecond": "화장실 (hwajangsil)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "jardin", + "wordSecond": "정원 (jeongwon)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "porte", + "wordSecond": "문 (mun)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "fenêtre", + "wordSecond": "창문 (changmun)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "mur", + "wordSecond": "벽 (byeok)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "plafond", + "wordSecond": "천장 (cheonjang)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sol", + "wordSecond": "바닥 (badak)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "escalier", + "wordSecond": "계단 (gyedan)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "table", + "wordSecond": "탁자 (takja)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chaise", + "wordSecond": "의자 (uija)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "fauteuil", + "wordSecond": "안락의자 (allaguija)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "canapé", + "wordSecond": "소파 (sopa)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "lit", + "wordSecond": "침대 (chimdae)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "armoire", + "wordSecond": "옷장 (otjang)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "commode", + "wordSecond": "서랍장 (seorapjang)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "étagère", + "wordSecond": "선반 (seonban)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "lampe", + "wordSecond": "램프 (raempeu)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "télévision", + "wordSecond": "텔레비전 (tellebijeon)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "radio", + "wordSecond": "라디오 (radio)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "réfrigérateur", + "wordSecond": "냉장고 (naengjanggo)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "four", + "wordSecond": "오븐 (obeun)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cuisinière", + "wordSecond": "가스레인지 (gaseureinji)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "évier", + "wordSecond": "싱크대 (singkeudae)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "lavabo", + "wordSecond": "세면대 (semyeondae)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "douche", + "wordSecond": "샤워기 (syawogi)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "bain", + "wordSecond": "욕조 (yokjo)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "miroir", + "wordSecond": "거울 (geoul)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tapis", + "wordSecond": "카펫 (kapet)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "rideau", + "wordSecond": "커튼 (keoteun)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "oreiller", + "wordSecond": "베개 (begae)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "couverture", + "wordSecond": "이불 (ibul)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "draps", + "wordSecond": "침대 시트 (chimdae siteu)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "serviette", + "wordSecond": "수건 (sugeon)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "savon", + "wordSecond": "비누 (binu)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "shampooing", + "wordSecond": "샴푸 (syampu)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dentifrice", + "wordSecond": "치약 (chiyak)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "brosse à dents", + "wordSecond": "칫솔 (chitsol)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "peigne", + "wordSecond": "빗 (bit)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "téléphone", + "wordSecond": "전화기 (jeonhwagi)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "ordinateur", + "wordSecond": "컴퓨터 (keompyuteo)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "livre", + "wordSecond": "책 (chaek)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "crayon", + "wordSecond": "연필 (yeonpil)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "stylo", + "wordSecond": "펜 (pen)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "papier", + "wordSecond": "종이 (jongi)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sac", + "wordSecond": "가방 (gabang)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "clé", + "wordSecond": "열쇠 (yeolsoe)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "argent", + "wordSecond": "돈 (don)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "heure", + "wordSecond": "시간 (sigan)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "jour", + "wordSecond": "날 (nal)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "nuit", + "wordSecond": "밤 (bam)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "matin", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "soir", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "année", + "wordSecond": "년 (nyeon)", + "createdAt": "2026-02-19T14:23:40.373Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_fr_pl_A1.json b/output/2026_02_19_family_home_fr_pl_A1.json new file mode 100644 index 0000000..dc9a3c4 --- /dev/null +++ b/output/2026_02_19_family_home_fr_pl_A1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:23:54.620Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "mère", + "wordSecond": "matka", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "père", + "wordSecond": "ojciec", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "frère", + "wordSecond": "brat", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sœur", + "wordSecond": "siostra", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "fils", + "wordSecond": "syn", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "fille", + "wordSecond": "córka", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "parents", + "wordSecond": "rodzice", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "grand-mère", + "wordSecond": "babcia", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "grand-père", + "wordSecond": "dziadek", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "oncle", + "wordSecond": "wujek", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "tante", + "wordSecond": "ciocia", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cousin", + "wordSecond": "kuzyn", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cousine", + "wordSecond": "kuzynka", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "famille", + "wordSecond": "rodzina", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "maison", + "wordSecond": "dom", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "appartement", + "wordSecond": "mieszkanie", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cuisine", + "wordSecond": "kuchnia", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "salle à manger", + "wordSecond": "jadalnia", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "salon", + "wordSecond": "salon", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chambre", + "wordSecond": "sypialnia", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "salle de bains", + "wordSecond": "łazienka", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "toilettes", + "wordSecond": "toaleta", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "jardin", + "wordSecond": "ogród", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "garage", + "wordSecond": "garaż", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "fenêtre", + "wordSecond": "okno", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "porte", + "wordSecond": "drzwi", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "mur", + "wordSecond": "ściana", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "plafond", + "wordSecond": "sufit", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sol", + "wordSecond": "podłoga", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "escalier", + "wordSecond": "schody", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "table", + "wordSecond": "stół", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chaise", + "wordSecond": "krzesło", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "fauteuil", + "wordSecond": "fotel", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "canapé", + "wordSecond": "kanapa", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "lit", + "wordSecond": "łóżko", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "armoire", + "wordSecond": "szafa", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "commode", + "wordSecond": "komoda", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "étagère", + "wordSecond": "półka", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "lampe", + "wordSecond": "lampa", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "télévision", + "wordSecond": "telewizor", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "radio", + "wordSecond": "radio", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "ordinateur", + "wordSecond": "komputer", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "téléphone", + "wordSecond": "telefon", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "réfrigérateur", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "four", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "évier", + "wordSecond": "zlew", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "casserole", + "wordSecond": "garnek", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "poêle", + "wordSecond": "patelnia", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "assiette", + "wordSecond": "talerz", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "verre", + "wordSecond": "szklanka", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "couvert", + "wordSecond": "sztućce", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "fourchette", + "wordSecond": "widelec", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "couteau", + "wordSecond": "nóż", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cuillère", + "wordSecond": "łyżka", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "tasse", + "wordSecond": "filiżanka", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "serviette", + "wordSecond": "ręcznik", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "savon", + "wordSecond": "mydło", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "shampooing", + "wordSecond": "szampon", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "drap", + "wordSecond": "prześcieradło", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "couverture", + "wordSecond": "koc", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "oreiller", + "wordSecond": "poduszka", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "miroir", + "wordSecond": "lustro", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "brosse à dents", + "wordSecond": "szczoteczka do zębów", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dentifrice", + "wordSecond": "pasta do zębów", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "balai", + "wordSecond": "miotła", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "aspirateur", + "wordSecond": "odkurzacz", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "poubelle", + "wordSecond": "kosz na śmieci", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "clé", + "wordSecond": "klucz", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "horloge", + "wordSecond": "zegar", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rideau", + "wordSecond": "zasłona", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "tapis", + "wordSecond": "dywan", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "livre", + "wordSecond": "książka", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "journal", + "wordSecond": "gazeta", + "createdAt": "2026-02-19T14:23:54.620Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_fr_zh_A1.json b/output/2026_02_19_family_home_fr_zh_A1.json new file mode 100644 index 0000000..3cc75a9 --- /dev/null +++ b/output/2026_02_19_family_home_fr_zh_A1.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:23:20.071Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mère", + "wordSecond": "妈妈 (māma)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "père", + "wordSecond": "爸爸 (bàba)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "frère", + "wordSecond": "哥哥 (gēge)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "soeur", + "wordSecond": "姐姐 (jiějie)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "enfant", + "wordSecond": "孩子 (háizi)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fils", + "wordSecond": "儿子 (érzi)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fille", + "wordSecond": "女儿 (nǚ'ér)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "grand-père", + "wordSecond": "爷爷 (yéye)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "grand-mère", + "wordSecond": "奶奶 (nǎinai)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "oncle", + "wordSecond": "叔叔 (shūshu)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tante", + "wordSecond": "阿姨 (āyí)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cousin", + "wordSecond": "表哥 (biǎogē)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cousine", + "wordSecond": "表姐 (biǎojiě)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "famille", + "wordSecond": "家庭 (jiātíng)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "maison", + "wordSecond": "房子 (fángzi)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "appartement", + "wordSecond": "公寓 (gōngyù)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cuisine", + "wordSecond": "厨房 (chúfáng)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chambre", + "wordSecond": "卧室 (wòshì)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "salle de bain", + "wordSecond": "浴室 (yùshì)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "salon", + "wordSecond": "客厅 (kètīng)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "table", + "wordSecond": "桌子 (zhuōzi)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chaise", + "wordSecond": "椅子 (yǐzi)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lit", + "wordSecond": "床 (chuáng)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "canapé", + "wordSecond": "沙发 (shāfā)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lampe", + "wordSecond": "灯 (dēng)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fenêtre", + "wordSecond": "窗户 (chuānghu)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "porte", + "wordSecond": "门 (mén)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mur", + "wordSecond": "墙 (qiáng)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "plancher", + "wordSecond": "地板 (dìbǎn)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "toit", + "wordSecond": "屋顶 (wūdǐng)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "jardin", + "wordSecond": "花园 (huāyuán)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "garage", + "wordSecond": "车库 (chēkù)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "escalier", + "wordSecond": "楼梯 (lóutī)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "télévision", + "wordSecond": "电视 (diànshì)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "radio", + "wordSecond": "收音机 (shōuyīnjī)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "téléphone", + "wordSecond": "电话 (diànhuà)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ordinateur", + "wordSecond": "电脑 (diànnǎo)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "réfrigérateur", + "wordSecond": "冰箱 (bīngxiāng)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "four", + "wordSecond": "烤箱 (kǎoxiāng)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "évier", + "wordSecond": "水槽 (shuǐcáo)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "armoire", + "wordSecond": "衣柜 (yīguì)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "commode", + "wordSecond": "抽屉柜 (chōutiguì)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "miroir", + "wordSecond": "镜子 (jìngzi)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "drap", + "wordSecond": "床单 (chuángdān)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "couverture", + "wordSecond": "毯子 (tǎnzi)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "oreiller", + "wordSecond": "枕头 (zhěntou)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tapis", + "wordSecond": "地毯 (dìtǎn)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "rideau", + "wordSecond": "窗帘 (chuānglián)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "horloge", + "wordSecond": "钟 (zhōng)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "livre", + "wordSecond": "书 (shū)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "journal", + "wordSecond": "报纸 (bàozhǐ)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "crayon", + "wordSecond": "铅笔 (qiānbǐ)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "stylo", + "wordSecond": "钢笔 (gāngbǐ)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cahier", + "wordSecond": "笔记本 (bǐjìběn)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "clé", + "wordSecond": "钥匙 (yàoshi)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "argent", + "wordSecond": "钱 (qián)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sac", + "wordSecond": "包 (bāo)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vêtement", + "wordSecond": "衣服 (yīfu)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chaussure", + "wordSecond": "鞋 (xié)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "nourriture", + "wordSecond": "食物 (shíwù)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "eau", + "wordSecond": "水 (shuǐ)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lait", + "wordSecond": "牛奶 (niúnǎi)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pain", + "wordSecond": "面包 (miànbāo)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fruit", + "wordSecond": "水果 (shuǐguǒ)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "légume", + "wordSecond": "蔬菜 (shūcài)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "viande", + "wordSecond": "肉 (ròu)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "poisson", + "wordSecond": "鱼 (yú)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "œuf", + "wordSecond": "鸡蛋 (jīdàn)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "riz", + "wordSecond": "米饭 (mǐfàn)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "thé", + "wordSecond": "茶 (chá)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "café", + "wordSecond": "咖啡 (kāfēi)", + "createdAt": "2026-02-19T14:23:20.071Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_it_ja_A1.json b/output/2026_02_19_family_home_it_ja_A1.json new file mode 100644 index 0000000..8225cc5 --- /dev/null +++ b/output/2026_02_19_family_home_it_ja_A1.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:24:17.234Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "madre", + "wordSecond": "母 (はは, haha)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "padre", + "wordSecond": "父 (ちち, chichi)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sorella", + "wordSecond": "姉妹 (しまい, shimai)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fratello", + "wordSecond": "兄弟 (きょうだい, kyoudai)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "nonna", + "wordSecond": "祖母 (そぼ, sobo)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "nonno", + "wordSecond": "祖父 (そふ, sofu)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cugino", + "wordSecond": "いとこ (itoko)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cugina", + "wordSecond": "いとこ (itoko)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "famiglia", + "wordSecond": "家族 (かぞく, kazoku)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "casa", + "wordSecond": "家 (いえ, ie)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cucina", + "wordSecond": "台所 (だいどころ, daidokoro)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "camera da letto", + "wordSecond": "寝室 (しんしつ, shinshitsu)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "bagno", + "wordSecond": "お風呂 (おふろ, ofuro)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "soggiorno", + "wordSecond": "居間 (いま, ima)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tavolo", + "wordSecond": "テーブル (teeburu)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sedia", + "wordSecond": "椅子 (いす, isu)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "letto", + "wordSecond": "ベッド (beddo)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "divano", + "wordSecond": "ソファ (sofa)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lampada", + "wordSecond": "ランプ (ranpu)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "finestra", + "wordSecond": "窓 (まど, mado)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "porta", + "wordSecond": "ドア (doa)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "parete", + "wordSecond": "壁 (かべ, kabe)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pavimento", + "wordSecond": "床 (ゆか, yuka)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tetto", + "wordSecond": "屋根 (やね, yane)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "giardino", + "wordSecond": "庭 (にわ, niwa)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "zona pranzo", + "wordSecond": "ダイニング (dainingu)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "scala", + "wordSecond": "階段 (かいだん, kaidan)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "corridoio", + "wordSecond": "廊下 (ろうか, rouka)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "armadio", + "wordSecond": "クローゼット (kuroozetto)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "specchio", + "wordSecond": "鏡 (かがみ, kagami)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lavandino", + "wordSecond": "流し (ながし, nagashi)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "doccia", + "wordSecond": "シャワー (shawaa)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "toilette", + "wordSecond": "トイレ (toire)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "vasca da bagno", + "wordSecond": "浴槽 (よくそう, yokusou)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "frigorifero", + "wordSecond": "冷蔵庫 (れいぞうこ, reizouko)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "forno", + "wordSecond": "オーブン (oobun)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fornelli", + "wordSecond": "コンロ (konro)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lavatrice", + "wordSecond": "洗濯機 (せんたくき, sentakuki)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "asciugatrice", + "wordSecond": "乾燥機 (かんそうき, kansouki)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "televisione", + "wordSecond": "テレビ (terebi)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "computer", + "wordSecond": "コンピューター (konpyuutaa)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "telefono", + "wordSecond": "電話 (でんわ, denwa)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "libro", + "wordSecond": "本 (ほん, hon)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "giornale", + "wordSecond": "新聞 (しんぶん, shinbun)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tappeto", + "wordSecond": "絨毯 (じゅうたん, juutan)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cuscino", + "wordSecond": "枕 (まくら, makura)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "coperta", + "wordSecond": "毛布 (もうふ, moufu)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lenzuolo", + "wordSecond": "シーツ (shiitsu)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "asciugamano", + "wordSecond": "タオル (taoru)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sapone", + "wordSecond": "石鹸 (せっけん, sekken)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "spazzolino da denti", + "wordSecond": "歯ブラシ (はぶらし, haburashi)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dentifricio", + "wordSecond": "歯磨き粉 (はみがきこ, hamigakiko)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pettine", + "wordSecond": "櫛 (くし, kushi)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "spazzola", + "wordSecond": "ブラシ (burashi)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "bicchiere", + "wordSecond": "グラス (gurasu)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "piatto", + "wordSecond": "皿 (さら, sara)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "forchetta", + "wordSecond": "フォーク (fooku)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "coltello", + "wordSecond": "ナイフ (naifu)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cucchiaio", + "wordSecond": "スプーン (supuun)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tazza", + "wordSecond": "カップ (kappu)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pentola", + "wordSecond": "鍋 (なべ, nabe)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "padella", + "wordSecond": "フライパン (furaipan)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "bicicletta", + "wordSecond": "自転車 (じてんしゃ, jitensha)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "automobile", + "wordSecond": "車 (くるま, kuruma)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "garage", + "wordSecond": "ガレージ (gareeji)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cantina", + "wordSecond": "地下室 (ちかしつ, chikashitsu)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "soffitta", + "wordSecond": "屋根裏 (やねうら, yaneura)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "balcone", + "wordSecond": "バルコニー (barukonii)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "terrazza", + "wordSecond": "テラス (terasu)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cancello", + "wordSecond": "門 (もん, mon)", + "createdAt": "2026-02-19T14:24:17.234Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_it_ko_A1.json b/output/2026_02_19_family_home_it_ko_A1.json new file mode 100644 index 0000000..699d049 --- /dev/null +++ b/output/2026_02_19_family_home_it_ko_A1.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:24:55.754Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "madre", + "wordSecond": "어머니 (eomeoni)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "padre", + "wordSecond": "아버지 (abeoji)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sorella", + "wordSecond": "여동생 (yeodongsaeng)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "fratello", + "wordSecond": "남동생 (namdongsaeng)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nonna", + "wordSecond": "할머니 (halmeoni)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nonno", + "wordSecond": "할아버지 (harabeoji)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cugino", + "wordSecond": "사촌 남자 (sachon namja)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cugina", + "wordSecond": "사촌 여자 (sachon yeoja)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "famiglia", + "wordSecond": "가족 (gajok)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "casa", + "wordSecond": "집 (jip)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cucina", + "wordSecond": "부엌 (bueok)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "camera da letto", + "wordSecond": "침실 (chimsil)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bagno", + "wordSecond": "화장실 (hwajangsil)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "soggiorno", + "wordSecond": "거실 (geosil)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tavolo", + "wordSecond": "탁자 (takja)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sedia", + "wordSecond": "의자 (uija)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "letto", + "wordSecond": "침대 (chimdae)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "divano", + "wordSecond": "소파 (sopa)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lampada", + "wordSecond": "램프 (raempeu)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "finestra", + "wordSecond": "창문 (changmun)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "porta", + "wordSecond": "문 (mun)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "parete", + "wordSecond": "벽 (byeok)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pavimento", + "wordSecond": "바닥 (badak)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tetto", + "wordSecond": "지붕 (jibung)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "giardino", + "wordSecond": "정원 (jeongwon)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "zaino", + "wordSecond": "가방 (gabang)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "libro", + "wordSecond": "책 (chaek)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "penna", + "wordSecond": "펜 (pen)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "matita", + "wordSecond": "연필 (yeonpil)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "quaderno", + "wordSecond": "공책 (gongchaek)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "telefono", + "wordSecond": "전화기 (jeonhwagi)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "televisione", + "wordSecond": "텔레비전 (tellebijeon)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "computer", + "wordSecond": "컴퓨터 (keompyuteo)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "orologio", + "wordSecond": "시계 (sigye)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "specchio", + "wordSecond": "거울 (geoul)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tappeto", + "wordSecond": "카펫 (kapet)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cuscino", + "wordSecond": "베개 (begae)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "coperta", + "wordSecond": "이불 (ibul)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "armadio", + "wordSecond": "옷장 (otjang)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "scaffale", + "wordSecond": "책장 (chaekjang)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "frigorifero", + "wordSecond": "냉장고 (naengjanggo)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "forno", + "wordSecond": "오븐 (obeun)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lavandino", + "wordSecond": "싱크대 (singkeudae)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "doccia", + "wordSecond": "샤워기 (syawogi)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "vasca da bagno", + "wordSecond": "욕조 (yokjo)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "water", + "wordSecond": "변기 (byeongi)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "asciugamano", + "wordSecond": "수건 (sugeon)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sapone", + "wordSecond": "비누 (binu)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "spazzolino da denti", + "wordSecond": "칫솔 (chitsol)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dentifricio", + "wordSecond": "치약 (chiyak)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "piatto", + "wordSecond": "접시 (jeopsi)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bicchiere", + "wordSecond": "컵 (keop)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "forchetta", + "wordSecond": "포크 (pokeu)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "coltello", + "wordSecond": "나이프 (naipeu)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cucchiaio", + "wordSecond": "숟가락 (sutgarak)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pentola", + "wordSecond": "냄비 (naembi)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "padella", + "wordSecond": "프라이팬 (peuraipaen)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tazza", + "wordSecond": "머그컵 (meogeukeop)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tovaglia", + "wordSecond": "식탁보 (siktakbo)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tappetino", + "wordSecond": "매트 (maeteu)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cestino", + "wordSecond": "쓰레기통 (sseuregitong)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "scopa", + "wordSecond": "빗자루 (bitjaru)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "aspirapolvere", + "wordSecond": "진공청소기 (jingongcheongsogi)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "chiave", + "wordSecond": "열쇠 (yeolsoe)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "luce", + "wordSecond": "빛 (bit)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "acqua", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cibo", + "wordSecond": "음식 (eumsik)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "latte", + "wordSecond": "우유 (uyu)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pane", + "wordSecond": "빵 (ppang)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "uovo", + "wordSecond": "계란 (gyeran)", + "createdAt": "2026-02-19T14:24:55.754Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_it_pl_A1.json b/output/2026_02_19_family_home_it_pl_A1.json new file mode 100644 index 0000000..a96e7b1 --- /dev/null +++ b/output/2026_02_19_family_home_it_pl_A1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:25:11.091Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "madre", + "wordSecond": "matka", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "padre", + "wordSecond": "ojciec", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "genitori", + "wordSecond": "rodzice", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "figlio", + "wordSecond": "syn", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "figlia", + "wordSecond": "córka", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "bambino", + "wordSecond": "dziecko", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "fratello", + "wordSecond": "brat", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sorella", + "wordSecond": "siostra", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "nonno", + "wordSecond": "dziadek", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "nonna", + "wordSecond": "babcia", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "nonni", + "wordSecond": "dziadkowie", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "zio", + "wordSecond": "wujek", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "zia", + "wordSecond": "ciocia", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cugino", + "wordSecond": "kuzyn", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cugina", + "wordSecond": "kuzynka", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "famiglia", + "wordSecond": "rodzina", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "casa", + "wordSecond": "dom", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "camera", + "wordSecond": "pokój", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cucina", + "wordSecond": "kuchnia", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "soggiorno", + "wordSecond": "salon", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "bagno", + "wordSecond": "łazienka", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "camera da letto", + "wordSecond": "sypialnia", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tavolo", + "wordSecond": "stół", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sedia", + "wordSecond": "krzesło", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "letto", + "wordSecond": "łóżko", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "divano", + "wordSecond": "sofa", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lampada", + "wordSecond": "lampa", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "finestra", + "wordSecond": "okno", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "porta", + "wordSecond": "drzwi", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "parete", + "wordSecond": "ściana", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "soffitto", + "wordSecond": "sufit", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pavimento", + "wordSecond": "podłoga", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tappeto", + "wordSecond": "dywan", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "specchio", + "wordSecond": "lustro", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "armadio", + "wordSecond": "szafa", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "comò", + "wordSecond": "komoda", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "scrivania", + "wordSecond": "biurko", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "televisione", + "wordSecond": "telewizor", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "telefono", + "wordSecond": "telefon", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "radio", + "wordSecond": "radio", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "frigorifero", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "forno", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lavandino", + "wordSecond": "zlew", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "doccia", + "wordSecond": "prysznic", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vasca", + "wordSecond": "wanna", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "water", + "wordSecond": "toaleta", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "asciugamano", + "wordSecond": "ręcznik", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sapone", + "wordSecond": "mydło", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "spazzolino", + "wordSecond": "szczoteczka do zębów", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pettine", + "wordSecond": "grzebień", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cuscino", + "wordSecond": "poduszka", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "coperta", + "wordSecond": "koc", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lenzuolo", + "wordSecond": "prześcieradło", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tovaglia", + "wordSecond": "obrus", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "piatto", + "wordSecond": "talerz", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "bicchiere", + "wordSecond": "szklanka", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tazza", + "wordSecond": "filiżanka", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "forchetta", + "wordSecond": "widelec", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "coltello", + "wordSecond": "nóż", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cucchiaio", + "wordSecond": "łyżka", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pentola", + "wordSecond": "garnek", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "padella", + "wordSecond": "patelnia", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tostapane", + "wordSecond": "toster", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "bollitore", + "wordSecond": "czajnik", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "scala", + "wordSecond": "schody", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "giardino", + "wordSecond": "ogród", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cortile", + "wordSecond": "podwórko", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "garage", + "wordSecond": "garaż", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cantina", + "wordSecond": "piwnica", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "attico", + "wordSecond": "strych", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "balcone", + "wordSecond": "balkon", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "terrazza", + "wordSecond": "taras", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vicino", + "wordSecond": "sąsiad", + "createdAt": "2026-02-19T14:25:11.091Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_it_zh_A1.json b/output/2026_02_19_family_home_it_zh_A1.json new file mode 100644 index 0000000..338e18b --- /dev/null +++ b/output/2026_02_19_family_home_it_zh_A1.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:24:35.873Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "madre", + "wordSecond": "妈妈 (māma)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "padre", + "wordSecond": "爸爸 (bàba)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sorella", + "wordSecond": "姐姐 (jiějie)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fratello", + "wordSecond": "哥哥 (gēge)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "nonna", + "wordSecond": "奶奶 (nǎinai)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "nonno", + "wordSecond": "爷爷 (yéye)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "zia", + "wordSecond": "阿姨 (āyí)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "zio", + "wordSecond": "叔叔 (shūshu)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cugina", + "wordSecond": "表妹 (biǎomèi)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cugino", + "wordSecond": "表哥 (biǎogē)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "figlia", + "wordSecond": "女儿 (nǚ'ér)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "figlio", + "wordSecond": "儿子 (érzi)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "casa", + "wordSecond": "家 (jiā)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cucina", + "wordSecond": "厨房 (chúfáng)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "camera da letto", + "wordSecond": "卧室 (wòshì)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "bagno", + "wordSecond": "浴室 (yùshì)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "soggiorno", + "wordSecond": "客厅 (kètīng)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tavolo", + "wordSecond": "桌子 (zhuōzi)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sedia", + "wordSecond": "椅子 (yǐzi)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "letto", + "wordSecond": "床 (chuáng)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "divano", + "wordSecond": "沙发 (shāfā)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lampada", + "wordSecond": "灯 (dēng)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "finestra", + "wordSecond": "窗户 (chuānghu)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "porta", + "wordSecond": "门 (mén)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "parete", + "wordSecond": "墙 (qiáng)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pavimento", + "wordSecond": "地板 (dìbǎn)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tetto", + "wordSecond": "屋顶 (wūdǐng)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "giardino", + "wordSecond": "花园 (huāyuán)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "frigorifero", + "wordSecond": "冰箱 (bīngxiāng)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "forno", + "wordSecond": "烤箱 (kǎoxiāng)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lavandino", + "wordSecond": "水槽 (shuǐcáo)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "doccia", + "wordSecond": "淋浴 (línyù)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "vasca da bagno", + "wordSecond": "浴缸 (yùgāng)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "water", + "wordSecond": "马桶 (mǎtǒng)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "specchio", + "wordSecond": "镜子 (jìngzi)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "armadio", + "wordSecond": "衣柜 (yīguì)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "comò", + "wordSecond": "抽屉柜 (chōutìguì)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tappeto", + "wordSecond": "地毯 (dìtǎn)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tenda", + "wordSecond": "窗帘 (chuānglián)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cuscino", + "wordSecond": "枕头 (zhěntou)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "coperta", + "wordSecond": "毯子 (tǎnzi)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lenzuolo", + "wordSecond": "床单 (chuángdān)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "televisione", + "wordSecond": "电视 (diànshì)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "telefono", + "wordSecond": "电话 (diànhuà)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "computer", + "wordSecond": "电脑 (diànnǎo)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "libro", + "wordSecond": "书 (shū)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "giornale", + "wordSecond": "报纸 (bàozhǐ)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "penna", + "wordSecond": "笔 (bǐ)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "quaderno", + "wordSecond": "笔记本 (bǐjìběn)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "chiave", + "wordSecond": "钥匙 (yàoshi)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "orologio", + "wordSecond": "钟 (zhōng)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "calendario", + "wordSecond": "日历 (rìlì)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "foto", + "wordSecond": "照片 (zhàopiàn)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "quadro", + "wordSecond": "画 (huà)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pianta", + "wordSecond": "植物 (zhíwù)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fiori", + "wordSecond": "花 (huā)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cibo", + "wordSecond": "食物 (shíwù)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "acqua", + "wordSecond": "水 (shuǐ)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "latte", + "wordSecond": "牛奶 (niúnǎi)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pane", + "wordSecond": "面包 (miànbāo)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "frutta", + "wordSecond": "水果 (shuǐguǒ)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "verdura", + "wordSecond": "蔬菜 (shūcài)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "piatto", + "wordSecond": "盘子 (pánzi)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "bicchiere", + "wordSecond": "杯子 (bēizi)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "forchetta", + "wordSecond": "叉子 (chāzi)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "coltello", + "wordSecond": "刀 (dāo)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cucchiaio", + "wordSecond": "勺子 (sháozi)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tazza", + "wordSecond": "杯子 (bēizi)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pentola", + "wordSecond": "锅 (guō)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "padella", + "wordSecond": "平底锅 (píngdǐguō)", + "createdAt": "2026-02-19T14:24:35.873Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_ja_ko_A1.json b/output/2026_02_19_family_home_ja_ko_A1.json new file mode 100644 index 0000000..7556219 --- /dev/null +++ b/output/2026_02_19_family_home_ja_ko_A1.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:26:10.126Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "母 (はは, haha)", + "wordSecond": "어머니 (eomeoni)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "父 (ちち, chichi)", + "wordSecond": "아버지 (abeoji)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お母さん (おかあさん, okaasan)", + "wordSecond": "엄마 (eomma)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お父さん (おとうさん, otousan)", + "wordSecond": "아빠 (appa)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "姉 (あね, ane)", + "wordSecond": "누나 (nuna)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "兄 (あに, ani)", + "wordSecond": "형 (hyeong)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "妹 (いもうと, imouto)", + "wordSecond": "여동생 (yeodongsaeng)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "弟 (おとうと, otouto)", + "wordSecond": "남동생 (namdongsaeng)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "家族 (かぞく, kazoku)", + "wordSecond": "가족 (gajok)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "家 (いえ, ie)", + "wordSecond": "집 (jip)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "台所 (だいどころ, daidokoro)", + "wordSecond": "부엌 (bueok)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "寝室 (しんしつ, shinshitsu)", + "wordSecond": "침실 (chimsil)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "バスルーム (ばするーむ, basuruumu)", + "wordSecond": "욕실 (yoksil)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "リビングルーム (りびんぐるーむ, ribinguruumu)", + "wordSecond": "거실 (geosil)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "テーブル (てーぶる, teeburu)", + "wordSecond": "탁자 (takja)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "椅子 (いす, isu)", + "wordSecond": "의자 (uija)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ベッド (べっど, beddo)", + "wordSecond": "침대 (chimdae)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ソファ (そふぁ, sofa)", + "wordSecond": "소파 (sopa)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ランプ (らんぷ, ranpu)", + "wordSecond": "램프 (raempeu)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "祖父 (そふ, sofu)", + "wordSecond": "할아버지 (harabeoji)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "祖母 (そぼ, sobo)", + "wordSecond": "할머니 (halmeoni)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "おじいさん (おじいさん, ojiisan)", + "wordSecond": "할아버지 (harabeoji)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "おばあさん (おばあさん, obaasan)", + "wordSecond": "할머니 (halmeoni)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "いとこ (いとこ, itoko)", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "子供 (こども, kodomo)", + "wordSecond": "아이 (ai)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "赤ちゃん (あかちゃん, akachan)", + "wordSecond": "아기 (agi)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "男の子 (おとこのこ, otokonoko)", + "wordSecond": "소년 (sonyeon)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "女の子 (おんなのこ, onnanoko)", + "wordSecond": "소녀 (sonyeo)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "人 (ひと, hito)", + "wordSecond": "사람 (saram)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "名前 (なまえ, namae)", + "wordSecond": "이름 (ireum)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "年 (とし, toshi)", + "wordSecond": "나이 (nai)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "犬 (いぬ, inu)", + "wordSecond": "개 (gae)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "猫 (ねこ, neko)", + "wordSecond": "고양이 (goyangi)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "窓 (まど, mado)", + "wordSecond": "창문 (changmun)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ドア (どあ, doa)", + "wordSecond": "문 (mun)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "壁 (かべ, kabe)", + "wordSecond": "벽 (byeok)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "屋根 (やね, yane)", + "wordSecond": "지붕 (jibung)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "床 (ゆか, yuka)", + "wordSecond": "바닥 (badak)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "天井 (てんじょう, tenjou)", + "wordSecond": "천장 (cheonjang)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "階段 (かいだん, kaidan)", + "wordSecond": "계단 (gyedan)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "玄関 (げんかん, genkan)", + "wordSecond": "현관 (hyeongwan)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "庭 (にわ, niwa)", + "wordSecond": "정원 (jeongwon)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ガレージ (がれーじ, gareeji)", + "wordSecond": "차고 (chago)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "冷蔵庫 (れいぞうこ, reizouko)", + "wordSecond": "냉장고 (naengjanggo)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "電子レンジ (でんしれんじ, denshirenji)", + "wordSecond": "전자레인지 (jeonjareinji)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ストーブ (すとーぶ, sutoobu)", + "wordSecond": "난로 (nallo)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "エアコン (えあこん, eakon)", + "wordSecond": "에어컨 (eeokeon)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "テレビ (てれび, terebi)", + "wordSecond": "텔레비전 (tellebijeon)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "電話 (でんわ, denwa)", + "wordSecond": "전화 (jeonhwa)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "コンピューター (こんぴゅーたー, konpyuutaa)", + "wordSecond": "컴퓨터 (keompyuteo)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "本 (ほん, hon)", + "wordSecond": "책 (chaek)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "新聞 (しんぶん, shinbun)", + "wordSecond": "신문 (sinmun)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "雑誌 (ざっし, zasshi)", + "wordSecond": "잡지 (japji)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "時計 (とけい, tokei)", + "wordSecond": "시계 (sigye)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "カーテン (かーてん, kaaten)", + "wordSecond": "커튼 (keoteun)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鏡 (かがみ, kagami)", + "wordSecond": "거울 (geoul)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "棚 (たな, tana)", + "wordSecond": "선반 (seonban)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "戸棚 (とだな, todana)", + "wordSecond": "장 (jang)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "引き出し (ひきだし, hikidashi)", + "wordSecond": "서랍 (seorap)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "食器棚 (しょっきだな, shokkidana)", + "wordSecond": "식기장 (sikgijang)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "洗面台 (せんめんだい, senmendai)", + "wordSecond": "세면대 (semyeondae)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "シャワー (しゃわー, shawaa)", + "wordSecond": "샤워기 (syawogi)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "トイレ (といれ, toire)", + "wordSecond": "화장실 (hwajangsil)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "風呂 (ふろ, furo)", + "wordSecond": "목욕탕 (mogyoktang)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "タオル (たおる, taoru)", + "wordSecond": "수건 (sugeon)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "歯ブラシ (はぶらし, haburashi)", + "wordSecond": "칫솔 (chitsol)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "石鹸 (せっけん, sekken)", + "wordSecond": "비누 (binu)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鍵 (かぎ, kagi)", + "wordSecond": "열쇠 (yeolsoe)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "電気 (でんき, denki)", + "wordSecond": "전기 (jeongi)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "水 (みず, mizu)", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T14:26:10.126Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_ja_pl_A1.json b/output/2026_02_19_family_home_ja_pl_A1.json new file mode 100644 index 0000000..8e54e0d --- /dev/null +++ b/output/2026_02_19_family_home_ja_pl_A1.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:26:33.349Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "母 (はは, haha)", + "wordSecond": "matka", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "父 (ちち, chichi)", + "wordSecond": "ojciec", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "お母さん (おかあさん, okāsan)", + "wordSecond": "mama", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "お父さん (おとうさん, otōsan)", + "wordSecond": "tata", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "姉 (あね, ane)", + "wordSecond": "siostra (starsza)", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "妹 (いもうと, imōto)", + "wordSecond": "siostra (młodsza)", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "兄 (あに, ani)", + "wordSecond": "brat (starszy)", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "弟 (おとうと, otōto)", + "wordSecond": "brat (młodszy)", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "兄弟 (きょうだい, kyōdai)", + "wordSecond": "rodzeństwo", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "姉妹 (しまい, shimai)", + "wordSecond": "siostry", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "子供 (こども, kodomo)", + "wordSecond": "dziecko", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "男の子 (おとこのこ, otokonoko)", + "wordSecond": "chłopiec", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "女の子 (おんなのこ, onnanoko)", + "wordSecond": "dziewczynka", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "赤ちゃん (あかちゃん, akachan)", + "wordSecond": "niemowlę", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おじいさん (ojiisan)", + "wordSecond": "dziadek", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おばあさん (obāsan)", + "wordSecond": "babcia", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "祖父 (そふ, sofu)", + "wordSecond": "dziadek", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "祖母 (そぼ, sobo)", + "wordSecond": "babcia", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おじ (oji)", + "wordSecond": "wujek", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おば (oba)", + "wordSecond": "ciotka", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "いとこ (itoko)", + "wordSecond": "kuzyn / kuzynka", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "家族 (かぞく, kazoku)", + "wordSecond": "rodzina", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "家 (いえ, ie)", + "wordSecond": "dom", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "家 (うち, uchi)", + "wordSecond": "dom / mój dom", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "部屋 (へや, heya)", + "wordSecond": "pokój", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "寝室 (しんしつ, shinshitsu)", + "wordSecond": "sypialnia", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ベッドルーム (beddorūmu)", + "wordSecond": "sypialnia", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "キッチン (kitchin)", + "wordSecond": "kuchnia", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "台所 (だいどころ, daidokoro)", + "wordSecond": "kuchnia", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "リビングルーム (ribingurūmu)", + "wordSecond": "salon", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "居間 (いま, ima)", + "wordSecond": "salon", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "バスルーム (basurūmu)", + "wordSecond": "łazienka", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "お風呂 (おふろ, ofuro)", + "wordSecond": "łazienka / wanna", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "トイレ (toire)", + "wordSecond": "toaleta", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "玄関 (げんかん, genkan)", + "wordSecond": "przedsionek", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "窓 (まど, mado)", + "wordSecond": "okno", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ドア (doa)", + "wordSecond": "drzwi", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "屋根 (やね, yane)", + "wordSecond": "dach", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "庭 (にわ, niwa)", + "wordSecond": "ogród", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "テーブル (tēburu)", + "wordSecond": "stół", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "椅子 (いす, isu)", + "wordSecond": "krzesło", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ベッド (beddo)", + "wordSecond": "łóżko", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ソファ (sofa)", + "wordSecond": "kanapa / sofa", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ランプ (ranpu)", + "wordSecond": "lampa", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "電気 (でんき, denki)", + "wordSecond": "światło / lampa", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "本棚 (ほんだな, hondana)", + "wordSecond": "półka na książki", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "棚 (たな, tana)", + "wordSecond": "półka", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "冷蔵庫 (れいぞうこ, reizōko)", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "電子レンジ (でんしれんじ, denshirenji)", + "wordSecond": "kuchenka mikrofalowa", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "オーブン (ōbun)", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "コンロ (konro)", + "wordSecond": "kuchenka", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "流し (ながし, nagashi)", + "wordSecond": "zlew", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "食器棚 (しょっきだな, shokkidana)", + "wordSecond": "szafka kuchenna", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "洗濯機 (せんたくき, sentakuki)", + "wordSecond": "pralka", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "鏡 (かがみ, kagami)", + "wordSecond": "lustro", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "シャワー (shawā)", + "wordSecond": "prysznic", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "浴槽 (よくそう, yokusō)", + "wordSecond": "wanna", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "洗面台 (せんめんだい, senmendai)", + "wordSecond": "umywalka", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "タオル (taoru)", + "wordSecond": "ręcznik", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "歯ブラシ (はブラシ, haburashi)", + "wordSecond": "szczoteczka do zębów", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "歯磨き粉 (はみがきこ, hamigakiko)", + "wordSecond": "pasta do zębów", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "布団 (ふとん, futon)", + "wordSecond": "futon / pościel", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "枕 (まくら, makura)", + "wordSecond": "poduszka", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "毛布 (もうふ, mōfu)", + "wordSecond": "koc", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "カーテン (kāten)", + "wordSecond": "zasłona", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "カーペット (kāpetto)", + "wordSecond": "dywan", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "時計 (とけい, tokei)", + "wordSecond": "zegar", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "電話 (でんわ, denwa)", + "wordSecond": "telefon", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "テレビ (terebi)", + "wordSecond": "telewizor", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "コンピューター (konpyūtā)", + "wordSecond": "komputer", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "鍵 (かぎ, kagi)", + "wordSecond": "klucz", + "createdAt": "2026-02-19T14:26:33.349Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_ja_zh_A1.json b/output/2026_02_19_family_home_ja_zh_A1.json new file mode 100644 index 0000000..b32ce38 --- /dev/null +++ b/output/2026_02_19_family_home_ja_zh_A1.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:25:40.828Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "母 (はは, haha)", + "wordSecond": "妈妈 (māma)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "父 (ちち, chichi)", + "wordSecond": "爸爸 (bàba)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お母さん (おかあさん, okāsan)", + "wordSecond": "母亲 (mǔqin)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お父さん (おとうさん, otōsan)", + "wordSecond": "父亲 (fùqin)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "姉 (あね, ane)", + "wordSecond": "姐姐 (jiějie)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "兄 (あに, ani)", + "wordSecond": "哥哥 (gēge)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "妹 (いもうと, imōto)", + "wordSecond": "妹妹 (mèimei)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "弟 (おとうと, otōto)", + "wordSecond": "弟弟 (dìdi)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "兄弟 (きょうだい, kyōdai)", + "wordSecond": "兄弟 (xiōngdì)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "姉妹 (しまい, shimai)", + "wordSecond": "姐妹 (jiěmèi)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "家族 (かぞく, kazoku)", + "wordSecond": "家庭 (jiātíng)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "家 (いえ, ie)", + "wordSecond": "家 (jiā)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "家 (うち, uchi)", + "wordSecond": "房子 (fángzi)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "祖父 (そふ, sofu)", + "wordSecond": "爷爷 (yéye)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "祖母 (そぼ, sobo)", + "wordSecond": "奶奶 (nǎinai)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "おじいさん (おじいさん, ojīsan)", + "wordSecond": "祖父 (zǔfù)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "おばあさん (おばあさん, obāsan)", + "wordSecond": "祖母 (zǔmǔ)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "孫 (まご, mago)", + "wordSecond": "孙子 (sūnzi)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "孫娘 (まごむすめ, magomusume)", + "wordSecond": "孙女 (sūnnǚ)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "叔父 (おじ, oji)", + "wordSecond": "叔叔 (shūshu)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "叔母 (おば, oba)", + "wordSecond": "阿姨 (āyí)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "いとこ (いとこ, itoko)", + "wordSecond": "堂兄弟 (tángxiōngdì)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "いとこ (いとこ, itoko)", + "wordSecond": "堂姐妹 (tángjiěmèi)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "従兄弟 (いとこ, itoko)", + "wordSecond": "表兄弟 (biǎoxiōngdì)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "従姉妹 (いとこ, itoko)", + "wordSecond": "表姐妹 (biǎojiěmèi)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "子供 (こども, kodomo)", + "wordSecond": "孩子 (háizi)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "赤ちゃん (あかちゃん, akachan)", + "wordSecond": "婴儿 (yīng'ér)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "男の子 (おとこのこ, otokonoko)", + "wordSecond": "男孩 (nánhái)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "女の子 (おんなのこ, onnanoko)", + "wordSecond": "女孩 (nǚhái)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "台所 (だいどころ, daidokoro)", + "wordSecond": "厨房 (chúfáng)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "キッチン (きっちん, kicchin)", + "wordSecond": "厨房 (chúfáng)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "寝室 (しんしつ, shinshitsu)", + "wordSecond": "卧室 (wòshì)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ベッドルーム (べっどるーむ, beddorūmu)", + "wordSecond": "卧室 (wòshì)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "風呂場 (ふろば, furoba)", + "wordSecond": "浴室 (yùshì)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "バスルーム (ばするーむ, basurūmu)", + "wordSecond": "浴室 (yùshì)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "トイレ (といれ, toire)", + "wordSecond": "厕所 (cèsuǒ)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "リビングルーム (りびんぐるーむ, ribingurūmu)", + "wordSecond": "客厅 (kètīng)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "居間 (いま, ima)", + "wordSecond": "客厅 (kètīng)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ダイニングルーム (だいにんぐるーむ, diningurūmu)", + "wordSecond": "餐厅 (cāntīng)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "玄関 (げんかん, genkan)", + "wordSecond": "门口 (ménkǒu)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "庭 (にわ, niwa)", + "wordSecond": "花园 (huāyuán)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "窓 (まど, mado)", + "wordSecond": "窗户 (chuānghu)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ドア (どあ, doa)", + "wordSecond": "门 (mén)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "テーブル (てーぶる, tēburu)", + "wordSecond": "桌子 (zhuōzi)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "椅子 (いす, isu)", + "wordSecond": "椅子 (yǐzi)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ベッド (べっど, beddo)", + "wordSecond": "床 (chuáng)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ソファ (そふぁ, sofa)", + "wordSecond": "沙发 (shāfā)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "本棚 (ほんだな, hondana)", + "wordSecond": "书架 (shūjià)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "棚 (たな, tana)", + "wordSecond": "架子 (jiàzi)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "冷蔵庫 (れいぞうこ, reizōko)", + "wordSecond": "冰箱 (bīngxiāng)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "電子レンジ (でんしれんじ, denshirenji)", + "wordSecond": "微波炉 (wēibōlú)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "オーブン (おーぶん, ōbun)", + "wordSecond": "烤箱 (kǎoxiāng)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "流し台 (ながしだい, nagashidai)", + "wordSecond": "水槽 (shuǐcáo)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "コンロ (こんろ, konro)", + "wordSecond": "炉灶 (lúzào)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "洗濯機 (せんたくき, sentakuki)", + "wordSecond": "洗衣机 (xǐyījī)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "テレビ (てれび, terebi)", + "wordSecond": "电视 (diànshì)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ランプ (らんぷ, ranpu)", + "wordSecond": "灯 (dēng)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "電気 (でんき, denki)", + "wordSecond": "电灯 (diàndēng)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "時計 (とけい, tokei)", + "wordSecond": "钟 (zhōng)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "鏡 (かがみ, kagami)", + "wordSecond": "镜子 (jìngzi)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "カーテン (かーてん, kāten)", + "wordSecond": "窗帘 (chuānglián)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "カーペット (かーぺっと, kāpetto)", + "wordSecond": "地毯 (dìtǎn)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "壁 (かべ, kabe)", + "wordSecond": "墙 (qiáng)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "床 (ゆか, yuka)", + "wordSecond": "地板 (dìbǎn)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "天井 (てんじょう, tenjō)", + "wordSecond": "天花板 (tiānhuābǎn)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "階段 (かいだん, kaidan)", + "wordSecond": "楼梯 (lóutī)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "屋根 (やね, yane)", + "wordSecond": "屋顶 (wūdǐng)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ガレージ (がれーじ, garēji)", + "wordSecond": "车库 (chēkù)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "車 (くるま, kuruma)", + "wordSecond": "汽车 (qìchē)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "自転車 (じてんしゃ, jitensha)", + "wordSecond": "自行车 (zìxíngchē)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "鍵 (かぎ, kagi)", + "wordSecond": "钥匙 (yàoshi)", + "createdAt": "2026-02-19T14:25:40.828Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_ko_pl_A1.json b/output/2026_02_19_family_home_ko_pl_A1.json new file mode 100644 index 0000000..af89b2a --- /dev/null +++ b/output/2026_02_19_family_home_ko_pl_A1.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:27:38.802Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "어머니 (eomeoni)", + "wordSecond": "matka", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "아버지 (abeoji)", + "wordSecond": "ojciec", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "엄마 (eomma)", + "wordSecond": "mama", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "아빠 (appa)", + "wordSecond": "tata", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "형 (hyeong)", + "wordSecond": "brat (starszy)", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "오빠 (oppa)", + "wordSecond": "brat (starszy - siostra)", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "누나 (nuna)", + "wordSecond": "siostra (starsza)", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "언니 (eonni)", + "wordSecond": "siostra (starsza - siostra)", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "남동생 (namdongsaeng)", + "wordSecond": "brat (młodszy)", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "여동생 (yeodongsaeng)", + "wordSecond": "siostra (młodsza)", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "할아버지 (harabeoji)", + "wordSecond": "dziadek", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "할머니 (halmeoni)", + "wordSecond": "babcia", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "손자 (sonja)", + "wordSecond": "wnuk", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "손녀 (sonnyeo)", + "wordSecond": "wnuczka", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "아들 (adeul)", + "wordSecond": "syn", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "딸 (ttal)", + "wordSecond": "córka", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "삼촌 (samchon)", + "wordSecond": "wujek", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "이모 (imo)", + "wordSecond": "ciotka", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "사촌 (sachon)", + "wordSecond": "kuzyn / kuzynka", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "가족 (gajok)", + "wordSecond": "rodzina", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "집 (jip)", + "wordSecond": "dom", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "방 (bang)", + "wordSecond": "pokój", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "거실 (geosil)", + "wordSecond": "salon", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "부엌 (bueok)", + "wordSecond": "kuchnia", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "화장실 (hwajangsil)", + "wordSecond": "łazienka", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "침실 (chimsil)", + "wordSecond": "sypialnia", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "문 (mun)", + "wordSecond": "drzwi", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "창문 (changmun)", + "wordSecond": "okno", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "벽 (byeok)", + "wordSecond": "ściana", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "천장 (cheonjang)", + "wordSecond": "sufit", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "바닥 (badak)", + "wordSecond": "podłoga", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "계단 (gyedan)", + "wordSecond": "schody", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "정원 (jeongwon)", + "wordSecond": "ogród", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "주방 (jubang)", + "wordSecond": "kuchnia", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "식탁 (siktak)", + "wordSecond": "stół", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "의자 (uija)", + "wordSecond": "krzesło", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "침대 (chimdae)", + "wordSecond": "łóżko", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "소파 (sopa)", + "wordSecond": "sofa", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "의자 (uija)", + "wordSecond": "fotel", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "램프 (raempeu)", + "wordSecond": "lampa", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "전등 (jeondeung)", + "wordSecond": "lampa sufitowa", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "책상 (chaeksang)", + "wordSecond": "biurko", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "서랍 (seorap)", + "wordSecond": "szuflada", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "옷장 (otjang)", + "wordSecond": "szafa", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "냉장고 (naengjanggo)", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "가스레인지 (gaseureinji)", + "wordSecond": "kuchenka gazowa", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "전자레인지 (jeonjareinji)", + "wordSecond": "mikrofalówka", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "싱크대 (singkeudae)", + "wordSecond": "zlew", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "수도꼭지 (sudokkokji)", + "wordSecond": "kran", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "변기 (byeongi)", + "wordSecond": "toaleta", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "욕조 (yokjo)", + "wordSecond": "wanna", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "샤워기 (syawogi)", + "wordSecond": "prysznic", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "거울 (geoul)", + "wordSecond": "lustro", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "수건 (sugeon)", + "wordSecond": "ręcznik", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "이불 (ibul)", + "wordSecond": "kołdra", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "베개 (begae)", + "wordSecond": "poduszka", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "담요 (damyo)", + "wordSecond": "koc", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "카펫 (kapet)", + "wordSecond": "dywan", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "커튼 (keoteun)", + "wordSecond": "zasłona", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "시계 (sigye)", + "wordSecond": "zegar", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "텔레비전 (tellebijeon)", + "wordSecond": "telewizor", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "라디오 (radio)", + "wordSecond": "radio", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "전화 (jeonhwa)", + "wordSecond": "telefon", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "컴퓨터 (keompyuteo)", + "wordSecond": "komputer", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "책 (chaek)", + "wordSecond": "książka", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "장난감 (jangnangam)", + "wordSecond": "zabawka", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "사진 (sajin)", + "wordSecond": "zdjęcie", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "꽃 (kkot)", + "wordSecond": "kwiat", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "나무 (namu)", + "wordSecond": "drzewo", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "고양이 (goyangi)", + "wordSecond": "kot", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "개 (gae)", + "wordSecond": "pies", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "물 (mul)", + "wordSecond": "woda", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "차 (cha)", + "wordSecond": "herbata", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "우유 (uyu)", + "wordSecond": "mleko", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "빵 (ppang)", + "wordSecond": "chleb", + "createdAt": "2026-02-19T14:27:38.802Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_pt_de_A1.json b/output/2026_02_19_family_home_pt_de_A1.json new file mode 100644 index 0000000..0cdabd5 --- /dev/null +++ b/output/2026_02_19_family_home_pt_de_A1.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:18:52.262Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mãe", + "wordSecond": "Mutter", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pai", + "wordSecond": "Vater", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "irmão", + "wordSecond": "Bruder", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "irmã", + "wordSecond": "Schwester", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "filho", + "wordSecond": "Sohn", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "filha", + "wordSecond": "Tochter", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "avó", + "wordSecond": "Oma", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "avô", + "wordSecond": "Opa", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tio", + "wordSecond": "Onkel", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tia", + "wordSecond": "Tante", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "primo", + "wordSecond": "Cousin", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "prima", + "wordSecond": "Cousine", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "família", + "wordSecond": "Familie", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "casa", + "wordSecond": "Haus", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "apartamento", + "wordSecond": "Wohnung", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cozinha", + "wordSecond": "Küche", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quarto", + "wordSecond": "Zimmer", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sala", + "wordSecond": "Wohnzimmer", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "banheiro", + "wordSecond": "Badezimmer", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quarto de dormir", + "wordSecond": "Schlafzimmer", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "porta", + "wordSecond": "Tür", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "janela", + "wordSecond": "Fenster", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "parede", + "wordSecond": "Wand", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chão", + "wordSecond": "Fußboden", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "teto", + "wordSecond": "Decke", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cama", + "wordSecond": "Bett", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mesa", + "wordSecond": "Tisch", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cadeira", + "wordSecond": "Stuhl", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sofá", + "wordSecond": "Sofa", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "poltrona", + "wordSecond": "Sessel", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "armário", + "wordSecond": "Schrank", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "guarda-roupa", + "wordSecond": "Kleiderschrank", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "estante", + "wordSecond": "Regal", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lâmpada", + "wordSecond": "Lampe", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "luz", + "wordSecond": "Licht", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "espelho", + "wordSecond": "Spiegel", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tapete", + "wordSecond": "Teppich", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cortina", + "wordSecond": "Vorhang", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "geladeira", + "wordSecond": "Kühlschrank", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fogão", + "wordSecond": "Herd", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pia", + "wordSecond": "Spüle", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "prato", + "wordSecond": "Teller", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "copo", + "wordSecond": "Glas", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "garfo", + "wordSecond": "Gabel", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "faca", + "wordSecond": "Messer", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "colher", + "wordSecond": "Löffel", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "xícara", + "wordSecond": "Tasse", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "panela", + "wordSecond": "Topf", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "toalha", + "wordSecond": "Handtuch", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sabonete", + "wordSecond": "Seife", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escova de dentes", + "wordSecond": "Zahnbürste", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pasta de dentes", + "wordSecond": "Zahnpasta", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pente", + "wordSecond": "Kamm", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escova de cabelo", + "wordSecond": "Haarbürste", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "telefone", + "wordSecond": "Telefon", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "televisão", + "wordSecond": "Fernseher", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "rádio", + "wordSecond": "Radio", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "computador", + "wordSecond": "Computer", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "livro", + "wordSecond": "Buch", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "revista", + "wordSecond": "Zeitschrift", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "jornal", + "wordSecond": "Zeitung", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chave", + "wordSecond": "Schlüssel", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "relógio", + "wordSecond": "Uhr", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quadro", + "wordSecond": "Bild", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "planta", + "wordSecond": "Pflanze", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "flor", + "wordSecond": "Blume", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "animal de estimação", + "wordSecond": "Haustier", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cachorro", + "wordSecond": "Hund", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "gato", + "wordSecond": "Katze", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "peixe", + "wordSecond": "Fisch", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pássaro", + "wordSecond": "Vogel", + "createdAt": "2026-02-19T14:18:52.262Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_pt_fr_A1.json b/output/2026_02_19_family_home_pt_fr_A1.json new file mode 100644 index 0000000..0d315a5 --- /dev/null +++ b/output/2026_02_19_family_home_pt_fr_A1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:19:06.921Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mãe", + "wordSecond": "mère", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pai", + "wordSecond": "père", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "irmão", + "wordSecond": "frère", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "irmã", + "wordSecond": "sœur", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "filho", + "wordSecond": "fils", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "filha", + "wordSecond": "fille", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "avó", + "wordSecond": "grand-mère", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "avô", + "wordSecond": "grand-père", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tio", + "wordSecond": "oncle", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tia", + "wordSecond": "tante", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "primo", + "wordSecond": "cousin", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "prima", + "wordSecond": "cousine", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "família", + "wordSecond": "famille", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "casa", + "wordSecond": "maison", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "apartamento", + "wordSecond": "appartement", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cozinha", + "wordSecond": "cuisine", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sala", + "wordSecond": "salon", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quarto", + "wordSecond": "chambre", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "banheiro", + "wordSecond": "salle de bains", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "jardim", + "wordSecond": "jardin", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "porta", + "wordSecond": "porte", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "janela", + "wordSecond": "fenêtre", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "parede", + "wordSecond": "mur", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "teto", + "wordSecond": "plafond", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chão", + "wordSecond": "sol", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cama", + "wordSecond": "lit", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mesa", + "wordSecond": "table", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cadeira", + "wordSecond": "chaise", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sofá", + "wordSecond": "canapé", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "poltrona", + "wordSecond": "fauteuil", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "armário", + "wordSecond": "armoire", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "guarda-roupa", + "wordSecond": "penderie", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cômoda", + "wordSecond": "commode", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estante", + "wordSecond": "étagère", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "televisão", + "wordSecond": "télévision", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "rádio", + "wordSecond": "radio", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "geladeira", + "wordSecond": "réfrigérateur", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fogão", + "wordSecond": "cuisinière", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pia", + "wordSecond": "évier", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "armário de cozinha", + "wordSecond": "placard", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "micro-ondas", + "wordSecond": "micro-ondes", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "torradeira", + "wordSecond": "grille-pain", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cafeteira", + "wordSecond": "cafetière", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "panela", + "wordSecond": "casserole", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "frigideira", + "wordSecond": "poêle", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "prato", + "wordSecond": "assiette", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "copo", + "wordSecond": "verre", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "garfo", + "wordSecond": "fourchette", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "faca", + "wordSecond": "couteau", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "colher", + "wordSecond": "cuillère", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "xícara", + "wordSecond": "tasse", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "toalha", + "wordSecond": "serviette", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "toalha de banho", + "wordSecond": "serviette de bain", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sabonete", + "wordSecond": "savon", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "shampoo", + "wordSecond": "shampoing", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "escova de dentes", + "wordSecond": "brosse à dents", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pasta de dentes", + "wordSecond": "dentifrice", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "espelho", + "wordSecond": "miroir", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pia do banheiro", + "wordSecond": "lavabo", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vaso sanitário", + "wordSecond": "toilettes", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chuveiro", + "wordSecond": "douche", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "banheira", + "wordSecond": "baignoire", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cortina", + "wordSecond": "rideau", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tapete", + "wordSecond": "tapis", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lâmpada", + "wordSecond": "lampe", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "abajur", + "wordSecond": "abat-jour", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "interruptor", + "wordSecond": "interrupteur", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "telefone", + "wordSecond": "téléphone", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "computador", + "wordSecond": "ordinateur", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "livro", + "wordSecond": "livre", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "revista", + "wordSecond": "magazine", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chave", + "wordSecond": "clé", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "relógio", + "wordSecond": "horloge", + "createdAt": "2026-02-19T14:19:06.921Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_pt_it_A1.json b/output/2026_02_19_family_home_pt_it_A1.json new file mode 100644 index 0000000..70a4a84 --- /dev/null +++ b/output/2026_02_19_family_home_pt_it_A1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:19:21.238Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mãe", + "wordSecond": "madre", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pai", + "wordSecond": "padre", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "irmão", + "wordSecond": "fratello", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "irmã", + "wordSecond": "sorella", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "filho", + "wordSecond": "figlio", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "filha", + "wordSecond": "figlia", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "avó", + "wordSecond": "nonna", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "avô", + "wordSecond": "nonno", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tio", + "wordSecond": "zio", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tia", + "wordSecond": "zia", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "primo", + "wordSecond": "cugino", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "prima", + "wordSecond": "cugina", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "família", + "wordSecond": "famiglia", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "casa", + "wordSecond": "casa", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "porta", + "wordSecond": "porta", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "janela", + "wordSecond": "finestra", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cozinha", + "wordSecond": "cucina", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sala", + "wordSecond": "sala", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quarto", + "wordSecond": "camera", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "banheiro", + "wordSecond": "bagno", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "garagem", + "wordSecond": "garage", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "jardim", + "wordSecond": "giardino", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "telhado", + "wordSecond": "tetto", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "parede", + "wordSecond": "parete", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chão", + "wordSecond": "pavimento", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "teto", + "wordSecond": "soffitto", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "escada", + "wordSecond": "scala", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mesa", + "wordSecond": "tavolo", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cadeira", + "wordSecond": "sedia", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sofá", + "wordSecond": "divano", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cama", + "wordSecond": "letto", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "armário", + "wordSecond": "armadio", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "guarda-roupa", + "wordSecond": "guardaroba", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estante", + "wordSecond": "scaffale", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "poltrona", + "wordSecond": "poltrona", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lâmpada", + "wordSecond": "lampada", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tapete", + "wordSecond": "tappeto", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cortina", + "wordSecond": "tenda", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "espelho", + "wordSecond": "specchio", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "relógio", + "wordSecond": "orologio", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quadro", + "wordSecond": "quadro", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "televisão", + "wordSecond": "televisione", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "rádio", + "wordSecond": "radio", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "geladeira", + "wordSecond": "frigorifero", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fogão", + "wordSecond": "fornello", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pia", + "wordSecond": "lavandino", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "armário de cozinha", + "wordSecond": "armadio da cucina", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "micro-ondas", + "wordSecond": "microonde", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "torradeira", + "wordSecond": "tostapane", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "copo", + "wordSecond": "bicchiere", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "prato", + "wordSecond": "piatto", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "garfo", + "wordSecond": "forchetta", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "faca", + "wordSecond": "coltello", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "colher", + "wordSecond": "cucchiaio", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "panela", + "wordSecond": "pentola", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "frigideira", + "wordSecond": "padella", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "toalha", + "wordSecond": "asciugamano", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sabonete", + "wordSecond": "sapone", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "xampu", + "wordSecond": "shampoo", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "escova de dentes", + "wordSecond": "spazzolino da denti", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pasta de dentes", + "wordSecond": "dentifricio", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pente", + "wordSecond": "pettine", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chave", + "wordSecond": "chiave", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "luz", + "wordSecond": "luce", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "água", + "wordSecond": "acqua", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "comida", + "wordSecond": "cibo", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "roupa", + "wordSecond": "vestiti", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sapato", + "wordSecond": "scarpa", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "livro", + "wordSecond": "libro", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "brinquedo", + "wordSecond": "giocattolo", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "flor", + "wordSecond": "fiore", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "árvore", + "wordSecond": "albero", + "createdAt": "2026-02-19T14:19:21.238Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_pt_ja_A1.json b/output/2026_02_19_family_home_pt_ja_A1.json new file mode 100644 index 0000000..ee9189c --- /dev/null +++ b/output/2026_02_19_family_home_pt_ja_A1.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:19:44.161Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "mãe", + "wordSecond": "母 (はは, haha)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pai", + "wordSecond": "父 (ちち, chichi)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "irmão", + "wordSecond": "兄 (あに, ani) / 弟 (おとうと, otōto)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "irmã", + "wordSecond": "姉 (あね, ane) / 妹 (いもうと, imōto)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "avó", + "wordSecond": "祖母 (そぼ, sobo)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "avô", + "wordSecond": "祖父 (そふ, sofu)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "primo", + "wordSecond": "いとこ (itoko)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "prima", + "wordSecond": "いとこ (itoko)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tio", + "wordSecond": "おじ (oji)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tia", + "wordSecond": "おば (oba)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "filho", + "wordSecond": "息子 (むすこ, musuko)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "filha", + "wordSecond": "娘 (むすめ, musume)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "casa", + "wordSecond": "家 (いえ, ie)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cozinha", + "wordSecond": "台所 (だいどころ, daidokoro)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "quarto", + "wordSecond": "部屋 (へや, heya)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "banheiro", + "wordSecond": "トイレ (toire)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sala de estar", + "wordSecond": "リビング (ribingu)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "mesa", + "wordSecond": "テーブル (tēburu)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cadeira", + "wordSecond": "椅子 (いす, isu)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cama", + "wordSecond": "ベッド (beddo)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sofá", + "wordSecond": "ソファ (sofa)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "lâmpada", + "wordSecond": "ランプ (ranpu)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "porta", + "wordSecond": "ドア (doa)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "janela", + "wordSecond": "窓 (まど, mado)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "parede", + "wordSecond": "壁 (かべ, kabe)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "chão", + "wordSecond": "床 (ゆか, yuka)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "teto", + "wordSecond": "天井 (てんじょう, tenjō)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "geladeira", + "wordSecond": "冷蔵庫 (れいぞうこ, reizōko)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "fogão", + "wordSecond": "コンロ (konro)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pia", + "wordSecond": "流し (ながし, nagashi)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "armário", + "wordSecond": "戸棚 (とだな, todana)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cama de solteiro", + "wordSecond": "シングルベッド (shinguru beddo)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cama de casal", + "wordSecond": "ダブルベッド (daburu beddo)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "guarda-roupa", + "wordSecond": "クローゼット (kurōzetto)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "espelho", + "wordSecond": "鏡 (かがみ, kagami)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tapete", + "wordSecond": "じゅうたん (jūtan)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cortina", + "wordSecond": "カーテン (kāten)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "telefone", + "wordSecond": "電話 (でんわ, denwa)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "televisão", + "wordSecond": "テレビ (terebi)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "computador", + "wordSecond": "コンピューター (konpyūtā)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "livro", + "wordSecond": "本 (ほん, hon)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "revista", + "wordSecond": "雑誌 (ざっし, zasshi)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "jornal", + "wordSecond": "新聞 (しんぶん, shinbun)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "caneta", + "wordSecond": "ペン (pen)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "lápis", + "wordSecond": "鉛筆 (えんぴつ, enpitsu)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "caderno", + "wordSecond": "ノート (nōto)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "relógio", + "wordSecond": "時計 (とけい, tokei)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "chave", + "wordSecond": "鍵 (かぎ, kagi)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "bolsa", + "wordSecond": "かばん (kaban)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sapato", + "wordSecond": "靴 (くつ, kutsu)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "roupa", + "wordSecond": "服 (ふく, fuku)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "camisa", + "wordSecond": "シャツ (shatsu)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "calça", + "wordSecond": "ズボン (zubon)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "vestido", + "wordSecond": "ドレス (doresu)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "meia", + "wordSecond": "靴下 (くつした, kutsushita)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "escova de dentes", + "wordSecond": "歯ブラシ (はぶらし, haburashi)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pasta de dentes", + "wordSecond": "歯磨き粉 (はみがきこ, hamigakiko)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sabonete", + "wordSecond": "石鹸 (せっけん, sekken)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "shampoo", + "wordSecond": "シャンプー (shanpū)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "toalha", + "wordSecond": "タオル (taoru)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pente", + "wordSecond": "櫛 (くし, kushi)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "escova de cabelo", + "wordSecond": "ヘアブラシ (heaburashi)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "garfo", + "wordSecond": "フォーク (fōku)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "faca", + "wordSecond": "ナイフ (naifu)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "colher", + "wordSecond": "スプーン (supūn)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "prato", + "wordSecond": "皿 (さら, sara)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "copo", + "wordSecond": "コップ (koppu)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "xícara", + "wordSecond": "カップ (kappu)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "panela", + "wordSecond": "鍋 (なべ, nabe)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "frigideira", + "wordSecond": "フライパン (furaipan)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "lixo", + "wordSecond": "ゴミ (gomi)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "vassoura", + "wordSecond": "ほうき (hōki)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pano de chão", + "wordSecond": "モップ (moppu)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "detergente", + "wordSecond": "洗剤 (せんざい, senzai)", + "createdAt": "2026-02-19T14:19:44.161Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_pt_ko_A1.json b/output/2026_02_19_family_home_pt_ko_A1.json new file mode 100644 index 0000000..aa95d3b --- /dev/null +++ b/output/2026_02_19_family_home_pt_ko_A1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:20:24.022Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "mãe", + "wordSecond": "어머니 (eomeoni)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pai", + "wordSecond": "아버지 (abeoji)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "irmão", + "wordSecond": "형제 (hyeongje)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "irmã", + "wordSecond": "자매 (jamae)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "avó", + "wordSecond": "할머니 (halmeoni)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "avô", + "wordSecond": "할아버지 (harabeoji)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "primo", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "prima", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tio", + "wordSecond": "삼촌 (samchon)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tia", + "wordSecond": "이모 (imo)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "filho", + "wordSecond": "아들 (adeul)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "filha", + "wordSecond": "딸 (ttal)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "casa", + "wordSecond": "집 (jip)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cozinha", + "wordSecond": "부엌 (bueok)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "quarto", + "wordSecond": "방 (bang)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "banheiro", + "wordSecond": "화장실 (hwajangsil)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sala de estar", + "wordSecond": "거실 (geosil)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "mesa", + "wordSecond": "탁자 (takja)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cadeira", + "wordSecond": "의자 (uija)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cama", + "wordSecond": "침대 (chimdae)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sofá", + "wordSecond": "소파 (sopa)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lâmpada", + "wordSecond": "램프 (raempeu)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "janela", + "wordSecond": "창문 (changmun)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "porta", + "wordSecond": "문 (mun)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "parede", + "wordSecond": "벽 (byeok)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "chão", + "wordSecond": "바닥 (badak)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "teto", + "wordSecond": "천장 (cheonjang)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "geladeira", + "wordSecond": "냉장고 (naengjanggo)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "fogão", + "wordSecond": "가스레인지 (gaseureinji)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pia", + "wordSecond": "싱크대 (singkeudae)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "armário", + "wordSecond": "장 (jang)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "guarda-roupa", + "wordSecond": "옷장 (otjang)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cômoda", + "wordSecond": "서랍장 (seorapjang)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "espelho", + "wordSecond": "거울 (geoul)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tapete", + "wordSecond": "카펫 (kapet)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cortina", + "wordSecond": "커튼 (keoteun)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "almofada", + "wordSecond": "쿠션 (kusyeon)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cobertor", + "wordSecond": "이불 (ibul)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "travesseiro", + "wordSecond": "베개 (begae)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "toalha", + "wordSecond": "수건 (sugeon)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "escova de dentes", + "wordSecond": "칫솔 (chitsol)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pasta de dentes", + "wordSecond": "치약 (chiyak)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sabonete", + "wordSecond": "비누 (binu)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "xampu", + "wordSecond": "샴푸 (syampu)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "televisão", + "wordSecond": "텔레비전 (tellebijeon)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "rádio", + "wordSecond": "라디오 (radio)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "computador", + "wordSecond": "컴퓨터 (keompyuteo)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "telefone", + "wordSecond": "전화기 (jeonhwagi)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "livro", + "wordSecond": "책 (chaek)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "caneta", + "wordSecond": "펜 (pen)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lápis", + "wordSecond": "연필 (yeonpil)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "caderno", + "wordSecond": "공책 (gongchaek)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "garfo", + "wordSecond": "포크 (pokeu)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "faca", + "wordSecond": "나이프 (naipeu)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "colher", + "wordSecond": "숟가락 (sutgarak)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "prato", + "wordSecond": "접시 (jeopsi)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "copo", + "wordSecond": "컵 (keop)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "xícara", + "wordSecond": "컵 (keop)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "panela", + "wordSecond": "냄비 (naembi)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "frigideira", + "wordSecond": "프라이팬 (peuraipaen)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lixo", + "wordSecond": "쓰레기 (sseuregi)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "vassoura", + "wordSecond": "빗자루 (bitjaru)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "rodo", + "wordSecond": "대걸레 (daegeolle)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pano de chão", + "wordSecond": "걸레 (geolle)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "detergente", + "wordSecond": "세제 (seje)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sabão em pó", + "wordSecond": "세탁 세제 (setak seje)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "amaciante", + "wordSecond": "섬유 유연제 (seomyu yuyeonje)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "chave", + "wordSecond": "열쇠 (yeolsoe)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "carteira", + "wordSecond": "지갑 (jigap)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "óculos", + "wordSecond": "안경 (angyeong)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "relógio", + "wordSecond": "시계 (sigye)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "bolsa", + "wordSecond": "가방 (gabang)", + "createdAt": "2026-02-19T14:20:24.022Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_pt_pl_A1.json b/output/2026_02_19_family_home_pt_pl_A1.json new file mode 100644 index 0000000..83b65b4 --- /dev/null +++ b/output/2026_02_19_family_home_pt_pl_A1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:20:39.224Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "mãe", + "wordSecond": "matka", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pai", + "wordSecond": "ojciec", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "irmão", + "wordSecond": "brat", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "irmã", + "wordSecond": "siostra", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "filho", + "wordSecond": "syn", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "filha", + "wordSecond": "córka", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "avó", + "wordSecond": "babcia", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "avô", + "wordSecond": "dziadek", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tio", + "wordSecond": "wujek", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tia", + "wordSecond": "ciotka", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "primo", + "wordSecond": "kuzyn", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "prima", + "wordSecond": "kuzynka", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "família", + "wordSecond": "rodzina", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "casa", + "wordSecond": "dom", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "apartamento", + "wordSecond": "mieszkanie", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cozinha", + "wordSecond": "kuchnia", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "quarto", + "wordSecond": "sypialnia", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "banheiro", + "wordSecond": "łazienka", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sala de estar", + "wordSecond": "salon", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sala", + "wordSecond": "pokój", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "jardim", + "wordSecond": "ogród", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "porta", + "wordSecond": "drzwi", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "janela", + "wordSecond": "okno", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "parede", + "wordSecond": "ściana", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "teto", + "wordSecond": "sufit", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "chão", + "wordSecond": "podłoga", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "mesa", + "wordSecond": "stół", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cadeira", + "wordSecond": "krzesło", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sofá", + "wordSecond": "kanapa", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cama", + "wordSecond": "łóżko", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "armário", + "wordSecond": "szafa", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "guarda-roupa", + "wordSecond": "szafa na ubrania", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cômoda", + "wordSecond": "komoda", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "estante", + "wordSecond": "półka", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "geladeira", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "fogão", + "wordSecond": "kuchenka", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pia", + "wordSecond": "zlew", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "torneira", + "wordSecond": "kran", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "chuveiro", + "wordSecond": "prysznic", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "banheira", + "wordSecond": "wanna", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "vaso sanitário", + "wordSecond": "toaleta", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "espelho", + "wordSecond": "lustro", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tapete", + "wordSecond": "dywan", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cortina", + "wordSecond": "zasłona", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "lâmpada", + "wordSecond": "lampa", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "televisão", + "wordSecond": "telewizor", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "rádio", + "wordSecond": "radio", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "computador", + "wordSecond": "komputer", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "telefone", + "wordSecond": "telefon", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "relógio", + "wordSecond": "zegar", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "quadro", + "wordSecond": "obraz", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "foto", + "wordSecond": "zdjęcie", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "livro", + "wordSecond": "książka", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "jornal", + "wordSecond": "gazeta", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "chave", + "wordSecond": "klucz", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "copo", + "wordSecond": "szklanka", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "prato", + "wordSecond": "talerz", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "garfo", + "wordSecond": "widelec", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "faca", + "wordSecond": "nóż", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "colher", + "wordSecond": "łyżka", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "panela", + "wordSecond": "garnek", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "frigideira", + "wordSecond": "patelnia", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "xícara", + "wordSecond": "filiżanka", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "toalha", + "wordSecond": "ręcznik", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sabonete", + "wordSecond": "mydło", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "escova de dentes", + "wordSecond": "szczoteczka do zębów", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pasta de dentes", + "wordSecond": "pasta do zębów", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pente", + "wordSecond": "grzebień", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "escova de cabelo", + "wordSecond": "szczotka do włosów", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "lixo", + "wordSecond": "śmieci", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "vassoura", + "wordSecond": "miotła", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "aspirador de pó", + "wordSecond": "odkurzacz", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pano", + "wordSecond": "ścierka", + "createdAt": "2026-02-19T14:20:39.224Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_pt_zh_A1.json b/output/2026_02_19_family_home_pt_zh_A1.json new file mode 100644 index 0000000..7bc6a76 --- /dev/null +++ b/output/2026_02_19_family_home_pt_zh_A1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:20:03.171Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "mãe", + "wordSecond": "妈妈 (māma)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pai", + "wordSecond": "爸爸 (bàba)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "irmão", + "wordSecond": "哥哥 (gēge)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "irmã", + "wordSecond": "姐姐 (jiějie)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "filho", + "wordSecond": "儿子 (érzi)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "filha", + "wordSecond": "女儿 (nǚ'ér)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "avó", + "wordSecond": "奶奶 (nǎinai)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "avô", + "wordSecond": "爷爷 (yéye)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tio", + "wordSecond": "叔叔 (shūshu)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tia", + "wordSecond": "阿姨 (āyí)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "primo", + "wordSecond": "表哥 (biǎogē)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "prima", + "wordSecond": "表姐 (biǎojiě)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "casa", + "wordSecond": "家 (jiā)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cozinha", + "wordSecond": "厨房 (chúfáng)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "quarto", + "wordSecond": "卧室 (wòshì)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "banheiro", + "wordSecond": "卫生间 (wèishēngjiān)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sala", + "wordSecond": "客厅 (kètīng)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "jardim", + "wordSecond": "花园 (huāyuán)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "porta", + "wordSecond": "门 (mén)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "janela", + "wordSecond": "窗户 (chuānghu)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "parede", + "wordSecond": "墙 (qiáng)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "teto", + "wordSecond": "天花板 (tiānhuābǎn)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "chão", + "wordSecond": "地板 (dìbǎn)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "mesa", + "wordSecond": "桌子 (zhuōzi)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cadeira", + "wordSecond": "椅子 (yǐzi)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cama", + "wordSecond": "床 (chuáng)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sofá", + "wordSecond": "沙发 (shāfā)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "lâmpada", + "wordSecond": "灯 (dēng)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "armário", + "wordSecond": "柜子 (guìzi)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "geladeira", + "wordSecond": "冰箱 (bīngxiāng)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fogão", + "wordSecond": "炉子 (lúzi)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pia", + "wordSecond": "水槽 (shuǐcáo)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "espelho", + "wordSecond": "镜子 (jìngzi)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tapete", + "wordSecond": "地毯 (dìtǎn)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cortina", + "wordSecond": "窗帘 (chuānglián)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "escada", + "wordSecond": "楼梯 (lóutī)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "telefone", + "wordSecond": "电话 (diànhuà)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "televisão", + "wordSecond": "电视 (diànshì)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "computador", + "wordSecond": "电脑 (diànnǎo)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "livro", + "wordSecond": "书 (shū)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "caneta", + "wordSecond": "笔 (bǐ)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "papel", + "wordSecond": "纸 (zhǐ)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "relógio", + "wordSecond": "钟 (zhōng)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "foto", + "wordSecond": "照片 (zhàopiàn)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "planta", + "wordSecond": "植物 (zhíwù)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cão", + "wordSecond": "狗 (gǒu)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "gato", + "wordSecond": "猫 (māo)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "carro", + "wordSecond": "车 (chē)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "bicicleta", + "wordSecond": "自行车 (zìxíngchē)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "chave", + "wordSecond": "钥匙 (yàoshi)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "bolsa", + "wordSecond": "包 (bāo)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sapato", + "wordSecond": "鞋 (xié)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "roupa", + "wordSecond": "衣服 (yīfu)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "comida", + "wordSecond": "食物 (shíwù)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "água", + "wordSecond": "水 (shuǐ)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "leite", + "wordSecond": "牛奶 (niúnǎi)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pão", + "wordSecond": "面包 (miànbāo)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fruta", + "wordSecond": "水果 (shuǐguǒ)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ovo", + "wordSecond": "鸡蛋 (jīdàn)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "arroz", + "wordSecond": "米饭 (mǐfàn)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "feijão", + "wordSecond": "豆子 (dòuzi)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sal", + "wordSecond": "盐 (yán)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "açúcar", + "wordSecond": "糖 (táng)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "copo", + "wordSecond": "杯子 (bēizi)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "prato", + "wordSecond": "盘子 (pánzi)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "garfo", + "wordSecond": "叉子 (chāzi)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "faca", + "wordSecond": "刀子 (dāozi)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "colher", + "wordSecond": "勺子 (sháozi)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "panela", + "wordSecond": "锅 (guō)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "toalha", + "wordSecond": "毛巾 (máojīn)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sabonete", + "wordSecond": "肥皂 (féizào)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "escova de dentes", + "wordSecond": "牙刷 (yáshuā)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pasta de dentes", + "wordSecond": "牙膏 (yágāo)", + "createdAt": "2026-02-19T14:20:03.171Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_zh_ko_A1.json b/output/2026_02_19_family_home_zh_ko_A1.json new file mode 100644 index 0000000..5d7bb09 --- /dev/null +++ b/output/2026_02_19_family_home_zh_ko_A1.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:27:00.674Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "妈妈 (mama)", + "wordSecond": "어머니 (eomeoni)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "爸爸 (baba)", + "wordSecond": "아버지 (abeoji)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "母亲 (muqin)", + "wordSecond": "엄마 (eomma)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "父亲 (fuqin)", + "wordSecond": "아빠 (appa)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "儿子 (erzi)", + "wordSecond": "아들 (adeul)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "女儿 (nver)", + "wordSecond": "딸 (ttal)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "哥哥 (gege)", + "wordSecond": "형 (hyeong)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "姐姐 (jiejie)", + "wordSecond": "누나 (nuna)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "弟弟 (didi)", + "wordSecond": "남동생 (namdongsaeng)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "妹妹 (meimei)", + "wordSecond": "여동생 (yeodongsaeng)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "兄弟 (xiongdi)", + "wordSecond": "형제 (hyeongje)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "姐妹 (jiemei)", + "wordSecond": "자매 (jamae)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "家庭 (jiating)", + "wordSecond": "가족 (gajok)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "家人 (jiaren)", + "wordSecond": "가족 (gajok)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "爷爷 (yeye)", + "wordSecond": "할아버지 (harabeoji)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "奶奶 (nainai)", + "wordSecond": "할머니 (halmeoni)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "外公 (waigong)", + "wordSecond": "외할아버지 (oeharabeoji)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "外婆 (waipo)", + "wordSecond": "외할머니 (oehalmeoni)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "孙子 (sunzi)", + "wordSecond": "손자 (sonja)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "孙女 (sunnv)", + "wordSecond": "손녀 (sonnyeo)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "叔叔 (shushu)", + "wordSecond": "삼촌 (samchon)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "阿姨 (ayi)", + "wordSecond": "이모 (imo)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "舅舅 (jiujiu)", + "wordSecond": "외삼촌 (oesamchon)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "姑姑 (gugu)", + "wordSecond": "고모 (gomo)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "堂兄 (tangxiong)", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "堂弟 (tangdi)", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "堂姐 (tangjie)", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "堂妹 (tangmei)", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "表兄 (biaoxiong)", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "表弟 (biaodi)", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "表姐 (biaojie)", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "表妹 (biaomei)", + "wordSecond": "사촌 (sachon)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "房子 (fangzi)", + "wordSecond": "집 (jip)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "家 (jia)", + "wordSecond": "집 (jip)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "房间 (fangjian)", + "wordSecond": "방 (bang)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "卧室 (woshi)", + "wordSecond": "침실 (chimsil)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "厨房 (chufang)", + "wordSecond": "부엌 (bueok)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "客厅 (keting)", + "wordSecond": "거실 (geosil)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "餐厅 (canting)", + "wordSecond": "식당 (sikdang)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "浴室 (yushi)", + "wordSecond": "욕실 (yoksil)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "厕所 (cesuo)", + "wordSecond": "화장실 (hwajangsil)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "阳台 (yangtai)", + "wordSecond": "발코니 (balkoni)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "花园 (huayuan)", + "wordSecond": "정원 (jeongwon)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "车库 (cheku)", + "wordSecond": "차고 (chago)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "门 (men)", + "wordSecond": "문 (mun)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "窗户 (chuanghu)", + "wordSecond": "창문 (changmun)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "墙 (qiang)", + "wordSecond": "벽 (byeok)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "地板 (diban)", + "wordSecond": "바닥 (badak)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "天花板 (tianhuaban)", + "wordSecond": "천장 (cheonjang)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "楼梯 (louti)", + "wordSecond": "계단 (gyedan)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "桌子 (zhuozi)", + "wordSecond": "책상 (chaeksang)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "椅子 (yizi)", + "wordSecond": "의자 (uija)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "床 (chuang)", + "wordSecond": "침대 (chimdae)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "沙发 (shafa)", + "wordSecond": "소파 (sopa)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "书柜 (shugui)", + "wordSecond": "책장 (chaekjang)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "衣柜 (yigui)", + "wordSecond": "옷장 (otjang)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "电视 (dianshi)", + "wordSecond": "텔레비전 (tellebijeon)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "电脑 (diannao)", + "wordSecond": "컴퓨터 (keompyuteo)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "电话 (dianhua)", + "wordSecond": "전화 (jeonhwa)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "灯 (deng)", + "wordSecond": "램프 (raempeu)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "台灯 (taideng)", + "wordSecond": "스탠드 (seutaendeu)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "钟 (zhong)", + "wordSecond": "시계 (sigye)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "镜子 (jingzi)", + "wordSecond": "거울 (geoul)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "照片 (zhaopian)", + "wordSecond": "사진 (sajin)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "画 (hua)", + "wordSecond": "그림 (geurim)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "窗帘 (chuanglian)", + "wordSecond": "커튼 (keoteun)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "地毯 (ditan)", + "wordSecond": "카펫 (kapet)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "枕头 (zhentou)", + "wordSecond": "베개 (begae)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "被子 (beizi)", + "wordSecond": "이불 (ibul)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "床单 (chuangdan)", + "wordSecond": "침대 시트 (chimdae siteu)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "毛巾 (maojin)", + "wordSecond": "수건 (sugeon)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "牙刷 (yashua)", + "wordSecond": "칫솔 (chitsol)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "牙膏 (yagao)", + "wordSecond": "치약 (chiyak)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "肥皂 (feizao)", + "wordSecond": "비누 (binu)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "水 (shui)", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "食物 (shiwu)", + "wordSecond": "음식 (eumsik)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "饮料 (yinliao)", + "wordSecond": "음료 (eumnyo)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "杯子 (beizi)", + "wordSecond": "컵 (keop)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "盘子 (panzi)", + "wordSecond": "접시 (jeopsi)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "碗 (wan)", + "wordSecond": "그릇 (geureut)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "筷子 (kuaizi)", + "wordSecond": "젓가락 (jeotgarak)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "勺子 (shaozi)", + "wordSecond": "숟가락 (sutgarak)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "刀 (dao)", + "wordSecond": "칼 (kal)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "叉子 (chazi)", + "wordSecond": "포크 (pokeu)", + "createdAt": "2026-02-19T14:27:00.674Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_family_home_zh_pl_A1.json b/output/2026_02_19_family_home_zh_pl_A1.json new file mode 100644 index 0000000..e1e2577 --- /dev/null +++ b/output/2026_02_19_family_home_zh_pl_A1.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:27:18.140Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Family & Home" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Family & Home" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "妈妈 (mama)", + "wordSecond": "mama", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "爸爸 (baba)", + "wordSecond": "tata", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "哥哥 (gege)", + "wordSecond": "brat", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "姐姐 (jiejie)", + "wordSecond": "siostra", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "弟弟 (didi)", + "wordSecond": "brat", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "妹妹 (meimei)", + "wordSecond": "siostra", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "儿子 (erzi)", + "wordSecond": "syn", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "女儿 (nü'er)", + "wordSecond": "córka", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "祖父 (zufu)", + "wordSecond": "dziadek", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "祖母 (zumu)", + "wordSecond": "babcia", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "外祖父 (waizufu)", + "wordSecond": "dziadek", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "外祖母 (waizumu)", + "wordSecond": "babcia", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "叔叔 (shushu)", + "wordSecond": "wujek", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "阿姨 (ayi)", + "wordSecond": "ciocia", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "堂兄 (tangxiong)", + "wordSecond": "kuzyn", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "堂姐 (tangjie)", + "wordSecond": "kuzynka", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "表弟 (biaodi)", + "wordSecond": "kuzyn", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "表妹 (biaomei)", + "wordSecond": "kuzynka", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "家 (jia)", + "wordSecond": "dom", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "房子 (fangzi)", + "wordSecond": "dom", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "公寓 (gongyu)", + "wordSecond": "mieszkanie", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "房间 (fangjian)", + "wordSecond": "pokój", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "厨房 (chufang)", + "wordSecond": "kuchnia", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "卧室 (woshi)", + "wordSecond": "sypialnia", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "浴室 (yushi)", + "wordSecond": "łazienka", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "客厅 (keting)", + "wordSecond": "salon", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "餐厅 (canting)", + "wordSecond": "jadalnia", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "阳台 (yangtai)", + "wordSecond": "balkon", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "花园 (huayuan)", + "wordSecond": "ogród", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "门 (men)", + "wordSecond": "drzwi", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "窗户 (chuanghu)", + "wordSecond": "okno", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "墙 (qiang)", + "wordSecond": "ściana", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "天花板 (tianhuaban)", + "wordSecond": "sufit", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "地板 (diban)", + "wordSecond": "podłoga", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "楼梯 (louti)", + "wordSecond": "schody", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "桌子 (zhuozi)", + "wordSecond": "stół", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "椅子 (yizi)", + "wordSecond": "krzesło", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "床 (chuang)", + "wordSecond": "łóżko", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "沙发 (shafa)", + "wordSecond": "sofa", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "柜子 (guizi)", + "wordSecond": "szafa", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "书架 (shujia)", + "wordSecond": "półka na książki", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "电视 (dianshi)", + "wordSecond": "telewizor", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "电脑 (diannao)", + "wordSecond": "komputer", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "灯 (deng)", + "wordSecond": "lampa", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "台灯 (taideng)", + "wordSecond": "lampa stołowa", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "冰箱 (bingxiang)", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "炉子 (luzi)", + "wordSecond": "kuchenka", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "烤箱 (kaoxiang)", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "水槽 (shuicao)", + "wordSecond": "zlew", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "马桶 (matong)", + "wordSecond": "toaleta", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "浴缸 (yugang)", + "wordSecond": "wanna", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "淋浴 (linyu)", + "wordSecond": "prysznic", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "镜子 (jingzi)", + "wordSecond": "lustro", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "毛巾 (maojin)", + "wordSecond": "ręcznik", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "牙刷 (yashua)", + "wordSecond": "szczoteczka do zębów", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "牙膏 (yagao)", + "wordSecond": "pasta do zębów", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "肥皂 (feizao)", + "wordSecond": "mydło", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "枕头 (zhentou)", + "wordSecond": "poduszka", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "被子 (beizi)", + "wordSecond": "kołdra", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "床单 (chuangdan)", + "wordSecond": "prześcieradło", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "地毯 (ditan)", + "wordSecond": "dywan", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "窗帘 (chuanglian)", + "wordSecond": "zasłony", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "钥匙 (yaoshi)", + "wordSecond": "klucz", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "时钟 (shizhong)", + "wordSecond": "zegar", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "照片 (zhaopian)", + "wordSecond": "zdjęcie", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "花 (hua)", + "wordSecond": "kwiat", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "植物 (zhiwu)", + "wordSecond": "roślina", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "宠物 (chongwu)", + "wordSecond": "zwierzę domowe", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "狗 (gou)", + "wordSecond": "pies", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "猫 (mao)", + "wordSecond": "kot", + "createdAt": "2026-02-19T14:27:18.140Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_de_fr_A2.json b/output/2026_02_19_food_cooking_de_fr_A2.json new file mode 100644 index 0000000..cba7acf --- /dev/null +++ b/output/2026_02_19_food_cooking_de_fr_A2.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:52:35.011Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Brot", + "wordSecond": "le pain", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Butter", + "wordSecond": "le beurre", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Käse", + "wordSecond": "le fromage", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Milch", + "wordSecond": "le lait", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Joghurt", + "wordSecond": "le yaourt", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Ei", + "wordSecond": "l'œuf", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Apfel", + "wordSecond": "la pomme", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Banane", + "wordSecond": "la banane", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Orange", + "wordSecond": "l'orange", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Erdbeere", + "wordSecond": "la fraise", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Tomate", + "wordSecond": "la tomate", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Karotte", + "wordSecond": "la carotte", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Kartoffel", + "wordSecond": "la pomme de terre", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Zwiebel", + "wordSecond": "l'oignon", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Salat", + "wordSecond": "la salade", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Hähnchen", + "wordSecond": "le poulet", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Rindfleisch", + "wordSecond": "le bœuf", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Fisch", + "wordSecond": "le poisson", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Schweinefleisch", + "wordSecond": "le porc", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Wasser", + "wordSecond": "l'eau", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Kaffee", + "wordSecond": "le café", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Tee", + "wordSecond": "le thé", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Saft", + "wordSecond": "le jus", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Zucker", + "wordSecond": "le sucre", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Salz", + "wordSecond": "le sel", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Pfeffer", + "wordSecond": "le poivre", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Öl", + "wordSecond": "l'huile", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Mehl", + "wordSecond": "la farine", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Reis", + "wordSecond": "le riz", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Nudeln", + "wordSecond": "les pâtes", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Frühstück", + "wordSecond": "le petit déjeuner", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Mittagessen", + "wordSecond": "le déjeuner", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Abendessen", + "wordSecond": "le dîner", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Snack", + "wordSecond": "le goûter", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Suppe", + "wordSecond": "la soupe", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Salat", + "wordSecond": "la salade", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Sandwich", + "wordSecond": "le sandwich", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Pizza", + "wordSecond": "la pizza", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Pommes", + "wordSecond": "les frites", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Kuchen", + "wordSecond": "le gâteau", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Eis", + "wordSecond": "la glace", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Schokolade", + "wordSecond": "le chocolat", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Honig", + "wordSecond": "le miel", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Marmelade", + "wordSecond": "la confiture", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Wurst", + "wordSecond": "la saucisse", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Schinken", + "wordSecond": "le jambon", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Gurke", + "wordSecond": "le concombre", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Pilz", + "wordSecond": "le champignon", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Spinat", + "wordSecond": "les épinards", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Zitrone", + "wordSecond": "le citron", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Traube", + "wordSecond": "le raisin", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Birne", + "wordSecond": "la poire", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Kirsche", + "wordSecond": "la cerise", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Melone", + "wordSecond": "le melon", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Ananas", + "wordSecond": "l'ananas", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Pflaume", + "wordSecond": "la prune", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Bohne", + "wordSecond": "le haricot", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Erbse", + "wordSecond": "le pois", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Mais", + "wordSecond": "le maïs", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Paprika", + "wordSecond": "le poivron", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Knoblauch", + "wordSecond": "l'ail", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Limonade", + "wordSecond": "la limonade", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Wein", + "wordSecond": "le vin", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Bier", + "wordSecond": "la bière", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Tasse", + "wordSecond": "la tasse", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Glas", + "wordSecond": "le verre", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Teller", + "wordSecond": "l'assiette", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Messer", + "wordSecond": "le couteau", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Gabel", + "wordSecond": "la fourchette", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Löffel", + "wordSecond": "la cuillère", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Topf", + "wordSecond": "la casserole", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Pfanne", + "wordSecond": "la poêle", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Backblech", + "wordSecond": "la plaque de cuisson", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Ofen", + "wordSecond": "le four", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Kühlschrank", + "wordSecond": "le réfrigérateur", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Spüle", + "wordSecond": "l'évier", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "kochen", + "wordSecond": "cuisiner", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "backen", + "wordSecond": "cuire au four", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "braten", + "wordSecond": "faire frire", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schneiden", + "wordSecond": "couper", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "mischen", + "wordSecond": "mélanger", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "öffnen", + "wordSecond": "ouvrir", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schließen", + "wordSecond": "fermer", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "essen", + "wordSecond": "manger", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "trinken", + "wordSecond": "boire", + "createdAt": "2026-02-19T13:52:35.011Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_de_it_A2.json b/output/2026_02_19_food_cooking_de_it_A2.json new file mode 100644 index 0000000..6dded35 --- /dev/null +++ b/output/2026_02_19_food_cooking_de_it_A2.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:52:50.903Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Apfel", + "wordSecond": "mela", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Banane", + "wordSecond": "banana", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Brot", + "wordSecond": "pane", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Butter", + "wordSecond": "burro", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Käse", + "wordSecond": "formaggio", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Milch", + "wordSecond": "latte", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ei", + "wordSecond": "uovo", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wasser", + "wordSecond": "acqua", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tee", + "wordSecond": "tè", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kaffee", + "wordSecond": "caffè", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zucker", + "wordSecond": "zucchero", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Salz", + "wordSecond": "sale", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pfeffer", + "wordSecond": "pepe", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Öl", + "wordSecond": "olio", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Reis", + "wordSecond": "riso", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nudeln", + "wordSecond": "pasta", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kartoffel", + "wordSecond": "patata", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tomate", + "wordSecond": "pomodoro", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gurke", + "wordSecond": "cetriolo", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Karotte", + "wordSecond": "carota", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zwiebel", + "wordSecond": "cipolla", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Knoblauch", + "wordSecond": "aglio", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Salat", + "wordSecond": "insalata", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zitrone", + "wordSecond": "limone", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Erdbeere", + "wordSecond": "fragola", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Orange", + "wordSecond": "arancia", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Traube", + "wordSecond": "uva", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Birne", + "wordSecond": "pera", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pfirsich", + "wordSecond": "pesca", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Huhn", + "wordSecond": "pollo", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fleisch", + "wordSecond": "carne", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fisch", + "wordSecond": "pesce", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schinken", + "wordSecond": "prosciutto", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wurst", + "wordSecond": "salsiccia", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Joghurt", + "wordSecond": "yogurt", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Honig", + "wordSecond": "miele", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Marmelade", + "wordSecond": "marmellata", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Brötchen", + "wordSecond": "panino", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Suppe", + "wordSecond": "zuppa", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Salz", + "wordSecond": "sale", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pfeffer", + "wordSecond": "pepe", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mehl", + "wordSecond": "farina", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Essig", + "wordSecond": "aceto", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Senf", + "wordSecond": "senape", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ketchup", + "wordSecond": "ketchup", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mayonnaise", + "wordSecond": "maionese", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schokolade", + "wordSecond": "cioccolato", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Eis", + "wordSecond": "gelato", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kuchen", + "wordSecond": "torta", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Keks", + "wordSecond": "biscotto", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Butter", + "wordSecond": "burro", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Margarine", + "wordSecond": "margarina", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sahne", + "wordSecond": "panna", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Quark", + "wordSecond": "ricotta", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Spinat", + "wordSecond": "spinaci", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pilz", + "wordSecond": "fungo", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Paprika", + "wordSecond": "peperone", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Aubergine", + "wordSecond": "melanzana", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Brokkoli", + "wordSecond": "broccoli", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Blumenkohl", + "wordSecond": "cavolfiore", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bohnen", + "wordSecond": "fagioli", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Erbsen", + "wordSecond": "piselli", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mais", + "wordSecond": "mais", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ananas", + "wordSecond": "ananas", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kiwi", + "wordSecond": "kiwi", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mango", + "wordSecond": "mango", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Avocado", + "wordSecond": "avocado", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Olive", + "wordSecond": "oliva", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nuss", + "wordSecond": "noce", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mandeln", + "wordSecond": "mandorle", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rosinen", + "wordSecond": "uvetta", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zimt", + "wordSecond": "cannella", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Vanille", + "wordSecond": "vaniglia", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Esslöffel", + "wordSecond": "cucchiaio", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Teelöffel", + "wordSecond": "cucchiaino", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Messer", + "wordSecond": "coltello", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gabel", + "wordSecond": "forchetta", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Löffel", + "wordSecond": "cucchiaio", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Teller", + "wordSecond": "piatto", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Glas", + "wordSecond": "bicchiere", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tasse", + "wordSecond": "tazza", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Topf", + "wordSecond": "pentola", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pfanne", + "wordSecond": "padella", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ofen", + "wordSecond": "forno", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kühlschrank", + "wordSecond": "frigorifero", + "createdAt": "2026-02-19T13:52:50.903Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_de_ja_A2.json b/output/2026_02_19_food_cooking_de_ja_A2.json new file mode 100644 index 0000000..d4114fc --- /dev/null +++ b/output/2026_02_19_food_cooking_de_ja_A2.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:53:20.821Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Apfel", + "wordSecond": "りんご (りんご, ringo)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Banane", + "wordSecond": "バナナ (ばなな, banana)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Brot", + "wordSecond": "パン (ぱん, pan)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Butter", + "wordSecond": "バター (ばたー, batā)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Käse", + "wordSecond": "チーズ (ちーず, chīzu)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Milch", + "wordSecond": "牛乳 (ぎゅうにゅう, gyūnyū)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ei", + "wordSecond": "卵 (たまご, tamago)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Reis", + "wordSecond": "ご飯 (ごはん, gohan)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Nudeln", + "wordSecond": "麺 (めん, men)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fleisch", + "wordSecond": "肉 (にく, niku)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Huhn", + "wordSecond": "鶏肉 (とりにく, toriniku)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fisch", + "wordSecond": "魚 (さかな, sakana)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Gemüse", + "wordSecond": "野菜 (やさい, yasai)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kartoffel", + "wordSecond": "じゃがいも (じゃがいも, jagaimo)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tomate", + "wordSecond": "トマト (とまと, tomato)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Zwiebel", + "wordSecond": "玉ねぎ (たまねぎ, tamanegi)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Karotte", + "wordSecond": "にんじん (にんじん, ninjin)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Salat", + "wordSecond": "サラダ (さらだ, sarada)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Obst", + "wordSecond": "果物 (くだもの, kudamono)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Erdbeere", + "wordSecond": "いちご (いちご, ichigo)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Orange", + "wordSecond": "オレンジ (おれんじ, orenji)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Traube", + "wordSecond": "ぶどう (ぶどう, budō)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wasser", + "wordSecond": "水 (みず, mizu)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tee", + "wordSecond": "お茶 (おちゃ, ocha)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kaffee", + "wordSecond": "コーヒー (こーひー, kōhī)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Saft", + "wordSecond": "ジュース (じゅーす, jūsu)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Zucker", + "wordSecond": "砂糖 (さとう, satō)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Salz", + "wordSecond": "塩 (しお, shio)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Pfeffer", + "wordSecond": "胡椒 (こしょう, koshō)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Öl", + "wordSecond": "油 (あぶら, abura)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Essig", + "wordSecond": "酢 (す, su)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Mehl", + "wordSecond": "小麦粉 (こむぎこ, komugiko)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Suppe", + "wordSecond": "スープ (すーぷ, sūpu)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Sandwich", + "wordSecond": "サンドイッチ (さんどいっち, sandoitchi)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Pizza", + "wordSecond": "ピザ (ぴざ, piza)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hamburger", + "wordSecond": "ハンバーガー (はんばーがー, hanbāgā)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Eis", + "wordSecond": "アイスクリーム (あいすくりーむ, aisukurīmu)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kuchen", + "wordSecond": "ケーキ (けーき, kēki)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schokolade", + "wordSecond": "チョコレート (ちょこれーと, chokorēto)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Joghurt", + "wordSecond": "ヨーグルト (よーぐると, yōguruto)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Müsli", + "wordSecond": "グラノーラ (ぐらのーら, guranōra)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wurst", + "wordSecond": "ソーセージ (そーせーじ, sōsēji)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schinken", + "wordSecond": "ハム (はむ, hamu)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Spaghetti", + "wordSecond": "スパゲッティ (すぱげってぃ, supagetti)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Curry", + "wordSecond": "カレー (かれー, karē)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Sushi", + "wordSecond": "寿司 (すし, sushi)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ramen", + "wordSecond": "ラーメン (らーめん, rāmen)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tempura", + "wordSecond": "天ぷら (てんぷら, tenpura)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Miso-Suppe", + "wordSecond": "味噌汁 (みそしる, misoshiru)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Frühstück", + "wordSecond": "朝ご飯 (あさごはん, asagohan)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Mittagessen", + "wordSecond": "昼ご飯 (ひるごはん, hirugohan)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Abendessen", + "wordSecond": "晩ご飯 (ばんごはん, bangohan)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Messer", + "wordSecond": "包丁 (ほうちょう, hōchō)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Gabel", + "wordSecond": "フォーク (ふぉーく, fōku)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Löffel", + "wordSecond": "スプーン (すぷーん, supūn)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Teller", + "wordSecond": "お皿 (おさら, osara)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Glas", + "wordSecond": "グラス (ぐらす, gurasu)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tasse", + "wordSecond": "カップ (かっぷ, kappu)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Topf", + "wordSecond": "鍋 (なべ, nabe)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Pfanne", + "wordSecond": "フライパン (ふらいぱん, furaipan)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ofen", + "wordSecond": "オーブン (おーぶん, ōbun)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kühlschrank", + "wordSecond": "冷蔵庫 (れいぞうこ, reizōko)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Mikrowelle", + "wordSecond": "電子レンジ (でんしれんじ, denshirenji)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "kochen", + "wordSecond": "料理する (りょうりする, ryōri suru)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "backen", + "wordSecond": "焼く (やく, yaku)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "braten", + "wordSecond": "炒める (いためる, itameru)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "kochen (Wasser)", + "wordSecond": "沸かす (わかす, wakasu)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "schneiden", + "wordSecond": "切る (きる, kiru)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "mischen", + "wordSecond": "混ぜる (まぜる, mazeru)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "essen", + "wordSecond": "食べる (たべる, taberu)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "trinken", + "wordSecond": "飲む (のむ, nomu)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "kaufen", + "wordSecond": "買う (かう, kau)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "bestellen", + "wordSecond": "注文する (ちゅうもんする, chūmon suru)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "heiß", + "wordSecond": "熱い (あつい, atsui)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "kalt", + "wordSecond": "冷たい (つめたい, tsumetai)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "süß", + "wordSecond": "甘い (あまい, amai)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "sauer", + "wordSecond": "酸っぱい (すっぱい, suppai)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "salzig", + "wordSecond": "塩辛い (しおからい, shiokarai)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "lecker", + "wordSecond": "美味しい (おいしい, oishii)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "schlecht", + "wordSecond": "まずい (まずい, mazui)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "satt", + "wordSecond": "お腹がいっぱい (おなかがいっぱい, onaka ga ippai)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "hungrig", + "wordSecond": "お腹がすいた (おなかがすいた, onaka ga suita)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "durstig", + "wordSecond": "喉が渇いた (のどがかわいた, nodo ga kawaita)", + "createdAt": "2026-02-19T13:53:20.821Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_de_ko_A2.json b/output/2026_02_19_food_cooking_de_ko_A2.json new file mode 100644 index 0000000..03105a5 --- /dev/null +++ b/output/2026_02_19_food_cooking_de_ko_A2.json @@ -0,0 +1,1163 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:54:06.310Z", + "metadata": { + "itemCount": 88, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Apfel", + "wordSecond": "사과 (sagwa)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Banane", + "wordSecond": "바나나 (banana)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Brot", + "wordSecond": "빵 (ppang)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Butter", + "wordSecond": "버터 (beoteo)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Käse", + "wordSecond": "치즈 (chijeu)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Milch", + "wordSecond": "우유 (uyu)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ei", + "wordSecond": "계란 (gyeran)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wasser", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Tee", + "wordSecond": "차 (cha)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kaffee", + "wordSecond": "커피 (keopi)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zucker", + "wordSecond": "설탕 (seoltang)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Salz", + "wordSecond": "소금 (sogeum)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Pfeffer", + "wordSecond": "후추 (huchu)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Reis", + "wordSecond": "밥 (bap)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Nudeln", + "wordSecond": "국수 (guksu)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kartoffel", + "wordSecond": "감자 (gamja)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Tomate", + "wordSecond": "토마토 (tomato)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zwiebel", + "wordSecond": "양파 (yangpa)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Karotte", + "wordSecond": "당근 (danggeun)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Gurke", + "wordSecond": "오이 (oi)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Hähnchen", + "wordSecond": "닭고기 (dakgogi)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Rindfleisch", + "wordSecond": "소고기 (sogogi)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schweinefleisch", + "wordSecond": "돼지고기 (dwaejigogi)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fisch", + "wordSecond": "생선 (saengseon)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ei", + "wordSecond": "달걀 (dalgyal)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Joghurt", + "wordSecond": "요구르트 (yogureuteu)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Obst", + "wordSecond": "과일 (gwail)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Gemüse", + "wordSecond": "야채 (yachae)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Suppe", + "wordSecond": "국 (guk)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Salat", + "wordSecond": "샐러드 (saelleodeu)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Sandwich", + "wordSecond": "샌드위치 (saendeuwichi)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Pizza", + "wordSecond": "피자 (pija)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Hamburger", + "wordSecond": "햄버거 (haembeogeo)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Frühstück", + "wordSecond": "아침 식사 (achim siksa)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Mittagessen", + "wordSecond": "점심 식사 (jeomsim siksa)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Abendessen", + "wordSecond": "저녁 식사 (jeonyeok siksa)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Messer", + "wordSecond": "칼 (kal)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Gabel", + "wordSecond": "포크 (pokeu)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Löffel", + "wordSecond": "숟가락 (sutgarak)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Teller", + "wordSecond": "접시 (jeopsi)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Glas", + "wordSecond": "유리잔 (yurijan)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Tasse", + "wordSecond": "컵 (keop)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Topf", + "wordSecond": "냄비 (naembi)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Pfanne", + "wordSecond": "프라이팬 (peuraipaen)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ofen", + "wordSecond": "오븐 (obeun)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kühlschrank", + "wordSecond": "냉장고 (naengjanggo)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "kochen", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "backen", + "wordSecond": "굽다 (gupda)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "braten", + "wordSecond": "튀기다 (twigida)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "schneiden", + "wordSecond": "자르다 (jareuda)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "mischen", + "wordSecond": "섞다 (seokkda)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "waschen", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "essen", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "trinken", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "kaufen", + "wordSecond": "사다 (sada)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "heiß", + "wordSecond": "뜨거운 (tteugeoun)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "kalt", + "wordSecond": "차가운 (chagaun)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "süß", + "wordSecond": "달콤한 (dalkomhan)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "sauer", + "wordSecond": "신 (sin)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "salzig", + "wordSecond": "짜다 (jjada)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "scharf", + "wordSecond": "매운 (maeun)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Erdbeere", + "wordSecond": "딸기 (ttalgi)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Traube", + "wordSecond": "포도 (podo)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Orange", + "wordSecond": "오렌지 (orenji)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zitrone", + "wordSecond": "레몬 (remon)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Melone", + "wordSecond": "멜론 (mellon)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Birne", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Pfirsich", + "wordSecond": "복숭아 (boksunga)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Spinat", + "wordSecond": "시금치 (sigeumchi)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Pilz", + "wordSecond": "버섯 (beoseot)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Paprika", + "wordSecond": "피망 (pimang)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Mais", + "wordSecond": "옥수수 (oksusu)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Erbse", + "wordSecond": "완두콩 (wandukong)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bohnen", + "wordSecond": "콩 (kong)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Knoblauch", + "wordSecond": "마늘 (maneul)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ingwer", + "wordSecond": "생강 (saenggang)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Öl", + "wordSecond": "기름 (gireum)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Essig", + "wordSecond": "식초 (sikcho)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Soße", + "wordSecond": "소스 (soseu)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ketchup", + "wordSecond": "케첩 (kecheop)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Mayonnaise", + "wordSecond": "마요네즈 (mayonejeu)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Senf", + "wordSecond": "겨자 (gyeoja)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Honig", + "wordSecond": "꿀 (kkul)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Marmelade", + "wordSecond": "잼 (jaem)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schokolade", + "wordSecond": "초콜릿 (chokollit)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Eis", + "wordSecond": "아이스크림 (aiseukeurim)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kuchen", + "wordSecond": "케이크 (keikeu)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kekse", + "wordSecond": "쿠키 (kuki)", + "createdAt": "2026-02-19T13:54:06.310Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_de_pl_A2.json b/output/2026_02_19_food_cooking_de_pl_A2.json new file mode 100644 index 0000000..dd1a877 --- /dev/null +++ b/output/2026_02_19_food_cooking_de_pl_A2.json @@ -0,0 +1,1150 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:54:23.963Z", + "metadata": { + "itemCount": 87, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Apfel", + "wordSecond": "jabłko", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Banane", + "wordSecond": "banan", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Brot", + "wordSecond": "chleb", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Butter", + "wordSecond": "masło", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Käse", + "wordSecond": "ser", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Milch", + "wordSecond": "mleko", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ei", + "wordSecond": "jajko", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wasser", + "wordSecond": "woda", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Tee", + "wordSecond": "herbata", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kaffee", + "wordSecond": "kawa", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Zucker", + "wordSecond": "cukier", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Salz", + "wordSecond": "sól", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Pfeffer", + "wordSecond": "pieprz", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Reis", + "wordSecond": "ryż", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Nudeln", + "wordSecond": "makaron", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kartoffel", + "wordSecond": "ziemniak", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Tomate", + "wordSecond": "pomidor", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Gurke", + "wordSecond": "ogórek", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Karotte", + "wordSecond": "marchewka", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Zwiebel", + "wordSecond": "cebula", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Knoblauch", + "wordSecond": "czosnek", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Pilz", + "wordSecond": "grzyb", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Salat", + "wordSecond": "sałata", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Zitrone", + "wordSecond": "cytryna", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Erdbeere", + "wordSecond": "truskawka", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Orange", + "wordSecond": "pomarańcza", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Traube", + "wordSecond": "winogrono", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Birne", + "wordSecond": "gruszka", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Pfirsich", + "wordSecond": "brzoskwinia", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hähnchen", + "wordSecond": "kurczak", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fleisch", + "wordSecond": "mięso", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fisch", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wurst", + "wordSecond": "kiełbasa", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schinken", + "wordSecond": "szynka", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Eis", + "wordSecond": "lody", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Joghurt", + "wordSecond": "jogurt", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Sahne", + "wordSecond": "śmietana", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Mehl", + "wordSecond": "mąka", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Öl", + "wordSecond": "olej", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Essig", + "wordSecond": "ocet", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Suppe", + "wordSecond": "zupa", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Salz", + "wordSecond": "sól", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Pizza", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Burger", + "wordSecond": "burger", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Pommes", + "wordSecond": "frytki", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kuchen", + "wordSecond": "ciasto", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Keks", + "wordSecond": "ciastko", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schokolade", + "wordSecond": "czekolada", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Honig", + "wordSecond": "miód", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Marmelade", + "wordSecond": "dżem", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Senf", + "wordSecond": "musztarda", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ketchup", + "wordSecond": "keczup", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Brot", + "wordSecond": "chleb", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Brötchen", + "wordSecond": "bułka", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Müsli", + "wordSecond": "musli", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Cornflakes", + "wordSecond": "płatki", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Saft", + "wordSecond": "sok", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Limonade", + "wordSecond": "lemoniada", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bier", + "wordSecond": "piwo", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wein", + "wordSecond": "wino", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Teller", + "wordSecond": "talerz", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Glas", + "wordSecond": "szklanka", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Tasse", + "wordSecond": "filiżanka", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Messer", + "wordSecond": "nóż", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Gabel", + "wordSecond": "widelec", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Löffel", + "wordSecond": "łyżka", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Töpfe", + "wordSecond": "garnek", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Pfanne", + "wordSecond": "patelnia", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schüssel", + "wordSecond": "miska", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ofen", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Herd", + "wordSecond": "kuchenka", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kühlschrank", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Mikrowelle", + "wordSecond": "mikrofalówka", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "kochen", + "wordSecond": "gotować", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "backen", + "wordSecond": "piec", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "braten", + "wordSecond": "smażyć", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "schneiden", + "wordSecond": "kroić", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "mischen", + "wordSecond": "mieszać", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "öffnen", + "wordSecond": "otwierać", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "schließen", + "wordSecond": "zamykać", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "essen", + "wordSecond": "jeść", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "trinken", + "wordSecond": "pić", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "frühstücken", + "wordSecond": "jeść śniadanie", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zu Mittag essen", + "wordSecond": "jeść obiad", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zu Abend essen", + "wordSecond": "jeść kolację", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "bestellen", + "wordSecond": "zamawiać", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "bezahlen", + "wordSecond": "płacić", + "createdAt": "2026-02-19T13:54:23.963Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_de_zh_A2.json b/output/2026_02_19_food_cooking_de_zh_A2.json new file mode 100644 index 0000000..bd712bb --- /dev/null +++ b/output/2026_02_19_food_cooking_de_zh_A2.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:53:41.833Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Apfel", + "wordSecond": "苹果 (ping guo)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Banane", + "wordSecond": "香蕉 (xiang jiao)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Brot", + "wordSecond": "面包 (mian bao)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Butter", + "wordSecond": "黄油 (huang you)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Käse", + "wordSecond": "奶酪 (nai lao)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Milch", + "wordSecond": "牛奶 (niu nai)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ei", + "wordSecond": "鸡蛋 (ji dan)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wasser", + "wordSecond": "水 (shui)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tee", + "wordSecond": "茶 (cha)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kaffee", + "wordSecond": "咖啡 (ka fei)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Zucker", + "wordSecond": "糖 (tang)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Salz", + "wordSecond": "盐 (yan)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Pfeffer", + "wordSecond": "胡椒 (hu jiao)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Reis", + "wordSecond": "米饭 (mi fan)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Nudeln", + "wordSecond": "面条 (mian tiao)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kartoffel", + "wordSecond": "土豆 (tu dou)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tomate", + "wordSecond": "番茄 (fan qie)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gurke", + "wordSecond": "黄瓜 (huang gua)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Karotte", + "wordSecond": "胡萝卜 (hu luo bo)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Zwiebel", + "wordSecond": "洋葱 (yang cong)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Knoblauch", + "wordSecond": "大蒜 (da suan)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hähnchen", + "wordSecond": "鸡肉 (ji rou)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Rindfleisch", + "wordSecond": "牛肉 (niu rou)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schweinefleisch", + "wordSecond": "猪肉 (zhu rou)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Fisch", + "wordSecond": "鱼 (yu)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wurst", + "wordSecond": "香肠 (xiang chang)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schinken", + "wordSecond": "火腿 (huo tui)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Joghurt", + "wordSecond": "酸奶 (suan nai)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Obst", + "wordSecond": "水果 (shui guo)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gemüse", + "wordSecond": "蔬菜 (shu cai)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Salat", + "wordSecond": "沙拉 (sha la)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Suppe", + "wordSecond": "汤 (tang)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Pizza", + "wordSecond": "比萨饼 (bi sa bing)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hamburger", + "wordSecond": "汉堡包 (han bao bao)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Pommes frites", + "wordSecond": "薯条 (shu tiao)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kuchen", + "wordSecond": "蛋糕 (dan gao)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schokolade", + "wordSecond": "巧克力 (qiao ke li)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Eis", + "wordSecond": "冰淇淋 (bing qi lin)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Marmelade", + "wordSecond": "果酱 (guo jiang)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Honig", + "wordSecond": "蜂蜜 (feng mi)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Öl", + "wordSecond": "油 (you)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Essig", + "wordSecond": "醋 (cu)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Mehl", + "wordSecond": "面粉 (mian fen)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Brötchen", + "wordSecond": "小面包 (xiao mian bao)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Müsli", + "wordSecond": "麦片 (mai pian)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Saft", + "wordSecond": "果汁 (guo zhi)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Limonade", + "wordSecond": "柠檬水 (ning meng shui)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bier", + "wordSecond": "啤酒 (pi jiu)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wein", + "wordSecond": "葡萄酒 (pu tao jiu)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Teller", + "wordSecond": "盘子 (pan zi)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Glas", + "wordSecond": "玻璃杯 (bo li bei)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tasse", + "wordSecond": "杯子 (bei zi)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Messer", + "wordSecond": "刀 (dao)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gabel", + "wordSecond": "叉子 (cha zi)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Löffel", + "wordSecond": "勺子 (shao zi)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Topf", + "wordSecond": "锅 (guo)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Pfanne", + "wordSecond": "平底锅 (ping di guo)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schüssel", + "wordSecond": "碗 (wan)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ofen", + "wordSecond": "烤箱 (kao xiang)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kühlschrank", + "wordSecond": "冰箱 (bing xiang)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Mikrowelle", + "wordSecond": "微波炉 (wei bo lu)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "kochen", + "wordSecond": "做饭 (zuo fan)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "backen", + "wordSecond": "烤 (kao)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "braten", + "wordSecond": "煎 (jian)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "schneiden", + "wordSecond": "切 (qie)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "mischen", + "wordSecond": "混合 (hun he)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "rühren", + "wordSecond": "搅拌 (jiao ban)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "waschen", + "wordSecond": "洗 (xi)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "essen", + "wordSecond": "吃 (chi)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "trinken", + "wordSecond": "喝 (he)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Frühstück", + "wordSecond": "早餐 (zao can)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Mittagessen", + "wordSecond": "午餐 (wu can)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Abendessen", + "wordSecond": "晚餐 (wan can)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Snack", + "wordSecond": "小吃 (xiao chi)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Restaurant", + "wordSecond": "餐厅 (can ting)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Supermarkt", + "wordSecond": "超市 (chao shi)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Markt", + "wordSecond": "市场 (shi chang)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Erdbeere", + "wordSecond": "草莓 (cao mei)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Orange", + "wordSecond": "橙子 (cheng zi)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Trauben", + "wordSecond": "葡萄 (pu tao)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Zitrone", + "wordSecond": "柠檬 (ning meng)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Pilz", + "wordSecond": "蘑菇 (mo gu)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Spinat", + "wordSecond": "菠菜 (bo cai)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Mais", + "wordSecond": "玉米 (yu mi)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Erbsen", + "wordSecond": "豌豆 (wan dou)", + "createdAt": "2026-02-19T13:53:41.833Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_en_de_A2.json b/output/2026_02_19_food_cooking_en_de_A2.json new file mode 100644 index 0000000..d60a021 --- /dev/null +++ b/output/2026_02_19_food_cooking_en_de_A2.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:35:08.047Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bread", + "wordSecond": "Brot", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "butter", + "wordSecond": "Butter", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cheese", + "wordSecond": "Käse", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "milk", + "wordSecond": "Milch", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "egg", + "wordSecond": "Ei", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "apple", + "wordSecond": "Apfel", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "banana", + "wordSecond": "Banane", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "orange", + "wordSecond": "Orange", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tomato", + "wordSecond": "Tomate", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "potato", + "wordSecond": "Kartoffel", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "carrot", + "wordSecond": "Karotte", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "onion", + "wordSecond": "Zwiebel", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "salt", + "wordSecond": "Salz", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pepper", + "wordSecond": "Pfeffer", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sugar", + "wordSecond": "Zucker", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "water", + "wordSecond": "Wasser", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "coffee", + "wordSecond": "Kaffee", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tea", + "wordSecond": "Tee", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "juice", + "wordSecond": "Saft", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "beer", + "wordSecond": "Bier", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wine", + "wordSecond": "Wein", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "chicken", + "wordSecond": "Hähnchen", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "meat", + "wordSecond": "Fleisch", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fish", + "wordSecond": "Fisch", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "rice", + "wordSecond": "Reis", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pasta", + "wordSecond": "Nudeln", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "soup", + "wordSecond": "Suppe", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "salad", + "wordSecond": "Salat", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sandwich", + "wordSecond": "Sandwich", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pizza", + "wordSecond": "Pizza", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hamburger", + "wordSecond": "Hamburger", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "french fries", + "wordSecond": "Pommes frites", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cake", + "wordSecond": "Kuchen", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "chocolate", + "wordSecond": "Schokolade", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ice cream", + "wordSecond": "Eis", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "yogurt", + "wordSecond": "Joghurt", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cereal", + "wordSecond": "Müsli", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "jam", + "wordSecond": "Marmelade", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "honey", + "wordSecond": "Honig", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "mustard", + "wordSecond": "Senf", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ketchup", + "wordSecond": "Ketchup", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "oil", + "wordSecond": "Öl", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "vinegar", + "wordSecond": "Essig", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "flour", + "wordSecond": "Mehl", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lemon", + "wordSecond": "Zitrone", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "strawberry", + "wordSecond": "Erdbeere", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "grape", + "wordSecond": "Traube", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pear", + "wordSecond": "Birne", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "peach", + "wordSecond": "Pfirsich", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cucumber", + "wordSecond": "Gurke", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lettuce", + "wordSecond": "Kopfsalat", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "mushroom", + "wordSecond": "Pilz", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "garlic", + "wordSecond": "Knoblauch", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sausage", + "wordSecond": "Wurst", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bacon", + "wordSecond": "Speck", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ham", + "wordSecond": "Schinken", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "steak", + "wordSecond": "Steak", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sauce", + "wordSecond": "Soße", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bread roll", + "wordSecond": "Brötchen", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pancake", + "wordSecond": "Pfannkuchen", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "omelette", + "wordSecond": "Omelett", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "toast", + "wordSecond": "Toast", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "spoon", + "wordSecond": "Löffel", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fork", + "wordSecond": "Gabel", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "knife", + "wordSecond": "Messer", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "plate", + "wordSecond": "Teller", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bowl", + "wordSecond": "Schüssel", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cup", + "wordSecond": "Tasse", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "glass", + "wordSecond": "Glas", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pan", + "wordSecond": "Pfanne", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pot", + "wordSecond": "Topf", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "oven", + "wordSecond": "Ofen", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "refrigerator", + "wordSecond": "Kühlschrank", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to cook", + "wordSecond": "kochen", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to bake", + "wordSecond": "backen", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to fry", + "wordSecond": "braten", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to cut", + "wordSecond": "schneiden", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to mix", + "wordSecond": "mischen", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to eat", + "wordSecond": "essen", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to drink", + "wordSecond": "trinken", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "breakfast", + "wordSecond": "Frühstück", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lunch", + "wordSecond": "Mittagessen", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "dinner", + "wordSecond": "Abendessen", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "restaurant", + "wordSecond": "Restaurant", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "supermarket", + "wordSecond": "Supermarkt", + "createdAt": "2026-02-19T13:35:08.047Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_en_es_A2.json b/output/2026_02_19_food_cooking_en_es_A2.json new file mode 100644 index 0000000..cdb27ee --- /dev/null +++ b/output/2026_02_19_food_cooking_en_es_A2.json @@ -0,0 +1,1150 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:34:36.527Z", + "metadata": { + "itemCount": 87, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "apple", + "wordSecond": "manzana", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "banana", + "wordSecond": "plátano", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bread", + "wordSecond": "pan", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "butter", + "wordSecond": "mantequilla", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cheese", + "wordSecond": "queso", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "chicken", + "wordSecond": "pollo", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "coffee", + "wordSecond": "café", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "egg", + "wordSecond": "huevo", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fish", + "wordSecond": "pescado", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fruit", + "wordSecond": "fruta", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "juice", + "wordSecond": "jugo", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "milk", + "wordSecond": "leche", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "orange", + "wordSecond": "naranja", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pasta", + "wordSecond": "pasta", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "potato", + "wordSecond": "patata", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rice", + "wordSecond": "arroz", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "salad", + "wordSecond": "ensalada", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "salt", + "wordSecond": "sal", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sandwich", + "wordSecond": "sándwich", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "soup", + "wordSecond": "sopa", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sugar", + "wordSecond": "azúcar", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tea", + "wordSecond": "té", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tomato", + "wordSecond": "tomate", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "water", + "wordSecond": "agua", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "yogurt", + "wordSecond": "yogur", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "carrot", + "wordSecond": "zanahoria", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "onion", + "wordSecond": "cebolla", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lettuce", + "wordSecond": "lechuga", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cucumber", + "wordSecond": "pepino", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "strawberry", + "wordSecond": "fresa", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "grape", + "wordSecond": "uva", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lemon", + "wordSecond": "limón", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "peach", + "wordSecond": "melocotón", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pear", + "wordSecond": "pera", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pineapple", + "wordSecond": "piña", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "watermelon", + "wordSecond": "sandía", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "corn", + "wordSecond": "maíz", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "beans", + "wordSecond": "frijoles", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pepper", + "wordSecond": "pimiento", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "garlic", + "wordSecond": "ajo", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "oil", + "wordSecond": "aceite", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "vinegar", + "wordSecond": "vinagre", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "flour", + "wordSecond": "harina", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "honey", + "wordSecond": "miel", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "jam", + "wordSecond": "mermelada", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cereal", + "wordSecond": "cereal", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pancake", + "wordSecond": "tortita", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "toast", + "wordSecond": "tostada", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bacon", + "wordSecond": "tocino", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sausage", + "wordSecond": "salchicha", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ham", + "wordSecond": "jamón", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "steak", + "wordSecond": "filete", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pork", + "wordSecond": "cerdo", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "beef", + "wordSecond": "ternera", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lamb", + "wordSecond": "cordero", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shrimp", + "wordSecond": "gamba", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tuna", + "wordSecond": "atún", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "salmon", + "wordSecond": "salmón", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cake", + "wordSecond": "pastel", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cookie", + "wordSecond": "galleta", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ice cream", + "wordSecond": "helado", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "chocolate", + "wordSecond": "chocolate", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "candy", + "wordSecond": "caramelo", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nut", + "wordSecond": "nuez", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "almond", + "wordSecond": "almendra", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "peanut", + "wordSecond": "cacahuete", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "plate", + "wordSecond": "plato", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bowl", + "wordSecond": "bol", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cup", + "wordSecond": "taza", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "glass", + "wordSecond": "vaso", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fork", + "wordSecond": "tenedor", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "knife", + "wordSecond": "cuchillo", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "spoon", + "wordSecond": "cuchara", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "napkin", + "wordSecond": "servilleta", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pot", + "wordSecond": "olla", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pan", + "wordSecond": "sartén", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "oven", + "wordSecond": "horno", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "refrigerator", + "wordSecond": "refrigerador", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "stove", + "wordSecond": "estufa", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to cook", + "wordSecond": "cocinar", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to bake", + "wordSecond": "hornear", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to fry", + "wordSecond": "freír", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to boil", + "wordSecond": "hervir", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to cut", + "wordSecond": "cortar", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to eat", + "wordSecond": "comer", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to drink", + "wordSecond": "beber", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to buy", + "wordSecond": "comprar", + "createdAt": "2026-02-19T13:34:36.527Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_en_fr_A2.json b/output/2026_02_19_food_cooking_en_fr_A2.json new file mode 100644 index 0000000..0576e8e --- /dev/null +++ b/output/2026_02_19_food_cooking_en_fr_A2.json @@ -0,0 +1,1150 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:35:23.683Z", + "metadata": { + "itemCount": 87, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bread", + "wordSecond": "pain", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "butter", + "wordSecond": "beurre", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cheese", + "wordSecond": "fromage", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "milk", + "wordSecond": "lait", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "egg", + "wordSecond": "œuf", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "apple", + "wordSecond": "pomme", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "banana", + "wordSecond": "banane", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "orange", + "wordSecond": "orange", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tomato", + "wordSecond": "tomate", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "potato", + "wordSecond": "pomme de terre", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "carrot", + "wordSecond": "carotte", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "onion", + "wordSecond": "oignon", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "chicken", + "wordSecond": "poulet", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fish", + "wordSecond": "poisson", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "meat", + "wordSecond": "viande", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "rice", + "wordSecond": "riz", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pasta", + "wordSecond": "pâtes", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "soup", + "wordSecond": "soupe", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "salad", + "wordSecond": "salade", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sandwich", + "wordSecond": "sandwich", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pizza", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hamburger", + "wordSecond": "hamburger", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fries", + "wordSecond": "frites", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cake", + "wordSecond": "gâteau", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "chocolate", + "wordSecond": "chocolat", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sugar", + "wordSecond": "sucre", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "salt", + "wordSecond": "sel", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pepper", + "wordSecond": "poivre", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "oil", + "wordSecond": "huile", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "vinegar", + "wordSecond": "vinaigre", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "water", + "wordSecond": "eau", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "coffee", + "wordSecond": "café", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tea", + "wordSecond": "thé", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "juice", + "wordSecond": "jus", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wine", + "wordSecond": "vin", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "beer", + "wordSecond": "bière", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "breakfast", + "wordSecond": "petit-déjeuner", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lunch", + "wordSecond": "déjeuner", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "dinner", + "wordSecond": "dîner", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "knife", + "wordSecond": "couteau", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fork", + "wordSecond": "fourchette", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "spoon", + "wordSecond": "cuillère", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "plate", + "wordSecond": "assiette", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bowl", + "wordSecond": "bol", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cup", + "wordSecond": "tasse", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "glass", + "wordSecond": "verre", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pan", + "wordSecond": "poêle", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pot", + "wordSecond": "casserole", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "oven", + "wordSecond": "four", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "refrigerator", + "wordSecond": "réfrigérateur", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to cook", + "wordSecond": "cuisiner", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to bake", + "wordSecond": "cuire au four", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to fry", + "wordSecond": "faire frire", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to boil", + "wordSecond": "faire bouillir", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to eat", + "wordSecond": "manger", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to drink", + "wordSecond": "boire", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to cut", + "wordSecond": "couper", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to mix", + "wordSecond": "mélanger", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "strawberry", + "wordSecond": "fraise", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "grape", + "wordSecond": "raisin", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lemon", + "wordSecond": "citron", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pear", + "wordSecond": "poire", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "peach", + "wordSecond": "pêche", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lettuce", + "wordSecond": "laitue", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cucumber", + "wordSecond": "concombre", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "mushroom", + "wordSecond": "champignon", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "garlic", + "wordSecond": "ail", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "beef", + "wordSecond": "bœuf", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pork", + "wordSecond": "porc", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lamb", + "wordSecond": "agneau", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sausage", + "wordSecond": "saucisse", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ham", + "wordSecond": "jambon", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "yogurt", + "wordSecond": "yaourt", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ice cream", + "wordSecond": "glace", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cookie", + "wordSecond": "biscuit", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "jam", + "wordSecond": "confiture", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "honey", + "wordSecond": "miel", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "mustard", + "wordSecond": "moutarde", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ketchup", + "wordSecond": "ketchup", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "flour", + "wordSecond": "farine", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "corn", + "wordSecond": "maïs", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pea", + "wordSecond": "petit pois", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bean", + "wordSecond": "haricot", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pepper", + "wordSecond": "poivron", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "spinach", + "wordSecond": "épinard", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "broccoli", + "wordSecond": "brocoli", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cauliflower", + "wordSecond": "chou-fleur", + "createdAt": "2026-02-19T13:35:23.683Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_en_it_A2.json b/output/2026_02_19_food_cooking_en_it_A2.json new file mode 100644 index 0000000..cd24a3f --- /dev/null +++ b/output/2026_02_19_food_cooking_en_it_A2.json @@ -0,0 +1,1150 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:35:39.431Z", + "metadata": { + "itemCount": 87, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "apple", + "wordSecond": "mela", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "banana", + "wordSecond": "banana", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bread", + "wordSecond": "pane", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "butter", + "wordSecond": "burro", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cheese", + "wordSecond": "formaggio", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "chicken", + "wordSecond": "pollo", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "coffee", + "wordSecond": "caffè", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "egg", + "wordSecond": "uovo", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fish", + "wordSecond": "pesce", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "juice", + "wordSecond": "succo", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "milk", + "wordSecond": "latte", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pasta", + "wordSecond": "pasta", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "rice", + "wordSecond": "riso", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "salt", + "wordSecond": "sale", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sugar", + "wordSecond": "zucchero", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tea", + "wordSecond": "tè", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tomato", + "wordSecond": "pomodoro", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "water", + "wordSecond": "acqua", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wine", + "wordSecond": "vino", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "yogurt", + "wordSecond": "yogurt", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "potato", + "wordSecond": "patata", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "onion", + "wordSecond": "cipolla", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "carrot", + "wordSecond": "carota", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "salad", + "wordSecond": "insalata", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "soup", + "wordSecond": "minestra", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pizza", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sandwich", + "wordSecond": "panino", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cake", + "wordSecond": "torta", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cookie", + "wordSecond": "biscotto", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ice cream", + "wordSecond": "gelato", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "chocolate", + "wordSecond": "cioccolato", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "honey", + "wordSecond": "miele", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "jam", + "wordSecond": "marmellata", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pepper", + "wordSecond": "pepe", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "oil", + "wordSecond": "olio", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "vinegar", + "wordSecond": "aceto", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lemon", + "wordSecond": "limone", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "orange", + "wordSecond": "arancia", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "strawberry", + "wordSecond": "fragola", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "grape", + "wordSecond": "uva", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "peach", + "wordSecond": "pesca", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pear", + "wordSecond": "pera", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cherry", + "wordSecond": "ciliegia", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "watermelon", + "wordSecond": "anguria", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "melon", + "wordSecond": "melone", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pineapple", + "wordSecond": "ananas", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cucumber", + "wordSecond": "cetriolo", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lettuce", + "wordSecond": "lattuga", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "mushroom", + "wordSecond": "fungo", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "garlic", + "wordSecond": "aglio", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bean", + "wordSecond": "fagiolo", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pea", + "wordSecond": "pisello", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "corn", + "wordSecond": "mais", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "flour", + "wordSecond": "farina", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "eggplant", + "wordSecond": "melanzana", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "zucchini", + "wordSecond": "zucchina", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "spinach", + "wordSecond": "spinaci", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "broccoli", + "wordSecond": "broccoli", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cauliflower", + "wordSecond": "cavolfiore", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "asparagus", + "wordSecond": "asparago", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "breakfast", + "wordSecond": "colazione", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lunch", + "wordSecond": "pranzo", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dinner", + "wordSecond": "cena", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "knife", + "wordSecond": "coltello", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fork", + "wordSecond": "forchetta", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "spoon", + "wordSecond": "cucchiaio", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "plate", + "wordSecond": "piatto", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bowl", + "wordSecond": "ciotola", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cup", + "wordSecond": "tazza", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "glass", + "wordSecond": "bicchiere", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "napkin", + "wordSecond": "tovagliolo", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pot", + "wordSecond": "pentola", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pan", + "wordSecond": "padella", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "oven", + "wordSecond": "forno", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "refrigerator", + "wordSecond": "frigorifero", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to cook", + "wordSecond": "cucinare", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to bake", + "wordSecond": "cuocere al forno", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to fry", + "wordSecond": "friggere", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to boil", + "wordSecond": "bollire", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to cut", + "wordSecond": "tagliare", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to eat", + "wordSecond": "mangiare", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to drink", + "wordSecond": "bere", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to wash", + "wordSecond": "lavare", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hot", + "wordSecond": "caldo", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cold", + "wordSecond": "freddo", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sweet", + "wordSecond": "dolce", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "salty", + "wordSecond": "salato", + "createdAt": "2026-02-19T13:35:39.431Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_en_ja_A2.json b/output/2026_02_19_food_cooking_en_ja_A2.json new file mode 100644 index 0000000..3e0db12 --- /dev/null +++ b/output/2026_02_19_food_cooking_en_ja_A2.json @@ -0,0 +1,1150 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:36:08.993Z", + "metadata": { + "itemCount": 87, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "apple", + "wordSecond": "りんご (りんご, ringo)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "banana", + "wordSecond": "バナナ (バナナ, banana)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bread", + "wordSecond": "パン (ぱん, pan)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "rice", + "wordSecond": "ご飯 (ごはん, gohan)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "egg", + "wordSecond": "卵 (たまご, tamago)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "milk", + "wordSecond": "牛乳 (ぎゅうにゅう, gyūnyū)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "water", + "wordSecond": "水 (みず, mizu)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "tea", + "wordSecond": "お茶 (おちゃ, ocha)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "coffee", + "wordSecond": "コーヒー (こーひー, kōhī)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "juice", + "wordSecond": "ジュース (じゅーす, jūsu)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sugar", + "wordSecond": "砂糖 (さとう, satō)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "salt", + "wordSecond": "塩 (しお, shio)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pepper", + "wordSecond": "胡椒 (こしょう, koshō)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "butter", + "wordSecond": "バター (ばたー, batā)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cheese", + "wordSecond": "チーズ (ちーず, chīzu)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "chicken", + "wordSecond": "鶏肉 (とりにく, toriniku)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "beef", + "wordSecond": "牛肉 (ぎゅうにく, gyūniku)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "fish", + "wordSecond": "魚 (さかな, sakana)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pork", + "wordSecond": "豚肉 (ぶたにく, butaniku)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "potato", + "wordSecond": "じゃがいも (じゃがいも, jagaimo)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "tomato", + "wordSecond": "トマト (とまと, tomato)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "onion", + "wordSecond": "玉ねぎ (たまねぎ, tamanegi)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "carrot", + "wordSecond": "にんじん (にんじん, ninjin)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "lettuce", + "wordSecond": "レタス (れたす, retasu)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cucumber", + "wordSecond": "きゅうり (きゅうり, kyūri)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "broccoli", + "wordSecond": "ブロッコリー (ぶろっこりー, burokkorī)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "mushroom", + "wordSecond": "きのこ (きのこ, kinoko)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "orange", + "wordSecond": "オレンジ (おれんじ, orenji)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "strawberry", + "wordSecond": "いちご (いちご, ichigo)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "grape", + "wordSecond": "ぶどう (ぶどう, budō)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "lemon", + "wordSecond": "レモン (れもん, remon)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "melon", + "wordSecond": "メロン (めろん, meron)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "peach", + "wordSecond": "桃 (もも, momo)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pineapple", + "wordSecond": "パイナップル (ぱいなっぷる, painappuru)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "watermelon", + "wordSecond": "スイカ (すいか, suika)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "breakfast", + "wordSecond": "朝ご飯 (あさごはん, asagohan)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "lunch", + "wordSecond": "昼ご飯 (ひるごはん, hirugohan)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "dinner", + "wordSecond": "晩ご飯 (ばんごはん, bangohan)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sandwich", + "wordSecond": "サンドイッチ (さんどいっち, sandoitchi)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pizza", + "wordSecond": "ピザ (ぴざ, piza)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hamburger", + "wordSecond": "ハンバーガー (はんばーがー, hanbāgā)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "soup", + "wordSecond": "スープ (すーぷ, sūpu)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "salad", + "wordSecond": "サラダ (さらだ, sarada)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "curry", + "wordSecond": "カレー (かれー, karē)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "noodles", + "wordSecond": "麺 (めん, men)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "ramen", + "wordSecond": "ラーメン (らーめん, rāmen)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sushi", + "wordSecond": "寿司 (すし, sushi)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "tempura", + "wordSecond": "天ぷら (てんぷら, tenpura)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "tofu", + "wordSecond": "豆腐 (とうふ, tōfu)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "miso soup", + "wordSecond": "味噌汁 (みそしる, misoshiru)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cake", + "wordSecond": "ケーキ (けーき, kēki)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "ice cream", + "wordSecond": "アイスクリーム (あいすくりーむ, aisukurīmu)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "chocolate", + "wordSecond": "チョコレート (ちょこれーと, chokorēto)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cookie", + "wordSecond": "クッキー (くっきー, kukkī)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "fork", + "wordSecond": "フォーク (ふぉーく, fōku)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "knife", + "wordSecond": "ナイフ (ないふ, naifu)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "spoon", + "wordSecond": "スプーン (すぷーん, supūn)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "chopsticks", + "wordSecond": "箸 (はし, hashi)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "plate", + "wordSecond": "皿 (さら, sara)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bowl", + "wordSecond": "丼 (どんぶり, donburi)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cup", + "wordSecond": "カップ (かっぷ, kappu)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "glass", + "wordSecond": "グラス (ぐらす, gurasu)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pan", + "wordSecond": "フライパン (ふらいぱん, furaipan)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pot", + "wordSecond": "鍋 (なべ, nabe)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "oven", + "wordSecond": "オーブン (おーぶん, ōbun)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "refrigerator", + "wordSecond": "冷蔵庫 (れいぞうこ, reizōko)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "microwave", + "wordSecond": "電子レンジ (でんしれんじ, denshirenji)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "toaster", + "wordSecond": "トースター (とーすたー, tōsutā)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "kettle", + "wordSecond": "やかん (やかん, yakan)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cut", + "wordSecond": "切る (きる, kiru)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cook", + "wordSecond": "料理する (りょうりする, ryōri suru)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "boil", + "wordSecond": "沸かす (わかす, wakasu)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "fry", + "wordSecond": "揚げる (あげる, ageru)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bake", + "wordSecond": "焼く (やく, yaku)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "mix", + "wordSecond": "混ぜる (まぜる, mazeru)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "eat", + "wordSecond": "食べる (たべる, taberu)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "drink", + "wordSecond": "飲む (のむ, nomu)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "buy", + "wordSecond": "買う (かう, kau)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "wash", + "wordSecond": "洗う (あらう, arau)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "clean", + "wordSecond": "掃除する (そうじする, sōji suru)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hot", + "wordSecond": "熱い (あつい, atsui)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cold", + "wordSecond": "冷たい (つめたい, tsumetai)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "delicious", + "wordSecond": "美味しい (おいしい, oishii)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hungry", + "wordSecond": "お腹が空いた (おなかがすいた, onaka ga suita)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "thirsty", + "wordSecond": "喉が渇いた (のどがかわいた, nodo ga kawaita)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "restaurant", + "wordSecond": "レストラン (れすとらん, resutoran)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "supermarket", + "wordSecond": "スーパー (すーぱー, sūpā)", + "createdAt": "2026-02-19T13:36:08.993Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_en_ko_A2.json b/output/2026_02_19_food_cooking_en_ko_A2.json new file mode 100644 index 0000000..0e3ce40 --- /dev/null +++ b/output/2026_02_19_food_cooking_en_ko_A2.json @@ -0,0 +1,1150 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:36:55.772Z", + "metadata": { + "itemCount": 87, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "apple", + "wordSecond": "사과 (sagwa)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "banana", + "wordSecond": "바나나 (banana)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bread", + "wordSecond": "빵 (ppang)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "rice", + "wordSecond": "밥 (bap)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "water", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "milk", + "wordSecond": "우유 (uyu)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "egg", + "wordSecond": "계란 (gyeran)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "chicken", + "wordSecond": "닭고기 (dakgogi)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "beef", + "wordSecond": "소고기 (sogogi)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pork", + "wordSecond": "돼지고기 (dwaejigogi)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "fish", + "wordSecond": "생선 (saengseon)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "salt", + "wordSecond": "소금 (sogeum)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sugar", + "wordSecond": "설탕 (seoltang)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pepper", + "wordSecond": "후추 (huchu)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "oil", + "wordSecond": "기름 (gireum)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "butter", + "wordSecond": "버터 (beoteo)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cheese", + "wordSecond": "치즈 (chijeu)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "tomato", + "wordSecond": "토마토 (tomato)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "potato", + "wordSecond": "감자 (gamja)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "onion", + "wordSecond": "양파 (yangpa)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "carrot", + "wordSecond": "당근 (danggeun)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cucumber", + "wordSecond": "오이 (oi)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "lettuce", + "wordSecond": "상추 (sangchu)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "garlic", + "wordSecond": "마늘 (maneul)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "ginger", + "wordSecond": "생강 (saenggang)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "strawberry", + "wordSecond": "딸기 (ttalgi)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "orange", + "wordSecond": "오렌지 (orenji)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "grape", + "wordSecond": "포도 (podo)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "melon", + "wordSecond": "멜론 (mellon)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "watermelon", + "wordSecond": "수박 (subak)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "coffee", + "wordSecond": "커피 (keopi)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "tea", + "wordSecond": "차 (cha)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "juice", + "wordSecond": "주스 (juseu)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "soda", + "wordSecond": "탄산음료 (tansaneumnyo)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "yogurt", + "wordSecond": "요구르트 (yogureuteu)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "ice cream", + "wordSecond": "아이스크림 (aiseukeurim)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "chocolate", + "wordSecond": "초콜릿 (chokollit)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cake", + "wordSecond": "케이크 (keikeu)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cookie", + "wordSecond": "쿠키 (kuki)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "candy", + "wordSecond": "사탕 (satang)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "noodle", + "wordSecond": "국수 (guksu)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "soup", + "wordSecond": "국 (guk)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "salad", + "wordSecond": "샐러드 (saelleodeu)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sandwich", + "wordSecond": "샌드위치 (saendeuwichi)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pizza", + "wordSecond": "피자 (pija)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "hamburger", + "wordSecond": "햄버거 (haembeogeo)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "french fries", + "wordSecond": "감자튀김 (gamjatwigim)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "fried rice", + "wordSecond": "볶음밥 (bokkeumbap)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "kimchi", + "wordSecond": "김치 (gimchi)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bibimbap", + "wordSecond": "비빔밥 (bibimbap)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "spoon", + "wordSecond": "숟가락 (sutgarak)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "fork", + "wordSecond": "포크 (pokeu)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "knife", + "wordSecond": "칼 (kal)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "chopsticks", + "wordSecond": "젓가락 (jeotgarak)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "plate", + "wordSecond": "접시 (jeopsi)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bowl", + "wordSecond": "그릇 (geureut)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cup", + "wordSecond": "컵 (keop)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "glass", + "wordSecond": "유리잔 (yurijan)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pot", + "wordSecond": "냄비 (naembi)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pan", + "wordSecond": "프라이팬 (peuraipaen)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cutting board", + "wordSecond": "도마 (doma)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "refrigerator", + "wordSecond": "냉장고 (naengjanggo)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "stove", + "wordSecond": "가스레인지 (gaseureinji)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "oven", + "wordSecond": "오븐 (obeun)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "microwave", + "wordSecond": "전자레인지 (jeonjareinji)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to cook", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to eat", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to drink", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to cut", + "wordSecond": "자르다 (jareuda)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to wash", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to boil", + "wordSecond": "끓이다 (kkeurida)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to fry", + "wordSecond": "튀기다 (twigida)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to bake", + "wordSecond": "굽다 (gupda)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to mix", + "wordSecond": "섞다 (seokkda)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to peel", + "wordSecond": "껍질을 벗기다 (kkeopjireul beotgida)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "breakfast", + "wordSecond": "아침 식사 (achim siksa)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "lunch", + "wordSecond": "점심 식사 (jeomsim siksa)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "dinner", + "wordSecond": "저녁 식사 (jeonyeok siksa)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "snack", + "wordSecond": "간식 (gansik)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "meal", + "wordSecond": "식사 (siksa)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "hungry", + "wordSecond": "배고프다 (baegopeuda)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "thirsty", + "wordSecond": "목마르다 (mongmareuda)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "delicious", + "wordSecond": "맛있다 (masitda)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "spicy", + "wordSecond": "매운 (maeun)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sweet", + "wordSecond": "달콤한 (dalkomhan)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sour", + "wordSecond": "신 (sin)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "salty", + "wordSecond": "짜다 (jjada)", + "createdAt": "2026-02-19T13:36:55.772Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_en_pl_A2.json b/output/2026_02_19_food_cooking_en_pl_A2.json new file mode 100644 index 0000000..99c88d5 --- /dev/null +++ b/output/2026_02_19_food_cooking_en_pl_A2.json @@ -0,0 +1,1241 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:37:13.178Z", + "metadata": { + "itemCount": 94, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "apple", + "wordSecond": "jabłko", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "banana", + "wordSecond": "banan", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bread", + "wordSecond": "chleb", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "butter", + "wordSecond": "masło", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cheese", + "wordSecond": "ser", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "chicken", + "wordSecond": "kurczak", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "coffee", + "wordSecond": "kawa", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "egg", + "wordSecond": "jajko", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fish", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "flour", + "wordSecond": "mąka", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fruit", + "wordSecond": "owoc", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "juice", + "wordSecond": "sok", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "meat", + "wordSecond": "mięso", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "milk", + "wordSecond": "mleko", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "onion", + "wordSecond": "cebula", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "orange", + "wordSecond": "pomarańcza", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pasta", + "wordSecond": "makaron", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "potato", + "wordSecond": "ziemniak", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "rice", + "wordSecond": "ryż", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "salt", + "wordSecond": "sól", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "soup", + "wordSecond": "zupa", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sugar", + "wordSecond": "cukier", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "tea", + "wordSecond": "herbata", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "tomato", + "wordSecond": "pomidor", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "vegetable", + "wordSecond": "warzywo", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "water", + "wordSecond": "woda", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "yogurt", + "wordSecond": "jogurt", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "carrot", + "wordSecond": "marchewka", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cucumber", + "wordSecond": "ogórek", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "lettuce", + "wordSecond": "sałata", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pepper", + "wordSecond": "papryka", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "strawberry", + "wordSecond": "truskawka", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "grape", + "wordSecond": "winogrono", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "lemon", + "wordSecond": "cytryna", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pear", + "wordSecond": "gruszka", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cherry", + "wordSecond": "wiśnia", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "plum", + "wordSecond": "śliwka", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "raspberry", + "wordSecond": "malina", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "blueberry", + "wordSecond": "borówka", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pineapple", + "wordSecond": "ananas", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "watermelon", + "wordSecond": "arbuz", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "melon", + "wordSecond": "melon", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "peach", + "wordSecond": "brzoskwinia", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "apricot", + "wordSecond": "morela", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "garlic", + "wordSecond": "czosnek", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "mushroom", + "wordSecond": "grzyb", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "broccoli", + "wordSecond": "brokuł", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cauliflower", + "wordSecond": "kalafior", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "spinach", + "wordSecond": "szpinak", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bean", + "wordSecond": "fasola", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pea", + "wordSecond": "groch", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "corn", + "wordSecond": "kukurydza", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "beetroot", + "wordSecond": "burak", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "radish", + "wordSecond": "rzodkiewka", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "asparagus", + "wordSecond": "szparag", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "zucchini", + "wordSecond": "cukinia", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "aubergine", + "wordSecond": "bakłażan", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pumpkin", + "wordSecond": "dynia", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "breakfast", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "lunch", + "wordSecond": "obiad", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "dinner", + "wordSecond": "kolacja", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sandwich", + "wordSecond": "kanapka", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "salad", + "wordSecond": "sałatka", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pizza", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "hamburger", + "wordSecond": "hamburger", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fries", + "wordSecond": "frytki", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cake", + "wordSecond": "ciasto", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cookie", + "wordSecond": "ciastko", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "chocolate", + "wordSecond": "czekolada", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "ice cream", + "wordSecond": "lody", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "jam", + "wordSecond": "dżem", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "honey", + "wordSecond": "miód", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "mustard", + "wordSecond": "musztarda", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "ketchup", + "wordSecond": "keczup", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "oil", + "wordSecond": "olej", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "vinegar", + "wordSecond": "ocet", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "plate", + "wordSecond": "talerz", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bowl", + "wordSecond": "miska", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cup", + "wordSecond": "kubek", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "glass", + "wordSecond": "szklanka", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "knife", + "wordSecond": "nóż", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fork", + "wordSecond": "widelec", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "spoon", + "wordSecond": "łyżka", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pan", + "wordSecond": "patelnia", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pot", + "wordSecond": "garnek", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "oven", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fridge", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to cook", + "wordSecond": "gotować", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to bake", + "wordSecond": "piec", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to fry", + "wordSecond": "smażyć", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to eat", + "wordSecond": "jeść", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to drink", + "wordSecond": "pić", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to cut", + "wordSecond": "kroić", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to wash", + "wordSecond": "myć", + "createdAt": "2026-02-19T13:37:13.178Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_en_pt_A2.json b/output/2026_02_19_food_cooking_en_pt_A2.json new file mode 100644 index 0000000..c47bcec --- /dev/null +++ b/output/2026_02_19_food_cooking_en_pt_A2.json @@ -0,0 +1,1163 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:34:52.474Z", + "metadata": { + "itemCount": 88, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bread", + "wordSecond": "pão", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rice", + "wordSecond": "arroz", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "beans", + "wordSecond": "feijão", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "egg", + "wordSecond": "ovo", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "milk", + "wordSecond": "leite", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cheese", + "wordSecond": "queijo", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "butter", + "wordSecond": "manteiga", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "yogurt", + "wordSecond": "iogurte", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "apple", + "wordSecond": "maçã", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "banana", + "wordSecond": "banana", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "orange", + "wordSecond": "laranja", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "strawberry", + "wordSecond": "morango", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "grape", + "wordSecond": "uva", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "watermelon", + "wordSecond": "melancia", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "potato", + "wordSecond": "batata", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tomato", + "wordSecond": "tomate", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "onion", + "wordSecond": "cebola", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "carrot", + "wordSecond": "cenoura", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lettuce", + "wordSecond": "alface", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chicken", + "wordSecond": "frango", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "beef", + "wordSecond": "carne", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fish", + "wordSecond": "peixe", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pork", + "wordSecond": "porco", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sausage", + "wordSecond": "salsicha", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ham", + "wordSecond": "presunto", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "salt", + "wordSecond": "sal", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pepper", + "wordSecond": "pimenta", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sugar", + "wordSecond": "açúcar", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "oil", + "wordSecond": "óleo", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "vinegar", + "wordSecond": "vinagre", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "coffee", + "wordSecond": "café", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tea", + "wordSecond": "chá", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "juice", + "wordSecond": "suco", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "water", + "wordSecond": "água", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "beer", + "wordSecond": "cerveja", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wine", + "wordSecond": "vinho", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cake", + "wordSecond": "bolo", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cookie", + "wordSecond": "biscoito", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chocolate", + "wordSecond": "chocolate", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ice cream", + "wordSecond": "sorvete", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pasta", + "wordSecond": "macarrão", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "soup", + "wordSecond": "sopa", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sandwich", + "wordSecond": "sanduíche", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pizza", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hamburger", + "wordSecond": "hambúrguer", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "french fries", + "wordSecond": "batata frita", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "salad", + "wordSecond": "salada", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "omelet", + "wordSecond": "omelete", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pancake", + "wordSecond": "panqueca", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cereal", + "wordSecond": "cereal", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "toast", + "wordSecond": "torrada", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "jam", + "wordSecond": "geleia", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "honey", + "wordSecond": "mel", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lemon", + "wordSecond": "limão", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "garlic", + "wordSecond": "alho", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cucumber", + "wordSecond": "pepino", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "corn", + "wordSecond": "milho", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "peas", + "wordSecond": "ervilha", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mushroom", + "wordSecond": "cogumelo", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "peach", + "wordSecond": "pêssego", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pineapple", + "wordSecond": "abacaxi", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "avocado", + "wordSecond": "abacate", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bread roll", + "wordSecond": "pãozinho", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "knife", + "wordSecond": "faca", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fork", + "wordSecond": "garfo", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "spoon", + "wordSecond": "colher", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "plate", + "wordSecond": "prato", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cup", + "wordSecond": "xícara", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "glass", + "wordSecond": "copo", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bowl", + "wordSecond": "tigela", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pan", + "wordSecond": "frigideira", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pot", + "wordSecond": "panela", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "oven", + "wordSecond": "forno", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "refrigerator", + "wordSecond": "geladeira", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to cook", + "wordSecond": "cozinhar", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to bake", + "wordSecond": "assar", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to fry", + "wordSecond": "fritar", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to boil", + "wordSecond": "ferver", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to cut", + "wordSecond": "cortar", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to mix", + "wordSecond": "misturar", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to eat", + "wordSecond": "comer", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to drink", + "wordSecond": "beber", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "breakfast", + "wordSecond": "café da manhã", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lunch", + "wordSecond": "almoço", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dinner", + "wordSecond": "jantar", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "snack", + "wordSecond": "lanche", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "restaurant", + "wordSecond": "restaurante", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "supermarket", + "wordSecond": "supermercado", + "createdAt": "2026-02-19T13:34:52.474Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_en_zh_A2.json b/output/2026_02_19_food_cooking_en_zh_A2.json new file mode 100644 index 0000000..11103fd --- /dev/null +++ b/output/2026_02_19_food_cooking_en_zh_A2.json @@ -0,0 +1,1150 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:36:31.629Z", + "metadata": { + "itemCount": 87, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "apple", + "wordSecond": "苹果 (píngguǒ)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "banana", + "wordSecond": "香蕉 (xiāngjiāo)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bread", + "wordSecond": "面包 (miànbāo)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "butter", + "wordSecond": "黄油 (huángyóu)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cheese", + "wordSecond": "奶酪 (nǎilào)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "chicken", + "wordSecond": "鸡肉 (jīròu)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "coffee", + "wordSecond": "咖啡 (kāfēi)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "egg", + "wordSecond": "鸡蛋 (jīdàn)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "fish", + "wordSecond": "鱼 (yú)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "juice", + "wordSecond": "果汁 (guǒzhī)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "milk", + "wordSecond": "牛奶 (niúnǎi)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "orange", + "wordSecond": "橙子 (chéngzi)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pasta", + "wordSecond": "意大利面 (yìdàlì miàn)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pizza", + "wordSecond": "披萨 (pīsà)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "potato", + "wordSecond": "土豆 (tǔdòu)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "rice", + "wordSecond": "米饭 (mǐfàn)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "salad", + "wordSecond": "沙拉 (shālā)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "salt", + "wordSecond": "盐 (yán)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sandwich", + "wordSecond": "三明治 (sānmíngzhì)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "soup", + "wordSecond": "汤 (tāng)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sugar", + "wordSecond": "糖 (táng)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "tea", + "wordSecond": "茶 (chá)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "tomato", + "wordSecond": "番茄 (fānqié)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "water", + "wordSecond": "水 (shuǐ)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "beef", + "wordSecond": "牛肉 (niúròu)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "carrot", + "wordSecond": "胡萝卜 (húluóbo)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cucumber", + "wordSecond": "黄瓜 (huángguā)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "onion", + "wordSecond": "洋葱 (yángcōng)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pepper", + "wordSecond": "辣椒 (làjiāo)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pork", + "wordSecond": "猪肉 (zhūròu)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "strawberry", + "wordSecond": "草莓 (cǎoméi)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "watermelon", + "wordSecond": "西瓜 (xīguā)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "grape", + "wordSecond": "葡萄 (pútáo)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "lemon", + "wordSecond": "柠檬 (níngméng)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "peach", + "wordSecond": "桃子 (táozi)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pear", + "wordSecond": "梨 (lí)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pineapple", + "wordSecond": "菠萝 (bōluó)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "mango", + "wordSecond": "芒果 (mángguǒ)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cabbage", + "wordSecond": "卷心菜 (juǎnxīncài)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "lettuce", + "wordSecond": "生菜 (shēngcài)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "broccoli", + "wordSecond": "西兰花 (xīlánhuā)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "mushroom", + "wordSecond": "蘑菇 (mógū)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "garlic", + "wordSecond": "大蒜 (dàsuàn)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "corn", + "wordSecond": "玉米 (yùmǐ)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bean", + "wordSecond": "豆子 (dòuzi)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "peanut", + "wordSecond": "花生 (huāshēng)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hamburger", + "wordSecond": "汉堡包 (hànbǎobāo)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "french fries", + "wordSecond": "薯条 (shǔtiáo)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hot dog", + "wordSecond": "热狗 (règǒu)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "noodles", + "wordSecond": "面条 (miàntiáo)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "dumpling", + "wordSecond": "饺子 (jiǎozi)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cake", + "wordSecond": "蛋糕 (dàngāo)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cookie", + "wordSecond": "饼干 (bǐnggān)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "chocolate", + "wordSecond": "巧克力 (qiǎokèlì)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "ice cream", + "wordSecond": "冰淇淋 (bīngqílín)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "yogurt", + "wordSecond": "酸奶 (suānnǎi)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cereal", + "wordSecond": "麦片 (màipiàn)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "jam", + "wordSecond": "果酱 (guǒjiàng)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "honey", + "wordSecond": "蜂蜜 (fēngmì)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "vinegar", + "wordSecond": "醋 (cù)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "oil", + "wordSecond": "油 (yóu)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "soy sauce", + "wordSecond": "酱油 (jiàngyóu)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "knife", + "wordSecond": "刀 (dāo)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "fork", + "wordSecond": "叉子 (chāzi)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "spoon", + "wordSecond": "勺子 (sháozi)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "plate", + "wordSecond": "盘子 (pánzi)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bowl", + "wordSecond": "碗 (wǎn)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cup", + "wordSecond": "杯子 (bēizi)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "glass", + "wordSecond": "玻璃杯 (bōlibēi)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pot", + "wordSecond": "锅 (guō)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pan", + "wordSecond": "平底锅 (píngdǐguō)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to cook", + "wordSecond": "做饭 (zuòfàn)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to eat", + "wordSecond": "吃 (chī)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to drink", + "wordSecond": "喝 (hē)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to cut", + "wordSecond": "切 (qiē)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to fry", + "wordSecond": "炒 (chǎo)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to boil", + "wordSecond": "煮 (zhǔ)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to bake", + "wordSecond": "烤 (kǎo)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to wash", + "wordSecond": "洗 (xǐ)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "breakfast", + "wordSecond": "早餐 (zǎocān)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "lunch", + "wordSecond": "午餐 (wǔcān)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "dinner", + "wordSecond": "晚餐 (wǎncān)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "restaurant", + "wordSecond": "餐厅 (cāntīng)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "supermarket", + "wordSecond": "超市 (chāoshì)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "market", + "wordSecond": "市场 (shìchǎng)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "menu", + "wordSecond": "菜单 (càidān)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bill", + "wordSecond": "账单 (zhàngdān)", + "createdAt": "2026-02-19T13:36:31.629Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_es_de_A2.json b/output/2026_02_19_food_cooking_es_de_A2.json new file mode 100644 index 0000000..94b99ad --- /dev/null +++ b/output/2026_02_19_food_cooking_es_de_A2.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:37:47.513Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pan", + "wordSecond": "das Brot", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el agua", + "wordSecond": "das Wasser", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la leche", + "wordSecond": "die Milch", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el café", + "wordSecond": "der Kaffee", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el té", + "wordSecond": "der Tee", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el azúcar", + "wordSecond": "der Zucker", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la sal", + "wordSecond": "das Salz", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la pimienta", + "wordSecond": "der Pfeffer", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el aceite", + "wordSecond": "das Öl", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el huevo", + "wordSecond": "das Ei", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el queso", + "wordSecond": "der Käse", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la mantequilla", + "wordSecond": "die Butter", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el yogur", + "wordSecond": "der Joghurt", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la fruta", + "wordSecond": "das Obst", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la manzana", + "wordSecond": "der Apfel", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el plátano", + "wordSecond": "die Banane", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la naranja", + "wordSecond": "die Orange", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la fresa", + "wordSecond": "die Erdbeere", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la uva", + "wordSecond": "die Traube", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la verdura", + "wordSecond": "das Gemüse", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la zanahoria", + "wordSecond": "die Karotte", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cebolla", + "wordSecond": "die Zwiebel", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el tomate", + "wordSecond": "die Tomate", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la patata", + "wordSecond": "die Kartoffel", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la lechuga", + "wordSecond": "der Salat", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pepino", + "wordSecond": "die Gurke", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pimiento", + "wordSecond": "die Paprika", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el arroz", + "wordSecond": "der Reis", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la pasta", + "wordSecond": "die Nudeln", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pollo", + "wordSecond": "das Hähnchen", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la carne", + "wordSecond": "das Fleisch", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pescado", + "wordSecond": "der Fisch", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el cerdo", + "wordSecond": "das Schwein", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la ternera", + "wordSecond": "das Rindfleisch", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el jamón", + "wordSecond": "der Schinken", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la salchicha", + "wordSecond": "die Wurst", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el desayuno", + "wordSecond": "das Frühstück", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el almuerzo", + "wordSecond": "das Mittagessen", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cena", + "wordSecond": "das Abendessen", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la sopa", + "wordSecond": "die Suppe", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la ensalada", + "wordSecond": "der Salat", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el sándwich", + "wordSecond": "das Sandwich", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la pizza", + "wordSecond": "die Pizza", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la hamburguesa", + "wordSecond": "der Hamburger", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "las patatas fritas", + "wordSecond": "die Pommes frites", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el helado", + "wordSecond": "das Eis", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pastel", + "wordSecond": "der Kuchen", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la galleta", + "wordSecond": "der Keks", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el chocolate", + "wordSecond": "die Schokolade", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el zumo", + "wordSecond": "der Saft", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el vino", + "wordSecond": "der Wein", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cerveza", + "wordSecond": "das Bier", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el tenedor", + "wordSecond": "die Gabel", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el cuchillo", + "wordSecond": "das Messer", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cuchara", + "wordSecond": "der Löffel", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el plato", + "wordSecond": "der Teller", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el vaso", + "wordSecond": "das Glas", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la taza", + "wordSecond": "die Tasse", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la olla", + "wordSecond": "der Topf", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la sartén", + "wordSecond": "die Pfanne", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el horno", + "wordSecond": "der Ofen", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la nevera", + "wordSecond": "der Kühlschrank", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el microondas", + "wordSecond": "die Mikrowelle", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cocinar", + "wordSecond": "kochen", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hervir", + "wordSecond": "kochen", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "freír", + "wordSecond": "braten", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "asar", + "wordSecond": "grillen", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hornear", + "wordSecond": "backen", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cortar", + "wordSecond": "schneiden", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pelar", + "wordSecond": "schälen", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mezclar", + "wordSecond": "mischen", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "batir", + "wordSecond": "rühren", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "servir", + "wordSecond": "servieren", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "comer", + "wordSecond": "essen", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "beber", + "wordSecond": "trinken", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "caliente", + "wordSecond": "heiß", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "frío", + "wordSecond": "kalt", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dulce", + "wordSecond": "süß", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "salado", + "wordSecond": "salzig", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "picante", + "wordSecond": "scharf", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "delicioso", + "wordSecond": "lecker", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el restaurante", + "wordSecond": "das Restaurant", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el supermercado", + "wordSecond": "der Supermarkt", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cuenta", + "wordSecond": "die Rechnung", + "createdAt": "2026-02-19T13:37:47.513Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_es_fr_A2.json b/output/2026_02_19_food_cooking_es_fr_A2.json new file mode 100644 index 0000000..8480ccf --- /dev/null +++ b/output/2026_02_19_food_cooking_es_fr_A2.json @@ -0,0 +1,1150 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:47:52.462Z", + "metadata": { + "itemCount": 87, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pan", + "wordSecond": "pain", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "leche", + "wordSecond": "lait", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "huevo", + "wordSecond": "œuf", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "queso", + "wordSecond": "fromage", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mantequilla", + "wordSecond": "beurre", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "azúcar", + "wordSecond": "sucre", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sal", + "wordSecond": "sel", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pimienta", + "wordSecond": "poivre", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "aceite", + "wordSecond": "huile", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vinagre", + "wordSecond": "vinaigre", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "arroz", + "wordSecond": "riz", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pasta", + "wordSecond": "pâtes", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pollo", + "wordSecond": "poulet", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "carne", + "wordSecond": "viande", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pescado", + "wordSecond": "poisson", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "jamón", + "wordSecond": "jambon", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sopa", + "wordSecond": "soupe", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ensalada", + "wordSecond": "salade", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fruta", + "wordSecond": "fruit", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "manzana", + "wordSecond": "pomme", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "plátano", + "wordSecond": "banane", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "naranja", + "wordSecond": "orange", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "uva", + "wordSecond": "raisin", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fresa", + "wordSecond": "fraise", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "limón", + "wordSecond": "citron", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tomate", + "wordSecond": "tomate", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cebolla", + "wordSecond": "oignon", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "zanahoria", + "wordSecond": "carotte", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "patata", + "wordSecond": "pomme de terre", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lechuga", + "wordSecond": "laitue", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pimiento", + "wordSecond": "poivron", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ajo", + "wordSecond": "ail", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "aguacate", + "wordSecond": "avocat", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "maíz", + "wordSecond": "maïs", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "guisante", + "wordSecond": "petit pois", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "judía", + "wordSecond": "haricot", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "espinaca", + "wordSecond": "épinard", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "champiñón", + "wordSecond": "champignon", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pizza", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hamburguesa", + "wordSecond": "hamburger", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sándwich", + "wordSecond": "sandwich", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tortilla", + "wordSecond": "omelette", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "yogur", + "wordSecond": "yaourt", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cereal", + "wordSecond": "céréales", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mermelada", + "wordSecond": "confiture", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "café", + "wordSecond": "café", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "té", + "wordSecond": "thé", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "agua", + "wordSecond": "eau", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "zumo", + "wordSecond": "jus", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vino", + "wordSecond": "vin", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cerveza", + "wordSecond": "bière", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "helado", + "wordSecond": "glace", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pastel", + "wordSecond": "gâteau", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "galleta", + "wordSecond": "biscuit", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "chocolate", + "wordSecond": "chocolat", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "miel", + "wordSecond": "miel", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mostaza", + "wordSecond": "moutarde", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "kétchup", + "wordSecond": "ketchup", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mayonesa", + "wordSecond": "mayonnaise", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "salsa", + "wordSecond": "sauce", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cuchillo", + "wordSecond": "couteau", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tenedor", + "wordSecond": "fourchette", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cuchara", + "wordSecond": "cuillère", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "plato", + "wordSecond": "assiette", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vaso", + "wordSecond": "verre", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "taza", + "wordSecond": "tasse", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "olla", + "wordSecond": "casserole", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sartén", + "wordSecond": "poêle", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cocina", + "wordSecond": "cuisinière", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "horno", + "wordSecond": "four", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "microondas", + "wordSecond": "micro-ondes", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nevera", + "wordSecond": "réfrigérateur", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cocinar", + "wordSecond": "cuisiner", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hervir", + "wordSecond": "bouillir", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "freír", + "wordSecond": "frire", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "asar", + "wordSecond": "rôtir", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hornear", + "wordSecond": "cuire au four", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cortar", + "wordSecond": "couper", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pelar", + "wordSecond": "éplucher", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mezclar", + "wordSecond": "mélanger", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "batir", + "wordSecond": "battre", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "servir", + "wordSecond": "servir", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "comer", + "wordSecond": "manger", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "beber", + "wordSecond": "boire", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "desayuno", + "wordSecond": "petit déjeuner", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "almuerzo", + "wordSecond": "déjeuner", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cena", + "wordSecond": "dîner", + "createdAt": "2026-02-19T13:47:52.462Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_es_it_A2.json b/output/2026_02_19_food_cooking_es_it_A2.json new file mode 100644 index 0000000..d2d2997 --- /dev/null +++ b/output/2026_02_19_food_cooking_es_it_A2.json @@ -0,0 +1,1163 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:48:09.311Z", + "metadata": { + "itemCount": 88, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pan", + "wordSecond": "pane", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "agua", + "wordSecond": "acqua", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "leche", + "wordSecond": "latte", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "café", + "wordSecond": "caffè", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "té", + "wordSecond": "tè", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "azúcar", + "wordSecond": "zucchero", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sal", + "wordSecond": "sale", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pimienta", + "wordSecond": "pepe", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "aceite", + "wordSecond": "olio", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vinagre", + "wordSecond": "aceto", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "arroz", + "wordSecond": "riso", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pasta", + "wordSecond": "pasta", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "huevo", + "wordSecond": "uovo", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "queso", + "wordSecond": "formaggio", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mantequilla", + "wordSecond": "burro", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "jamón", + "wordSecond": "prosciutto", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pollo", + "wordSecond": "pollo", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "carne", + "wordSecond": "carne", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pescado", + "wordSecond": "pesce", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "marisco", + "wordSecond": "frutti di mare", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tomate", + "wordSecond": "pomodoro", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cebolla", + "wordSecond": "cipolla", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ajo", + "wordSecond": "aglio", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "zanahoria", + "wordSecond": "carota", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "patata", + "wordSecond": "patata", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lechuga", + "wordSecond": "lattuga", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "espinaca", + "wordSecond": "spinaci", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "brócoli", + "wordSecond": "broccoli", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "manzana", + "wordSecond": "mela", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "plátano", + "wordSecond": "banana", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "naranja", + "wordSecond": "arancia", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "fresa", + "wordSecond": "fragola", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "uva", + "wordSecond": "uva", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "limón", + "wordSecond": "limone", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sandía", + "wordSecond": "anguria", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "melón", + "wordSecond": "melone", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "piña", + "wordSecond": "ananas", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cereza", + "wordSecond": "ciliegia", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pera", + "wordSecond": "pera", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "melocotón", + "wordSecond": "pesca", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "harina", + "wordSecond": "farina", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "horno", + "wordSecond": "forno", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "olla", + "wordSecond": "pentola", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sartén", + "wordSecond": "padella", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cuchillo", + "wordSecond": "coltello", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tenedor", + "wordSecond": "forchetta", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cuchara", + "wordSecond": "cucchiaio", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "plato", + "wordSecond": "piatto", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vaso", + "wordSecond": "bicchiere", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "taza", + "wordSecond": "tazza", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "servilleta", + "wordSecond": "tovagliolo", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mesa", + "wordSecond": "tavolo", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "silla", + "wordSecond": "sedia", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cocina", + "wordSecond": "cucina", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "refrigerador", + "wordSecond": "frigorifero", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "microondas", + "wordSecond": "microonde", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tostadora", + "wordSecond": "tostapane", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "batidora", + "wordSecond": "frullatore", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "exprimidor", + "wordSecond": "spremiagrumi", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cafetera", + "wordSecond": "caffettiera", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hervir", + "wordSecond": "bollire", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "freír", + "wordSecond": "friggere", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "asar", + "wordSecond": "arrostire", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hornear", + "wordSecond": "cuocere al forno", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cortar", + "wordSecond": "tagliare", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mezclar", + "wordSecond": "mescolare", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "batir", + "wordSecond": "sbattere", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pelar", + "wordSecond": "sbucciare", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lavar", + "wordSecond": "lavare", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "servir", + "wordSecond": "servire", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "comer", + "wordSecond": "mangiare", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "beber", + "wordSecond": "bere", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "desayuno", + "wordSecond": "colazione", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "almuerzo", + "wordSecond": "pranzo", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cena", + "wordSecond": "cena", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sopa", + "wordSecond": "zuppa", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ensalada", + "wordSecond": "insalata", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pizza", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hamburguesa", + "wordSecond": "hamburger", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sándwich", + "wordSecond": "panino", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tortilla", + "wordSecond": "frittata", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "yogur", + "wordSecond": "yogurt", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "galleta", + "wordSecond": "biscotto", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pastel", + "wordSecond": "torta", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "helado", + "wordSecond": "gelato", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "chocolate", + "wordSecond": "cioccolato", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vino", + "wordSecond": "vino", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cerveza", + "wordSecond": "birra", + "createdAt": "2026-02-19T13:48:09.311Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_es_ja_A2.json b/output/2026_02_19_food_cooking_es_ja_A2.json new file mode 100644 index 0000000..c337472 --- /dev/null +++ b/output/2026_02_19_food_cooking_es_ja_A2.json @@ -0,0 +1,1150 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:48:40.232Z", + "metadata": { + "itemCount": 87, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pan", + "wordSecond": "パン (ぱん, pan)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "arroz", + "wordSecond": "ご飯 (ごはん, gohan)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "huevo", + "wordSecond": "卵 (たまご, tamago)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "leche", + "wordSecond": "牛乳 (ぎゅうにゅう, gyūnyū)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "agua", + "wordSecond": "水 (みず, mizu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "café", + "wordSecond": "コーヒー (こーひー, kōhī)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "té", + "wordSecond": "お茶 (おちゃ, ocha)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "azúcar", + "wordSecond": "砂糖 (さとう, satō)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sal", + "wordSecond": "塩 (しお, shio)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "aceite", + "wordSecond": "油 (あぶら, abura)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mantequilla", + "wordSecond": "バター (ばたー, batā)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "queso", + "wordSecond": "チーズ (ちーず, chīzu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pollo", + "wordSecond": "鶏肉 (とりにく, toriniku)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "carne", + "wordSecond": "肉 (にく, niku)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pescado", + "wordSecond": "魚 (さかな, sakana)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "jamón", + "wordSecond": "ハム (はむ, hamu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tomate", + "wordSecond": "トマト (とまと, tomato)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cebolla", + "wordSecond": "玉ねぎ (たまねぎ, tamanegi)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "zanahoria", + "wordSecond": "人参 (にんじん, ninjin)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "patata", + "wordSecond": "じゃがいも (じゃがいも, jagaimo)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lechuga", + "wordSecond": "レタス (れたす, retasu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "manzana", + "wordSecond": "りんご (りんご, ringo)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "plátano", + "wordSecond": "バナナ (ばなな, banana)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "naranja", + "wordSecond": "オレンジ (おれんじ, orenji)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "fresa", + "wordSecond": "いちご (いちご, ichigo)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "uva", + "wordSecond": "ぶどう (ぶどう, budō)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "limón", + "wordSecond": "レモン (れもん, remon)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sandía", + "wordSecond": "スイカ (すいか, suika)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "melón", + "wordSecond": "メロン (めろん, meron)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "piña", + "wordSecond": "パイナップル (ぱいなっぷる, painappuru)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pasta", + "wordSecond": "パスタ (ぱすた, pasuta)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sopa", + "wordSecond": "スープ (すーぷ, sūpu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ensalada", + "wordSecond": "サラダ (さらだ, sarada)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pizza", + "wordSecond": "ピザ (ぴざ, piza)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hamburguesa", + "wordSecond": "ハンバーガー (はんばーがー, hanbāgā)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sándwich", + "wordSecond": "サンドイッチ (さんどいっち, sandoitchi)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tortilla", + "wordSecond": "オムレツ (おむれつ, omuretsu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "yogur", + "wordSecond": "ヨーグルト (よーぐると, yōguruto)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cereal", + "wordSecond": "シリアル (しりある, shiriaru)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "galleta", + "wordSecond": "クッキー (くっきー, kukkī)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "chocolate", + "wordSecond": "チョコレート (ちょこれーと, chokorēto)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "helado", + "wordSecond": "アイスクリーム (あいすくりーむ, aisukurīmu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tarta", + "wordSecond": "ケーキ (けーき, kēki)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pan tostado", + "wordSecond": "トースト (とーすと, tōsuto)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mermelada", + "wordSecond": "ジャム (じゃむ, jamu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "miel", + "wordSecond": "はちみつ (はちみつ, hachimitsu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mostaza", + "wordSecond": "マスタード (ますたーど, masutādo)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "kétchup", + "wordSecond": "ケチャップ (けちゃっぷ, kechappu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mayonesa", + "wordSecond": "マヨネーズ (まよねーず, mayonēzu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "vinagre", + "wordSecond": "酢 (す, su)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ajo", + "wordSecond": "にんにく (にんにく, ninniku)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pimienta", + "wordSecond": "こしょう (こしょう, koshō)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "canela", + "wordSecond": "シナモン (しなもん, shinamon)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "harina", + "wordSecond": "小麦粉 (こむぎこ, komugiko)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "horno", + "wordSecond": "オーブン (おーぶん, ōbun)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sartén", + "wordSecond": "フライパン (ふらいぱん, furaipan)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "olla", + "wordSecond": "鍋 (なべ, nabe)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cuchillo", + "wordSecond": "包丁 (ほうちょう, hōchō)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tenedor", + "wordSecond": "フォーク (ふぉーく, fōku)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cuchara", + "wordSecond": "スプーン (すぷーん, supūn)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "plato", + "wordSecond": "皿 (さら, sara)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "vaso", + "wordSecond": "グラス (ぐらす, gurasu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "taza", + "wordSecond": "カップ (かっぷ, kappu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cocinar", + "wordSecond": "料理する (りょうりする, ryōri suru)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hervir", + "wordSecond": "沸かす (わかす, wakasu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "freír", + "wordSecond": "揚げる (あげる, ageru)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "asar", + "wordSecond": "焼く (やく, yaku)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hornear", + "wordSecond": "焼く (やく, yaku)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cortar", + "wordSecond": "切る (きる, kiru)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pelar", + "wordSecond": "皮をむく (かわをむく, kawa o muku)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mezclar", + "wordSecond": "混ぜる (まぜる, mazeru)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "batir", + "wordSecond": "かき混ぜる (かきまぜる, kakimazeru)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "comer", + "wordSecond": "食べる (たべる, taberu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "beber", + "wordSecond": "飲む (のむ, nomu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "desayunar", + "wordSecond": "朝ごはんを食べる (あさごはんをたべる, asagohan o taberu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "almorzar", + "wordSecond": "昼ごはんを食べる (ひるごはんをたべる, hirugohan o taberu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cenar", + "wordSecond": "晩ごはんを食べる (ばんごはんをたべる, bangohan o taberu)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "picante", + "wordSecond": "辛い (からい, karai)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dulce", + "wordSecond": "甘い (あまい, amai)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "salado", + "wordSecond": "塩辛い (しおからい, shiokarai)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "amargo", + "wordSecond": "苦い (にがい, nigai)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ácido", + "wordSecond": "酸っぱい (すっぱい, suppai)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "caliente", + "wordSecond": "熱い (あつい, atsui)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "frío", + "wordSecond": "冷たい (つめたい, tsumetai)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "delicioso", + "wordSecond": "美味しい (おいしい, oishii)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "malo", + "wordSecond": "まずい (まずい, mazui)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sano", + "wordSecond": "健康的な (けんこうてきな, kenkōtekina)", + "createdAt": "2026-02-19T13:48:40.232Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_es_ko_A2.json b/output/2026_02_19_food_cooking_es_ko_A2.json new file mode 100644 index 0000000..35f49bc --- /dev/null +++ b/output/2026_02_19_food_cooking_es_ko_A2.json @@ -0,0 +1,1202 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:49:31.464Z", + "metadata": { + "itemCount": 91, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pan", + "wordSecond": "빵 (ppang)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "arroz", + "wordSecond": "쌀 (ssal)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "huevo", + "wordSecond": "계란 (gyeran)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "leche", + "wordSecond": "우유 (uyu)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "agua", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "café", + "wordSecond": "커피 (keopi)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "té", + "wordSecond": "차 (cha)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "azúcar", + "wordSecond": "설탕 (seoltang)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sal", + "wordSecond": "소금 (sogeum)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pimienta", + "wordSecond": "후추 (huchu)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "aceite", + "wordSecond": "기름 (gireum)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mantequilla", + "wordSecond": "버터 (beoteo)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "queso", + "wordSecond": "치즈 (chijeu)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pollo", + "wordSecond": "닭고기 (dakgogi)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "carne", + "wordSecond": "고기 (gogi)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pescado", + "wordSecond": "생선 (saengseon)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cerdo", + "wordSecond": "돼지고기 (dwaejigogi)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tomate", + "wordSecond": "토마토 (tomato)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cebolla", + "wordSecond": "양파 (yangpa)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ajo", + "wordSecond": "마늘 (maneul)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "zanahoria", + "wordSecond": "당근 (danggeun)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "patata", + "wordSecond": "감자 (gamja)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lechuga", + "wordSecond": "상추 (sangchu)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "manzana", + "wordSecond": "사과 (sagwa)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "plátano", + "wordSecond": "바나나 (banana)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "naranja", + "wordSecond": "오렌지 (orenji)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "fresa", + "wordSecond": "딸기 (ttalgi)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "uva", + "wordSecond": "포도 (podo)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "limón", + "wordSecond": "레몬 (remon)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "piña", + "wordSecond": "파인애플 (painaepeul)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sandía", + "wordSecond": "수박 (subak)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "melón", + "wordSecond": "멜론 (mellon)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pasta", + "wordSecond": "파스타 (paseuta)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sopa", + "wordSecond": "국 (guk)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ensalada", + "wordSecond": "샐러드 (saelleodeu)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sándwich", + "wordSecond": "샌드위치 (saendeuwichi)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hamburguesa", + "wordSecond": "햄버거 (haembeogeo)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pizza", + "wordSecond": "피자 (pija)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tortilla", + "wordSecond": "토르티야 (toreutiya)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pan tostado", + "wordSecond": "토스트 (toseuteu)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mermelada", + "wordSecond": "잼 (jaem)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cereal", + "wordSecond": "시리얼 (sirieol)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "yogur", + "wordSecond": "요구르트 (yogureuteu)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "helado", + "wordSecond": "아이스크림 (aiseukeurim)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "chocolate", + "wordSecond": "초콜릿 (chokollit)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "galleta", + "wordSecond": "쿠키 (kuki)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pastel", + "wordSecond": "케이크 (keikeu)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "panecillo", + "wordSecond": "빵 (ppang)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "taza", + "wordSecond": "컵 (keop)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "plato", + "wordSecond": "접시 (jeopsi)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cuchara", + "wordSecond": "숟가락 (sutgarak)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tenedor", + "wordSecond": "포크 (pokeu)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cuchillo", + "wordSecond": "나이프 (naipeu)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "vaso", + "wordSecond": "유리잔 (yurijan)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "olla", + "wordSecond": "냄비 (naembi)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sartén", + "wordSecond": "프라이팬 (peuraipaen)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cacerola", + "wordSecond": "냄비 (naembi)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tetera", + "wordSecond": "주전자 (jujeonja)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "batidora", + "wordSecond": "믹서 (mikseo)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "horno", + "wordSecond": "오븐 (obeun)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "microondas", + "wordSecond": "전자레인지 (jeonjareinji)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "nevera", + "wordSecond": "냉장고 (naengjanggo)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "congelador", + "wordSecond": "냉동고 (naengdonggo)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lavavajillas", + "wordSecond": "식기세척기 (sikgisecheokgi)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cocinar", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hervir", + "wordSecond": "끓이다 (kkeurida)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "freír", + "wordSecond": "튀기다 (twigida)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "asar", + "wordSecond": "굽다 (gupda)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hornear", + "wordSecond": "굽다 (gupda)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cortar", + "wordSecond": "자르다 (jareuda)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pelar", + "wordSecond": "껍질을 벗기다 (kkeopjireul beotgida)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mezclar", + "wordSecond": "섞다 (seokkda)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "batir", + "wordSecond": "휘젓다 (hwijeotda)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "calentar", + "wordSecond": "데우다 (deuda)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "enfriar", + "wordSecond": "식히다 (sikhida)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "servir", + "wordSecond": "내놓다 (naenota)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "comer", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "beber", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "desayuno", + "wordSecond": "아침식사 (achimsiksa)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "almuerzo", + "wordSecond": "점심식사 (jeomsimsiksa)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cena", + "wordSecond": "저녁식사 (jeonyeoksiksa)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "merienda", + "wordSecond": "간식 (gansik)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "postre", + "wordSecond": "디저트 (dijeoteu)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "bocadillo", + "wordSecond": "간식 (gansik)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "aperitivo", + "wordSecond": "에피타이저 (epitaijeo)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "especias", + "wordSecond": "향신료 (hyangsinryo)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "vinagre", + "wordSecond": "식초 (sikcho)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mostaza", + "wordSecond": "머스터드 (meoseuteodeu)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "kétchup", + "wordSecond": "케첩 (kecheop)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mayonesa", + "wordSecond": "마요네즈 (mayonejeu)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "salsa", + "wordSecond": "소스 (soseu)", + "createdAt": "2026-02-19T13:49:31.464Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_es_pl_A2.json b/output/2026_02_19_food_cooking_es_pl_A2.json new file mode 100644 index 0000000..259ee4e --- /dev/null +++ b/output/2026_02_19_food_cooking_es_pl_A2.json @@ -0,0 +1,1189 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:49:49.278Z", + "metadata": { + "itemCount": 90, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pan", + "wordSecond": "chleb", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "arroz", + "wordSecond": "ryż", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "huevo", + "wordSecond": "jajko", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "leche", + "wordSecond": "mleko", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "queso", + "wordSecond": "ser", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mantequilla", + "wordSecond": "masło", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "aceite", + "wordSecond": "olej", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sal", + "wordSecond": "sól", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pimienta", + "wordSecond": "pieprz", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "azúcar", + "wordSecond": "cukier", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "agua", + "wordSecond": "woda", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "café", + "wordSecond": "kawa", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "té", + "wordSecond": "herbata", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "jugo", + "wordSecond": "sok", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "vino", + "wordSecond": "wino", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cerveza", + "wordSecond": "piwo", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "manzana", + "wordSecond": "jabłko", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "plátano", + "wordSecond": "banan", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "naranja", + "wordSecond": "pomarańcza", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "fresa", + "wordSecond": "truskawka", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "uva", + "wordSecond": "winogrono", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "limón", + "wordSecond": "cytryna", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tomate", + "wordSecond": "pomidor", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cebolla", + "wordSecond": "cebula", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "zanahoria", + "wordSecond": "marchewka", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "patata", + "wordSecond": "ziemniak", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "lechuga", + "wordSecond": "sałata", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pimiento", + "wordSecond": "papryka", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ajo", + "wordSecond": "czosnek", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pollo", + "wordSecond": "kurczak", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "carne", + "wordSecond": "mięso", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pescado", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cerdo", + "wordSecond": "wieprzowina", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ternera", + "wordSecond": "wołowina", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "jamón", + "wordSecond": "szynka", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "salchicha", + "wordSecond": "kiełbasa", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sopa", + "wordSecond": "zupa", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ensalada", + "wordSecond": "sałatka", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pizza", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pasta", + "wordSecond": "makaron", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sándwich", + "wordSecond": "kanapka", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tortilla", + "wordSecond": "omlet", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "yogur", + "wordSecond": "jogurt", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cereal", + "wordSecond": "płatki", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "galleta", + "wordSecond": "ciastko", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pastel", + "wordSecond": "ciasto", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "helado", + "wordSecond": "lody", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "chocolate", + "wordSecond": "czekolada", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "miel", + "wordSecond": "miód", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "vinagre", + "wordSecond": "ocet", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mostaza", + "wordSecond": "musztarda", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mayonesa", + "wordSecond": "majonez", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "kétchup", + "wordSecond": "keczup", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pan tostado", + "wordSecond": "tost", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mermelada", + "wordSecond": "dżem", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mantequilla de cacahuete", + "wordSecond": "masło orzechowe", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hamburguesa", + "wordSecond": "hamburger", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "patatas fritas", + "wordSecond": "frytki", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "arroz con pollo", + "wordSecond": "ryż z kurczakiem", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "paella", + "wordSecond": "paella", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "taco", + "wordSecond": "taco", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sushi", + "wordSecond": "sushi", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cuchillo", + "wordSecond": "nóż", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tenedor", + "wordSecond": "widelec", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cuchara", + "wordSecond": "łyżka", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "plato", + "wordSecond": "talerz", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "vaso", + "wordSecond": "szklanka", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "taza", + "wordSecond": "filiżanka", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "olla", + "wordSecond": "garnek", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sartén", + "wordSecond": "patelnia", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cacerola", + "wordSecond": "rondel", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "licuadora", + "wordSecond": "blender", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "horno", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "microondas", + "wordSecond": "kuchenka mikrofalowa", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "nevera", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cocinar", + "wordSecond": "gotować", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hornear", + "wordSecond": "piec", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "freír", + "wordSecond": "smażyć", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hervir", + "wordSecond": "gotować (wrzątek)", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "asar", + "wordSecond": "piec (mięso)", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cortar", + "wordSecond": "kroić", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pelar", + "wordSecond": "obierać", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "batir", + "wordSecond": "ubijać", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mezclar", + "wordSecond": "mieszać", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "servir", + "wordSecond": "podawać", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "comer", + "wordSecond": "jeść", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "beber", + "wordSecond": "pić", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "desayuno", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "almuerzo", + "wordSecond": "lunch", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cena", + "wordSecond": "kolacja", + "createdAt": "2026-02-19T13:49:49.278Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_es_pt_A2.json b/output/2026_02_19_food_cooking_es_pt_A2.json new file mode 100644 index 0000000..3332f21 --- /dev/null +++ b/output/2026_02_19_food_cooking_es_pt_A2.json @@ -0,0 +1,1137 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:37:29.924Z", + "metadata": { + "itemCount": 86, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pan", + "wordSecond": "pão", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "leche", + "wordSecond": "leite", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "huevo", + "wordSecond": "ovo", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mantequilla", + "wordSecond": "manteiga", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "queso", + "wordSecond": "queijo", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "jamón", + "wordSecond": "presunto", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "café", + "wordSecond": "café", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "té", + "wordSecond": "chá", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "azúcar", + "wordSecond": "açúcar", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sal", + "wordSecond": "sal", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pimienta", + "wordSecond": "pimenta", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aceite", + "wordSecond": "óleo", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vinagre", + "wordSecond": "vinagre", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "arroz", + "wordSecond": "arroz", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pasta", + "wordSecond": "macarrão", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "frijoles", + "wordSecond": "feijão", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pollo", + "wordSecond": "frango", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "carne", + "wordSecond": "carne", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pescado", + "wordSecond": "peixe", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cerdo", + "wordSecond": "porco", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tomate", + "wordSecond": "tomate", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cebolla", + "wordSecond": "cebola", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ajo", + "wordSecond": "alho", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "zanahoria", + "wordSecond": "cenoura", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "patata", + "wordSecond": "batata", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lechuga", + "wordSecond": "alface", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "manzana", + "wordSecond": "maçã", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "plátano", + "wordSecond": "banana", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "naranja", + "wordSecond": "laranja", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "uva", + "wordSecond": "uva", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fresa", + "wordSecond": "morango", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "limón", + "wordSecond": "limão", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "agua", + "wordSecond": "água", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "jugo", + "wordSecond": "suco", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vino", + "wordSecond": "vinho", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cerveza", + "wordSecond": "cerveja", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sopa", + "wordSecond": "sopa", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ensalada", + "wordSecond": "salada", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sándwich", + "wordSecond": "sanduíche", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hamburguesa", + "wordSecond": "hambúrguer", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pizza", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tortilla", + "wordSecond": "omelete", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "yogur", + "wordSecond": "iogurte", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "galleta", + "wordSecond": "biscoito", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pastel", + "wordSecond": "bolo", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "helado", + "wordSecond": "sorvete", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "chocolate", + "wordSecond": "chocolate", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mermelada", + "wordSecond": "geleia", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "miel", + "wordSecond": "mel", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mostaza", + "wordSecond": "mostarda", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mayonesa", + "wordSecond": "maionese", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "kétchup", + "wordSecond": "ketchup", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "harina", + "wordSecond": "farinha", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "horno", + "wordSecond": "forno", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "olla", + "wordSecond": "panela", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sartén", + "wordSecond": "frigideira", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuchillo", + "wordSecond": "faca", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tenedor", + "wordSecond": "garfo", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuchara", + "wordSecond": "colher", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "plato", + "wordSecond": "prato", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vaso", + "wordSecond": "copo", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "taza", + "wordSecond": "xícara", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "servilleta", + "wordSecond": "guardanapo", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cocinar", + "wordSecond": "cozinhar", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hervir", + "wordSecond": "ferver", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "freír", + "wordSecond": "fritar", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "asar", + "wordSecond": "assar", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hornear", + "wordSecond": "assar no forno", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cortar", + "wordSecond": "cortar", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pelar", + "wordSecond": "descascar", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mezclar", + "wordSecond": "misturar", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "batir", + "wordSecond": "bater", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "calentar", + "wordSecond": "aquecer", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "servir", + "wordSecond": "servir", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "comer", + "wordSecond": "comer", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "beber", + "wordSecond": "beber", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desayuno", + "wordSecond": "café da manhã", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "almuerzo", + "wordSecond": "almoço", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cena", + "wordSecond": "jantar", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "postre", + "wordSecond": "sobremesa", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aperitivo", + "wordSecond": "aperitivo", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "picante", + "wordSecond": "picante", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dulce", + "wordSecond": "doce", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "salado", + "wordSecond": "salgado", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "caliente", + "wordSecond": "quente", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "frío", + "wordSecond": "frio", + "createdAt": "2026-02-19T13:37:29.924Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_es_zh_A2.json b/output/2026_02_19_food_cooking_es_zh_A2.json new file mode 100644 index 0000000..44cf4dd --- /dev/null +++ b/output/2026_02_19_food_cooking_es_zh_A2.json @@ -0,0 +1,1137 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:49:04.735Z", + "metadata": { + "itemCount": 86, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pan", + "wordSecond": "面包 (miànbāo)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "arroz", + "wordSecond": "米饭 (mǐfàn)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "huevo", + "wordSecond": "鸡蛋 (jīdàn)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "leche", + "wordSecond": "牛奶 (niúnǎi)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "agua", + "wordSecond": "水 (shuǐ)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "café", + "wordSecond": "咖啡 (kāfēi)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "té", + "wordSecond": "茶 (chá)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "azúcar", + "wordSecond": "糖 (táng)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sal", + "wordSecond": "盐 (yán)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "aceite", + "wordSecond": "油 (yóu)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mantequilla", + "wordSecond": "黄油 (huángyóu)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "queso", + "wordSecond": "奶酪 (nǎilào)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pollo", + "wordSecond": "鸡肉 (jīròu)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "carne", + "wordSecond": "肉 (ròu)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pescado", + "wordSecond": "鱼 (yú)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cerdo", + "wordSecond": "猪肉 (zhūròu)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tomate", + "wordSecond": "番茄 (fānqié)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cebolla", + "wordSecond": "洋葱 (yángcōng)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "zanahoria", + "wordSecond": "胡萝卜 (húluóbo)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "patata", + "wordSecond": "土豆 (tǔdòu)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "lechuga", + "wordSecond": "生菜 (shēngcài)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "manzana", + "wordSecond": "苹果 (píngguǒ)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "plátano", + "wordSecond": "香蕉 (xiāngjiāo)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "naranja", + "wordSecond": "橙子 (chéngzi)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "uva", + "wordSecond": "葡萄 (pútáo)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "fresa", + "wordSecond": "草莓 (cǎoméi)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "limón", + "wordSecond": "柠檬 (níngméng)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sandía", + "wordSecond": "西瓜 (xīguā)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "piña", + "wordSecond": "菠萝 (bōluó)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pasta", + "wordSecond": "意大利面 (yìdàlì miàn)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sopa", + "wordSecond": "汤 (tāng)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ensalada", + "wordSecond": "沙拉 (shālā)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pizza", + "wordSecond": "披萨 (pīsà)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hamburguesa", + "wordSecond": "汉堡包 (hànbǎobāo)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sándwich", + "wordSecond": "三明治 (sānmíngzhì)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tortilla", + "wordSecond": "煎蛋卷 (jiāndànjuǎn)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "yogur", + "wordSecond": "酸奶 (suānnǎi)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cereal", + "wordSecond": "麦片 (màipiàn)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "galleta", + "wordSecond": "饼干 (bǐnggān)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "chocolate", + "wordSecond": "巧克力 (qiǎokèlì)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "helado", + "wordSecond": "冰淇淋 (bīngqílín)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tarta", + "wordSecond": "蛋糕 (dàngāo)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pan tostado", + "wordSecond": "吐司 (tǔsī)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mermelada", + "wordSecond": "果酱 (guǒjiàng)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "miel", + "wordSecond": "蜂蜜 (fēngmì)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "vinagre", + "wordSecond": "醋 (cù)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pimienta", + "wordSecond": "胡椒 (hújiāo)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ajo", + "wordSecond": "大蒜 (dàsuàn)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "perejil", + "wordSecond": "香菜 (xiāngcài)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "lima", + "wordSecond": "青柠 (qīngníng)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "aguacate", + "wordSecond": "牛油果 (niúyóuguǒ)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "maíz", + "wordSecond": "玉米 (yùmǐ)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "champiñón", + "wordSecond": "蘑菇 (mógū)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "espinaca", + "wordSecond": "菠菜 (bōcài)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "brócoli", + "wordSecond": "西兰花 (xīlánhuā)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pimiento", + "wordSecond": "甜椒 (tiánjiāo)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pepino", + "wordSecond": "黄瓜 (huángguā)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "berenjena", + "wordSecond": "茄子 (qiézi)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "calabacín", + "wordSecond": "西葫芦 (xīhúlu)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pavo", + "wordSecond": "火鸡 (huǒjī)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "jamón", + "wordSecond": "火腿 (huǒtuǐ)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "salchicha", + "wordSecond": "香肠 (xiāngcháng)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "atún", + "wordSecond": "金枪鱼 (jīnqiāngyú)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "camarón", + "wordSecond": "虾 (xiā)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cuchara", + "wordSecond": "勺子 (sháozi)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tenedor", + "wordSecond": "叉子 (chāzi)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cuchillo", + "wordSecond": "刀子 (dāozi)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "plato", + "wordSecond": "盘子 (pánzi)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "vaso", + "wordSecond": "杯子 (bēizi)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "taza", + "wordSecond": "茶杯 (chábēi)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "olla", + "wordSecond": "锅 (guō)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sartén", + "wordSecond": "平底锅 (píngdǐguō)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "batidora", + "wordSecond": "搅拌机 (jiǎobànjī)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "horno", + "wordSecond": "烤箱 (kǎoxiāng)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "microondas", + "wordSecond": "微波炉 (wēibōlú)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nevera", + "wordSecond": "冰箱 (bīngxiāng)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cocinar", + "wordSecond": "做饭 (zuòfàn)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hervir", + "wordSecond": "煮 (zhǔ)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "freír", + "wordSecond": "炸 (zhá)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hornear", + "wordSecond": "烤 (kǎo)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cortar", + "wordSecond": "切 (qiē)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mezclar", + "wordSecond": "混合 (hùnhé)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "comer", + "wordSecond": "吃 (chī)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "beber", + "wordSecond": "喝 (hē)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "comprar", + "wordSecond": "买 (mǎi)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "preparar", + "wordSecond": "准备 (zhǔnbèi)", + "createdAt": "2026-02-19T13:49:04.735Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_fr_it_A2.json b/output/2026_02_19_food_cooking_fr_it_A2.json new file mode 100644 index 0000000..0a5c2a7 --- /dev/null +++ b/output/2026_02_19_food_cooking_fr_it_A2.json @@ -0,0 +1,1189 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:54:41.064Z", + "metadata": { + "itemCount": 90, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pain", + "wordSecond": "pane", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "beurre", + "wordSecond": "burro", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fromage", + "wordSecond": "formaggio", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "lait", + "wordSecond": "latte", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "œuf", + "wordSecond": "uovo", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "jambon", + "wordSecond": "prosciutto", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "confiture", + "wordSecond": "marmellata", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "café", + "wordSecond": "caffè", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "thé", + "wordSecond": "tè", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sucre", + "wordSecond": "zucchero", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sel", + "wordSecond": "sale", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "poivre", + "wordSecond": "pepe", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "huile", + "wordSecond": "olio", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vinaigre", + "wordSecond": "aceto", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "farine", + "wordSecond": "farina", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "riz", + "wordSecond": "riso", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pâtes", + "wordSecond": "pasta", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pomme de terre", + "wordSecond": "patata", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "carotte", + "wordSecond": "carota", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tomate", + "wordSecond": "pomodoro", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "salade", + "wordSecond": "insalata", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "oignon", + "wordSecond": "cipolla", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ail", + "wordSecond": "aglio", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "citron", + "wordSecond": "limone", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "orange", + "wordSecond": "arancia", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pomme", + "wordSecond": "mela", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "banane", + "wordSecond": "banana", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fraise", + "wordSecond": "fragola", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "raisin", + "wordSecond": "uva", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pêche", + "wordSecond": "pesca", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "poire", + "wordSecond": "pera", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cerise", + "wordSecond": "ciliegia", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "poulet", + "wordSecond": "pollo", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bœuf", + "wordSecond": "manzo", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "porc", + "wordSecond": "maiale", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "poisson", + "wordSecond": "pesce", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "saucisse", + "wordSecond": "salsiccia", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "soupe", + "wordSecond": "zuppa", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sandwich", + "wordSecond": "panino", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pizza", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "salade", + "wordSecond": "insalata", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "omelette", + "wordSecond": "frittata", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "crêpe", + "wordSecond": "crespella", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "gâteau", + "wordSecond": "torta", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "glace", + "wordSecond": "gelato", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chocolat", + "wordSecond": "cioccolato", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "biscuit", + "wordSecond": "biscotto", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "yaourt", + "wordSecond": "yogurt", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "eau", + "wordSecond": "acqua", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vin", + "wordSecond": "vino", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bière", + "wordSecond": "birra", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "jus", + "wordSecond": "succo", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "couteau", + "wordSecond": "coltello", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fourchette", + "wordSecond": "forchetta", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cuillère", + "wordSecond": "cucchiaio", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "assiette", + "wordSecond": "piatto", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "verre", + "wordSecond": "bicchiere", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tasse", + "wordSecond": "tazza", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bol", + "wordSecond": "ciotola", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "poêle", + "wordSecond": "padella", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "casserole", + "wordSecond": "pentola", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "four", + "wordSecond": "forno", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "réfrigérateur", + "wordSecond": "frigorifero", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cuisinière", + "wordSecond": "cucina", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mélanger", + "wordSecond": "mescolare", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "couper", + "wordSecond": "tagliare", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cuire", + "wordSecond": "cuocere", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bouillir", + "wordSecond": "bollire", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "frire", + "wordSecond": "friggere", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "griller", + "wordSecond": "grigliare", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "peler", + "wordSecond": "sbucciare", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "laver", + "wordSecond": "lavare", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "manger", + "wordSecond": "mangiare", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "boire", + "wordSecond": "bere", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "préparer", + "wordSecond": "preparare", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "servir", + "wordSecond": "servire", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "déjeuner", + "wordSecond": "pranzo", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dîner", + "wordSecond": "cena", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "petit déjeuner", + "wordSecond": "colazione", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "goûter", + "wordSecond": "merenda", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "restaurant", + "wordSecond": "ristorante", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "marché", + "wordSecond": "mercato", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "supermarché", + "wordSecond": "supermercato", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "recette", + "wordSecond": "ricetta", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ingrédient", + "wordSecond": "ingrediente", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "épice", + "wordSecond": "spezia", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "doux", + "wordSecond": "dolce", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "salé", + "wordSecond": "salato", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "acide", + "wordSecond": "acido", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "amer", + "wordSecond": "amaro", + "createdAt": "2026-02-19T13:54:41.064Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_fr_ja_A2.json b/output/2026_02_19_food_cooking_fr_ja_A2.json new file mode 100644 index 0000000..8f75ed6 --- /dev/null +++ b/output/2026_02_19_food_cooking_fr_ja_A2.json @@ -0,0 +1,1137 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:55:11.749Z", + "metadata": { + "itemCount": 86, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pain", + "wordSecond": "パン (ぱん, pan)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "riz", + "wordSecond": "米 (こめ, kome)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "eau", + "wordSecond": "水 (みず, mizu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "lait", + "wordSecond": "牛乳 (ぎゅうにゅう, gyūnyū)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "œuf", + "wordSecond": "卵 (たまご, tamago)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "fromage", + "wordSecond": "チーズ (ちーず, chīzu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "beurre", + "wordSecond": "バター (ばたー, batā)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sucre", + "wordSecond": "砂糖 (さとう, satō)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sel", + "wordSecond": "塩 (しお, shio)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "huile", + "wordSecond": "油 (あぶら, abura)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "poulet", + "wordSecond": "鶏肉 (とりにく, toriniku)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bœuf", + "wordSecond": "牛肉 (ぎゅうにく, gyūniku)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "porc", + "wordSecond": "豚肉 (ぶたにく, butaniku)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "poisson", + "wordSecond": "魚 (さかな, sakana)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "jambon", + "wordSecond": "ハム (はむ, hamu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "saucisse", + "wordSecond": "ソーセージ (そーせーじ, sōsēji)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pomme", + "wordSecond": "りんご (りんご, ringo)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "banane", + "wordSecond": "バナナ (ばなな, banana)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "orange", + "wordSecond": "オレンジ (おれんじ, orenji)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "fraise", + "wordSecond": "いちご (いちご, ichigo)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "raisin", + "wordSecond": "ぶどう (ぶどう, budō)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tomate", + "wordSecond": "トマト (とまと, tomato)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "carotte", + "wordSecond": "にんじん (にんじん, ninjin)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pomme de terre", + "wordSecond": "じゃがいも (じゃがいも, jagaimo)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "oignon", + "wordSecond": "玉ねぎ (たまねぎ, tamanegi)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "salade", + "wordSecond": "レタス (れたす, retasu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chou", + "wordSecond": "キャベツ (きゃべつ, kyabetsu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "brocoli", + "wordSecond": "ブロッコリー (ぶろっこりー, burokkorī)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "épinard", + "wordSecond": "ほうれん草 (ほうれんそう, hōrensō)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "poivron", + "wordSecond": "ピーマン (ぴーまん, pīman)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "concombre", + "wordSecond": "きゅうり (きゅうり, kyūri)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "champignon", + "wordSecond": "きのこ (きのこ, kinoko)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "farine", + "wordSecond": "小麦粉 (こむぎこ, komugiko)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pâtes", + "wordSecond": "パスタ (ぱすた, pasuta)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "soupe", + "wordSecond": "スープ (すーぷ, sūpu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sandwich", + "wordSecond": "サンドイッチ (さんどいっち, sandoitchi)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "hamburger", + "wordSecond": "ハンバーガー (はんばーがー, hanbāgā)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pizza", + "wordSecond": "ピザ (ぴざ, piza)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sushi", + "wordSecond": "寿司 (すし, sushi)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ramen", + "wordSecond": "ラーメン (らーめん, rāmen)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "curry", + "wordSecond": "カレー (かれー, karē)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "omelette", + "wordSecond": "オムレツ (おむれつ, omuretsu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "crêpe", + "wordSecond": "クレープ (くれーぷ, kurēpu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "gâteau", + "wordSecond": "ケーキ (けーき, kēki)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "glace", + "wordSecond": "アイスクリーム (あいすくりーむ, aisukurīmu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "café", + "wordSecond": "コーヒー (こーひー, kōhī)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "thé", + "wordSecond": "お茶 (おちゃ, ocha)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "jus", + "wordSecond": "ジュース (じゅーす, jūsu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bière", + "wordSecond": "ビール (びーる, bīru)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "vin", + "wordSecond": "ワイン (わいん, wain)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "couteau", + "wordSecond": "ナイフ (ないふ, naifu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "fourchette", + "wordSecond": "フォーク (ふぉーく, fōku)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cuillère", + "wordSecond": "スプーン (すぷーん, supūn)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "assiette", + "wordSecond": "皿 (さら, sara)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bol", + "wordSecond": "ボウル (ぼうる, bōru)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "verre", + "wordSecond": "グラス (ぐらす, gurasu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tasse", + "wordSecond": "カップ (かっぷ, kappu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "poêle", + "wordSecond": "フライパン (ふらいぱん, furaipan)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "casserole", + "wordSecond": "鍋 (なべ, nabe)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "four", + "wordSecond": "オーブン (おーぶん, ōbun)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "réfrigérateur", + "wordSecond": "冷蔵庫 (れいぞうこ, reizōko)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "micro-ondes", + "wordSecond": "電子レンジ (でんしれんじ, denshirenji)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cuisiner", + "wordSecond": "料理する (りょうりする, ryōri suru)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "manger", + "wordSecond": "食べる (たべる, taberu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "boire", + "wordSecond": "飲む (のむ, nomu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "couper", + "wordSecond": "切る (きる, kiru)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mélanger", + "wordSecond": "混ぜる (まぜる, mazeru)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "faire cuire", + "wordSecond": "焼く (やく, yaku)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bouillir", + "wordSecond": "沸かす (わかす, wakasu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "frire", + "wordSecond": "揚げる (あげる, ageru)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chauffer", + "wordSecond": "温める (あたためる, atatameru)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "goûter", + "wordSecond": "味見する (あじみする, ajimi suru)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "servir", + "wordSecond": "出す (だす, dasu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "petit déjeuner", + "wordSecond": "朝食 (ちょうしょく, chōshoku)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "déjeuner", + "wordSecond": "昼食 (ちゅうしょく, chūshoku)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "dîner", + "wordSecond": "夕食 (ゆうしょく, yūshoku)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "dessert", + "wordSecond": "デザート (でざーと, dezāto)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "collation", + "wordSecond": "おやつ (おやつ, oyatsu)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "restaurant", + "wordSecond": "レストラン (れすとらん, resutoran)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "super marché", + "wordSecond": "スーパー (すーぱー, sūpā)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cuisine", + "wordSecond": "台所 (だいどころ, daidokoro)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "recette", + "wordSecond": "レシピ (れしぴ, reshipi)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "épicé", + "wordSecond": "辛い (からい, karai)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "doux", + "wordSecond": "甘い (あまい, amai)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "salé", + "wordSecond": "塩辛い (しおからい, shiokarai)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "acide", + "wordSecond": "酸っぱい (すっぱい, suppai)", + "createdAt": "2026-02-19T13:55:11.749Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_fr_ko_A2.json b/output/2026_02_19_food_cooking_fr_ko_A2.json new file mode 100644 index 0000000..8dcae1c --- /dev/null +++ b/output/2026_02_19_food_cooking_fr_ko_A2.json @@ -0,0 +1,1137 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:55:57.358Z", + "metadata": { + "itemCount": 86, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pain", + "wordSecond": "빵 (ppang)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "riz", + "wordSecond": "쌀 (ssal)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "œuf", + "wordSecond": "계란 (gyeran)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "lait", + "wordSecond": "우유 (uyu)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "fromage", + "wordSecond": "치즈 (chijeu)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "beurre", + "wordSecond": "버터 (beoteo)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sucre", + "wordSecond": "설탕 (seoltang)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sel", + "wordSecond": "소금 (sogeum)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "poivre", + "wordSecond": "후추 (huchu)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "huile", + "wordSecond": "기름 (gireum)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "eau", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "café", + "wordSecond": "커피 (keopi)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "thé", + "wordSecond": "차 (cha)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "jus", + "wordSecond": "주스 (juseu)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "viande", + "wordSecond": "고기 (gogi)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "poulet", + "wordSecond": "닭고기 (dakgogi)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "poisson", + "wordSecond": "생선 (saengseon)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "légume", + "wordSecond": "야채 (yachae)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "fruit", + "wordSecond": "과일 (gwail)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pomme", + "wordSecond": "사과 (sagwa)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "banane", + "wordSecond": "바나나 (banana)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "orange", + "wordSecond": "오렌지 (orenji)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "fraise", + "wordSecond": "딸기 (ttalgi)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tomate", + "wordSecond": "토마토 (tomato)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "carotte", + "wordSecond": "당근 (danggeun)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "oignon", + "wordSecond": "양파 (yangpa)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pomme de terre", + "wordSecond": "감자 (gamja)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "salade", + "wordSecond": "샐러드 (saelleodeu)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "soupe", + "wordSecond": "수프 (supeu)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sandwich", + "wordSecond": "샌드위치 (saendeuwichi)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pizza", + "wordSecond": "피자 (pija)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "hamburger", + "wordSecond": "햄버거 (haembeogeo)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "frites", + "wordSecond": "감자튀김 (gamja twigim)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pâtes", + "wordSecond": "파스타 (paseuta)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "riz frit", + "wordSecond": "볶음밥 (bokkeumbap)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pain grillé", + "wordSecond": "토스트 (toseuteu)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "céréales", + "wordSecond": "시리얼 (sirieol)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "yaourt", + "wordSecond": "요구르트 (yogureuteu)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "glace", + "wordSecond": "아이스크림 (aiseukeurim)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "gâteau", + "wordSecond": "케이크 (keikeu)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chocolat", + "wordSecond": "초콜릿 (chokollit)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "bonbon", + "wordSecond": "사탕 (satang)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "petit déjeuner", + "wordSecond": "아침 식사 (achim siksa)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "déjeuner", + "wordSecond": "점심 식사 (jeomsim siksa)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dîner", + "wordSecond": "저녁 식사 (jeonyeok siksa)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cuisiner", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "manger", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "boire", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "couper", + "wordSecond": "자르다 (jareuda)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "mélanger", + "wordSecond": "섞다 (seokkda)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chauffer", + "wordSecond": "데우다 (deuda)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "frire", + "wordSecond": "튀기다 (twigida)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "bouillir", + "wordSecond": "끓이다 (kkeurida)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cuire au four", + "wordSecond": "굽다 (gupda)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "assaisonner", + "wordSecond": "양념하다 (yangnyeomhada)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "goûter", + "wordSecond": "맛보다 (matboda)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "servir", + "wordSecond": "내놓다 (naenota)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "nourriture", + "wordSecond": "음식 (eumsik)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "repas", + "wordSecond": "식사 (siksa)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "assiette", + "wordSecond": "접시 (jeopsi)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "bol", + "wordSecond": "그릇 (geureut)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "verre", + "wordSecond": "유리잔 (yurijan)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tasse", + "wordSecond": "컵 (keop)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "fourchette", + "wordSecond": "포크 (pokeu)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "couteau", + "wordSecond": "칼 (kal)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cuillère", + "wordSecond": "숟가락 (sutgarak)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "poêle", + "wordSecond": "프라이팬 (peuraipaen)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "casserole", + "wordSecond": "냄비 (naembi)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "four", + "wordSecond": "오븐 (obeun)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "réfrigérateur", + "wordSecond": "냉장고 (naengjanggo)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "micro-ondes", + "wordSecond": "전자레인지 (jeonjareinji)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "évier", + "wordSecond": "싱크대 (singkeudae)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "table", + "wordSecond": "식탁 (siktak)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chaise", + "wordSecond": "의자 (uija)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "restaurant", + "wordSecond": "레스토랑 (reseutorang)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "super marché", + "wordSecond": "슈퍼마켓 (syupeomaket)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "marché", + "wordSecond": "시장 (sijang)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "recette", + "wordSecond": "레시피 (resipi)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "ingrédient", + "wordSecond": "재료 (jaeryo)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "épicé", + "wordSecond": "매운 (maeun)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "doux", + "wordSecond": "달콤한 (dalkomhan)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "salé", + "wordSecond": "짜게 (jjage)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sucré", + "wordSecond": "달게 (dalge)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chaud", + "wordSecond": "뜨거운 (tteugeoun)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "froid", + "wordSecond": "차가운 (chagaun)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "frais", + "wordSecond": "신선한 (sinseonhan)", + "createdAt": "2026-02-19T13:55:57.358Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_fr_pl_A2.json b/output/2026_02_19_food_cooking_fr_pl_A2.json new file mode 100644 index 0000000..b3bac71 --- /dev/null +++ b/output/2026_02_19_food_cooking_fr_pl_A2.json @@ -0,0 +1,1163 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:56:14.687Z", + "metadata": { + "itemCount": 88, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pain", + "wordSecond": "chleb", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "beurre", + "wordSecond": "masło", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "fromage", + "wordSecond": "ser", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "lait", + "wordSecond": "mleko", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "œuf", + "wordSecond": "jajko", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sucre", + "wordSecond": "cukier", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sel", + "wordSecond": "sól", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "poivre", + "wordSecond": "pieprz", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "huile", + "wordSecond": "olej", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "vinaigre", + "wordSecond": "ocet", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "farine", + "wordSecond": "mąka", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "riz", + "wordSecond": "ryż", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pâtes", + "wordSecond": "makaron", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pomme", + "wordSecond": "jabłko", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "banane", + "wordSecond": "banan", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "orange", + "wordSecond": "pomarańcza", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "fraise", + "wordSecond": "truskawka", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "raisin", + "wordSecond": "winogrono", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "tomate", + "wordSecond": "pomidor", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "carotte", + "wordSecond": "marchewka", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "oignon", + "wordSecond": "cebula", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pomme de terre", + "wordSecond": "ziemniak", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "salade", + "wordSecond": "sałata", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "concombre", + "wordSecond": "ogórek", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "champignon", + "wordSecond": "grzyb", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "poivron", + "wordSecond": "papryka", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "viande", + "wordSecond": "mięso", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "poulet", + "wordSecond": "kurczak", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "bœuf", + "wordSecond": "wołowina", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "porc", + "wordSecond": "wieprzowina", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "poisson", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "jambon", + "wordSecond": "szynka", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "saucisse", + "wordSecond": "kiełbasa", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "eau", + "wordSecond": "woda", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "thé", + "wordSecond": "herbata", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "café", + "wordSecond": "kawa", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "jus", + "wordSecond": "sok", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "vin", + "wordSecond": "wino", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "bière", + "wordSecond": "piwo", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "yaourt", + "wordSecond": "jogurt", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "crème", + "wordSecond": "śmietana", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "glace", + "wordSecond": "lody", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "gâteau", + "wordSecond": "ciasto", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "biscuit", + "wordSecond": "ciastko", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chocolat", + "wordSecond": "czekolada", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "miel", + "wordSecond": "miód", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "confiture", + "wordSecond": "dżem", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "céréales", + "wordSecond": "płatki", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sandwich", + "wordSecond": "kanapka", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "soupe", + "wordSecond": "zupa", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "salade", + "wordSecond": "sałatka", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pizza", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "hamburger", + "wordSecond": "hamburger", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "frites", + "wordSecond": "frytki", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "omelette", + "wordSecond": "omlet", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "crêpe", + "wordSecond": "naleśnik", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "tarte", + "wordSecond": "tarta", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "assiette", + "wordSecond": "talerz", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "verre", + "wordSecond": "szklanka", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "tasse", + "wordSecond": "filiżanka", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "couteau", + "wordSecond": "nóż", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "fourchette", + "wordSecond": "widelec", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cuillère", + "wordSecond": "łyżka", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "bol", + "wordSecond": "miska", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "poêle", + "wordSecond": "patelnia", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "casserole", + "wordSecond": "garnek", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "four", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "réfrigérateur", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "micro-ondes", + "wordSecond": "mikrofalówka", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cuisiner", + "wordSecond": "gotować", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "mélanger", + "wordSecond": "mieszać", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "couper", + "wordSecond": "kroić", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "éplucher", + "wordSecond": "obierać", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "faire frire", + "wordSecond": "smażyć", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "faire bouillir", + "wordSecond": "gotować (wrzenie)", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rôtir", + "wordSecond": "piec", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "griller", + "wordSecond": "grillować", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cuire au four", + "wordSecond": "piec (w piekarniku)", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "servir", + "wordSecond": "podawać", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "manger", + "wordSecond": "jeść", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "boire", + "wordSecond": "pić", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "petit déjeuner", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "déjeuner", + "wordSecond": "obiad", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dîner", + "wordSecond": "kolacja", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "goûter", + "wordSecond": "przekąska", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "restaurant", + "wordSecond": "restauracja", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "supermarché", + "wordSecond": "supermarket", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "marché", + "wordSecond": "targ", + "createdAt": "2026-02-19T13:56:14.687Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_fr_zh_A2.json b/output/2026_02_19_food_cooking_fr_zh_A2.json new file mode 100644 index 0000000..d2afea1 --- /dev/null +++ b/output/2026_02_19_food_cooking_fr_zh_A2.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:55:32.291Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pain", + "wordSecond": "面包 (mian bao)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "beurre", + "wordSecond": "黄油 (huang you)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "confiture", + "wordSecond": "果酱 (guo jiang)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "œuf", + "wordSecond": "鸡蛋 (ji dan)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lait", + "wordSecond": "牛奶 (niu nai)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "café", + "wordSecond": "咖啡 (ka fei)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "thé", + "wordSecond": "茶 (cha)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "jus d'orange", + "wordSecond": "橙汁 (cheng zhi)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "céréales", + "wordSecond": "麦片 (mai pian)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "yaourt", + "wordSecond": "酸奶 (suan nai)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fromage", + "wordSecond": "奶酪 (nai lao)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "jambon", + "wordSecond": "火腿 (huo tui)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "saucisse", + "wordSecond": "香肠 (xiang chang)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sandwich", + "wordSecond": "三明治 (san ming zhi)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "salade", + "wordSecond": "沙拉 (sha la)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "soupe", + "wordSecond": "汤 (tang)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "poulet", + "wordSecond": "鸡肉 (ji rou)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "bœuf", + "wordSecond": "牛肉 (niu rou)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "porc", + "wordSecond": "猪肉 (zhu rou)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "poisson", + "wordSecond": "鱼 (yu)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "riz", + "wordSecond": "米饭 (mi fan)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pâtes", + "wordSecond": "意大利面 (yi da li mian)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pomme de terre", + "wordSecond": "土豆 (tu dou)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "carotte", + "wordSecond": "胡萝卜 (hu luo bo)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tomate", + "wordSecond": "番茄 (fan qie)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "oignon", + "wordSecond": "洋葱 (yang cong)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ail", + "wordSecond": "大蒜 (da suan)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "poivron", + "wordSecond": "甜椒 (tian jiao)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "concombre", + "wordSecond": "黄瓜 (huang gua)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "laitue", + "wordSecond": "生菜 (sheng cai)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "champignon", + "wordSecond": "蘑菇 (mo gu)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "brocoli", + "wordSecond": "西兰花 (xi lan hua)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pomme", + "wordSecond": "苹果 (ping guo)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "banane", + "wordSecond": "香蕉 (xiang jiao)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "orange", + "wordSecond": "橙子 (cheng zi)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fraise", + "wordSecond": "草莓 (cao mei)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "raisin", + "wordSecond": "葡萄 (pu tao)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pêche", + "wordSecond": "桃子 (tao zi)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "poire", + "wordSecond": "梨 (li)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pastèque", + "wordSecond": "西瓜 (xi gua)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ananas", + "wordSecond": "菠萝 (bo luo)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "citron", + "wordSecond": "柠檬 (ning meng)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sucre", + "wordSecond": "糖 (tang)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sel", + "wordSecond": "盐 (yan)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "poivre", + "wordSecond": "胡椒 (hu jiao)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "huile", + "wordSecond": "油 (you)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vinaigre", + "wordSecond": "醋 (cu)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sauce soja", + "wordSecond": "酱油 (jiang you)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ketchup", + "wordSecond": "番茄酱 (fan qie jiang)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mayonnaise", + "wordSecond": "蛋黄酱 (dan huang jiang)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "moutarde", + "wordSecond": "芥末 (jie mo)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "eau", + "wordSecond": "水 (shui)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "bière", + "wordSecond": "啤酒 (pi jiu)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vin", + "wordSecond": "葡萄酒 (pu tao jiu)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "glace", + "wordSecond": "冰淇淋 (bing qi lin)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "gâteau", + "wordSecond": "蛋糕 (dan gao)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "biscuit", + "wordSecond": "饼干 (bing gan)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chocolat", + "wordSecond": "巧克力 (qiao ke li)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "bonbon", + "wordSecond": "糖果 (tang guo)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "couteau", + "wordSecond": "刀 (dao)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fourchette", + "wordSecond": "叉子 (cha zi)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cuillère", + "wordSecond": "勺子 (shao zi)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "assiette", + "wordSecond": "盘子 (pan zi)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "bol", + "wordSecond": "碗 (wan)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "verre", + "wordSecond": "杯子 (bei zi)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tasse", + "wordSecond": "杯子 (bei zi)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "poêle", + "wordSecond": "平底锅 (ping di guo)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "casserole", + "wordSecond": "锅 (guo)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "four", + "wordSecond": "烤箱 (kao xiang)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "réfrigérateur", + "wordSecond": "冰箱 (bing xiang)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "micro-ondes", + "wordSecond": "微波炉 (wei bo lu)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cuisiner", + "wordSecond": "做饭 (zuo fan)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "manger", + "wordSecond": "吃 (chi)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "boire", + "wordSecond": "喝 (he)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "couper", + "wordSecond": "切 (qie)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mélanger", + "wordSecond": "混合 (hun he)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "faire bouillir", + "wordSecond": "煮 (zhu)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "faire frire", + "wordSecond": "炸 (zha)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cuire au four", + "wordSecond": "烤 (kao)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "laver", + "wordSecond": "洗 (xi)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "éplucher", + "wordSecond": "削皮 (xiao pi)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "peser", + "wordSecond": "称重 (cheng zhong)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mesurer", + "wordSecond": "测量 (ce liang)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "servir", + "wordSecond": "上菜 (shang cai)", + "createdAt": "2026-02-19T13:55:32.291Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_it_ja_A2.json b/output/2026_02_19_food_cooking_it_ja_A2.json new file mode 100644 index 0000000..d2b2935 --- /dev/null +++ b/output/2026_02_19_food_cooking_it_ja_A2.json @@ -0,0 +1,1111 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:56:44.815Z", + "metadata": { + "itemCount": 84, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pane", + "wordSecond": "パン (ぱん, pan)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "riso", + "wordSecond": "米 (こめ, kome)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pasta", + "wordSecond": "パスタ (ぱすた, pasuta)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "uova", + "wordSecond": "卵 (たまご, tamago)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "latte", + "wordSecond": "牛乳 (ぎゅうにゅう, gyūnyū)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "formaggio", + "wordSecond": "チーズ (ちーず, chīzu)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "burro", + "wordSecond": "バター (ばたー, batā)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "zucchero", + "wordSecond": "砂糖 (さとう, satō)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sale", + "wordSecond": "塩 (しお, shio)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pepe", + "wordSecond": "コショウ (こしょう, koshō)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "olio", + "wordSecond": "油 (あぶら, abura)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "acqua", + "wordSecond": "水 (みず, mizu)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tè", + "wordSecond": "お茶 (おちゃ, ocha)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "caffè", + "wordSecond": "コーヒー (こーひー, kōhī)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "succo", + "wordSecond": "ジュース (じゅーす, jūsu)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "vino", + "wordSecond": "ワイン (わいん, wain)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "birra", + "wordSecond": "ビール (びーる, bīru)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "carne", + "wordSecond": "肉 (にく, niku)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pollo", + "wordSecond": "鶏肉 (とりにく, toriniku)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "manzo", + "wordSecond": "牛肉 (ぎゅうにく, gyūniku)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "maiale", + "wordSecond": "豚肉 (ぶたにく, butaniku)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pesce", + "wordSecond": "魚 (さかな, sakana)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "gamberi", + "wordSecond": "エビ (えび, ebi)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "frutta", + "wordSecond": "果物 (くだもの, kudamono)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mela", + "wordSecond": "リンゴ (りんご, ringo)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "banana", + "wordSecond": "バナナ (ばなな, banana)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "arancia", + "wordSecond": "オレンジ (おれんじ, orenji)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fragola", + "wordSecond": "イチゴ (いちご, ichigo)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "uva", + "wordSecond": "ブドウ (ぶどう, budō)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "limone", + "wordSecond": "レモン (れもん, remon)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "verdura", + "wordSecond": "野菜 (やさい, yasai)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pomodoro", + "wordSecond": "トマト (とまと, tomato)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cipolla", + "wordSecond": "玉ねぎ (たまねぎ, tamanegi)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "aglio", + "wordSecond": "ニンニク (にんにく, ninniku)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "patata", + "wordSecond": "ジャガイモ (じゃがいも, jagaimo)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "carota", + "wordSecond": "ニンジン (にんじん, ninjin)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "insalata", + "wordSecond": "サラダ (さらだ, sarada)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "spinaci", + "wordSecond": "ホウレンソウ (ほうれんそう, hōrensō)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "broccoli", + "wordSecond": "ブロッコリー (ぶろっこりー, burokkorī)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pane tostato", + "wordSecond": "トースト (とーすと, tōsuto)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cereali", + "wordSecond": "シリアル (しりある, shiriaru)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "yogurt", + "wordSecond": "ヨーグルト (よーぐると, yōguruto)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "marmellata", + "wordSecond": "ジャム (じゃむ, jamu)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "miele", + "wordSecond": "ハチミツ (はちみつ, hachimitsu)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pancetta", + "wordSecond": "ベーコン (べーこん, bēkon)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "salsiccia", + "wordSecond": "ソーセージ (そーせーじ, sōsēji)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "zuppa", + "wordSecond": "スープ (すーぷ, sūpu)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "panino", + "wordSecond": "サンドイッチ (さんどいっち, sandoitchi)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pizza", + "wordSecond": "ピザ (ぴざ, piza)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "hamburger", + "wordSecond": "ハンバーガー (はんばーがー, hanbāgā)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "patatine fritte", + "wordSecond": "フライドポテト (ふらいどぽてと, furaidopoteto)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "gelato", + "wordSecond": "アイスクリーム (あいすくりーむ, aisukurīmu)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "torta", + "wordSecond": "ケーキ (けーき, kēki)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "biscotti", + "wordSecond": "クッキー (くっきー, kukkī)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cioccolato", + "wordSecond": "チョコレート (ちょこれーと, chokorēto)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "coltello", + "wordSecond": "ナイフ (ないふ, naifu)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "forchetta", + "wordSecond": "フォーク (ふぉーく, fōku)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cucchiaio", + "wordSecond": "スプーン (すぷーん, supūn)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "piatto", + "wordSecond": "皿 (さら, sara)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "bicchiere", + "wordSecond": "グラス (ぐらす, gurasu)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tazza", + "wordSecond": "カップ (かっぷ, kappu)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pentola", + "wordSecond": "鍋 (なべ, nabe)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "padella", + "wordSecond": "フライパン (ふらいぱん, furaipan)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "forno", + "wordSecond": "オーブン (おーぶん, ōbun)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "frigorifero", + "wordSecond": "冷蔵庫 (れいぞうこ, reizōko)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lavello", + "wordSecond": "シンク (しんく, shinku)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cucinare", + "wordSecond": "料理する (りょうりする, ryōri suru)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tagliare", + "wordSecond": "切る (きる, kiru)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mescolare", + "wordSecond": "混ぜる (まぜる, mazeru)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "bollire", + "wordSecond": "沸かす (わかす, wakasu)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "friggere", + "wordSecond": "揚げる (あげる, ageru)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cuocere al forno", + "wordSecond": "焼く (やく, yaku)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "servire", + "wordSecond": "出す (だす, dasu)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mangiare", + "wordSecond": "食べる (たべる, taberu)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "bere", + "wordSecond": "飲む (のむ, nomu)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "colazione", + "wordSecond": "朝食 (ちょうしょく, chōshoku)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pranzo", + "wordSecond": "昼食 (ちゅうしょく, chūshoku)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cena", + "wordSecond": "夕食 (ゆうしょく, yūshoku)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "spuntino", + "wordSecond": "おやつ (おやつ, oyatsu)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dolce", + "wordSecond": "甘い (あまい, amai)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "salato", + "wordSecond": "塩辛い (しおからい, shiokarai)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "piccante", + "wordSecond": "辛い (からい, karai)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "caldo", + "wordSecond": "熱い (あつい, atsui)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "freddo", + "wordSecond": "冷たい (つめたい, tsumetai)", + "createdAt": "2026-02-19T13:56:44.815Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_it_ko_A2.json b/output/2026_02_19_food_cooking_it_ko_A2.json new file mode 100644 index 0000000..b6b80d6 --- /dev/null +++ b/output/2026_02_19_food_cooking_it_ko_A2.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:57:32.995Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pane", + "wordSecond": "빵 (ppang)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "riso", + "wordSecond": "쌀 (ssal)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pasta", + "wordSecond": "파스타 (paseuta)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "uova", + "wordSecond": "계란 (gyeran)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "latte", + "wordSecond": "우유 (uyu)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "formaggio", + "wordSecond": "치즈 (chijeu)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "burro", + "wordSecond": "버터 (beoteo)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "olio", + "wordSecond": "기름 (gireum)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sale", + "wordSecond": "소금 (sogeum)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "zucchero", + "wordSecond": "설탕 (seoltang)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pepe", + "wordSecond": "후추 (huchu)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "acqua", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tè", + "wordSecond": "차 (cha)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "caffè", + "wordSecond": "커피 (keopi)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "succo", + "wordSecond": "주스 (juseu)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "carne", + "wordSecond": "고기 (gogi)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pollo", + "wordSecond": "닭고기 (dakgogi)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "manzo", + "wordSecond": "소고기 (sogogi)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "maiale", + "wordSecond": "돼지고기 (dwaejigogi)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pesce", + "wordSecond": "생선 (saengseon)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "gamberi", + "wordSecond": "새우 (saeu)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "verdure", + "wordSecond": "야채 (yachae)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "insalata", + "wordSecond": "샐러드 (saelleodeu)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pomodoro", + "wordSecond": "토마토 (tomato)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "patata", + "wordSecond": "감자 (gamja)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cipolla", + "wordSecond": "양파 (yangpa)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "aglio", + "wordSecond": "마늘 (maneul)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "carota", + "wordSecond": "당근 (danggeun)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "peperone", + "wordSecond": "피망 (pimang)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cetriolo", + "wordSecond": "오이 (oi)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "funghi", + "wordSecond": "버섯 (beoseot)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "spinaci", + "wordSecond": "시금치 (sigeumchi)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mela", + "wordSecond": "사과 (sagwa)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "banana", + "wordSecond": "바나나 (banana)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "arancia", + "wordSecond": "오렌지 (orenji)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "fragola", + "wordSecond": "딸기 (ttalgi)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "uva", + "wordSecond": "포도 (podo)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "limone", + "wordSecond": "레몬 (remon)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "anguria", + "wordSecond": "수박 (subak)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ananas", + "wordSecond": "파인애플 (painaepeul)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pizza", + "wordSecond": "피자 (pija)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "hamburger", + "wordSecond": "햄버거 (haembeogeo)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "panino", + "wordSecond": "샌드위치 (saendeuwichi)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "zuppa", + "wordSecond": "수프 (supeu)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "insalata", + "wordSecond": "샐러드 (saelleodeu)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "torta", + "wordSecond": "케이크 (keikeu)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "gelato", + "wordSecond": "아이스크림 (aiseukeurim)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "biscotti", + "wordSecond": "쿠키 (kuki)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cioccolato", + "wordSecond": "초콜릿 (chokollit)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "colazione", + "wordSecond": "아침 식사 (achim siksa)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pranzo", + "wordSecond": "점심 식사 (jeomsim siksa)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cena", + "wordSecond": "저녁 식사 (jeonyeok siksa)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "spaghetti", + "wordSecond": "스파게티 (seupageti)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lasagne", + "wordSecond": "라자냐 (rajanya)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "risotto", + "wordSecond": "리조또 (rijotto)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "minestra", + "wordSecond": "국 (guk)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sushi", + "wordSecond": "초밥 (chobap)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ramen", + "wordSecond": "라면 (ramyeon)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "kimchi", + "wordSecond": "김치 (gimchi)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bibimbap", + "wordSecond": "비빔밥 (bibimbap)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bulgogi", + "wordSecond": "불고기 (bulgogi)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tavolo", + "wordSecond": "테이블 (teibeul)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sedia", + "wordSecond": "의자 (uija)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "piatto", + "wordSecond": "접시 (jeopsi)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bicchiere", + "wordSecond": "잔 (jan)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tazza", + "wordSecond": "컵 (keop)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "forchetta", + "wordSecond": "포크 (pokeu)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "coltello", + "wordSecond": "나이프 (naipeu)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cucchiaio", + "wordSecond": "숟가락 (sutgarak)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pentola", + "wordSecond": "냄비 (naembi)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "padella", + "wordSecond": "프라이팬 (peuraipaen)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "forno", + "wordSecond": "오븐 (obeun)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "frigorifero", + "wordSecond": "냉장고 (naengjanggo)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lavello", + "wordSecond": "싱크대 (singkeudae)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cucinare", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bollire", + "wordSecond": "끓이다 (kkeurida)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "friggere", + "wordSecond": "튀기다 (twigida)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cuocere al forno", + "wordSecond": "굽다 (gupda)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tagliare", + "wordSecond": "자르다 (jareuda)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mescolare", + "wordSecond": "섞다 (seokkda)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "servire", + "wordSecond": "내놓다 (naenota)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mangiare", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bere", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "comprare", + "wordSecond": "사다 (sada)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "preparare", + "wordSecond": "준비하다 (junbihada)", + "createdAt": "2026-02-19T13:57:32.995Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_it_pl_A2.json b/output/2026_02_19_food_cooking_it_pl_A2.json new file mode 100644 index 0000000..b920a56 --- /dev/null +++ b/output/2026_02_19_food_cooking_it_pl_A2.json @@ -0,0 +1,1150 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:57:50.556Z", + "metadata": { + "itemCount": 87, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pane", + "wordSecond": "chleb", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "burro", + "wordSecond": "masło", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "formaggio", + "wordSecond": "ser", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "latte", + "wordSecond": "mleko", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "uova", + "wordSecond": "jajka", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "zucchero", + "wordSecond": "cukier", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sale", + "wordSecond": "sól", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pepe", + "wordSecond": "pieprz", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "olio", + "wordSecond": "olej", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "acqua", + "wordSecond": "woda", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "caffè", + "wordSecond": "kawa", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tè", + "wordSecond": "herbata", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "succo", + "wordSecond": "sok", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pasta", + "wordSecond": "makaron", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "riso", + "wordSecond": "ryż", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pomodoro", + "wordSecond": "pomidor", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cipolla", + "wordSecond": "cebula", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "aglio", + "wordSecond": "czosnek", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "patata", + "wordSecond": "ziemniak", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "carota", + "wordSecond": "marchewka", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "insalata", + "wordSecond": "sałata", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pomodoro", + "wordSecond": "pomidor", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "melanzana", + "wordSecond": "bakłażan", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "zucchina", + "wordSecond": "cukinia", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "peperone", + "wordSecond": "papryka", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "funghi", + "wordSecond": "grzyby", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "limone", + "wordSecond": "cytryna", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "arancia", + "wordSecond": "pomarańcza", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mela", + "wordSecond": "jabłko", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pera", + "wordSecond": "gruszka", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "banana", + "wordSecond": "banan", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "fragola", + "wordSecond": "truskawka", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "uva", + "wordSecond": "winogrono", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pesca", + "wordSecond": "brzoskwinia", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ciliegia", + "wordSecond": "wiśnia", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pollo", + "wordSecond": "kurczak", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "manzo", + "wordSecond": "wołowina", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "maiale", + "wordSecond": "wieprzowina", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pesce", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gamberetto", + "wordSecond": "krewetka", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pane tostato", + "wordSecond": "tost", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cornetto", + "wordSecond": "rogalik", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "yogurt", + "wordSecond": "jogurt", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cereali", + "wordSecond": "płatki", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "marmellata", + "wordSecond": "dżem", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "miele", + "wordSecond": "miód", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "panino", + "wordSecond": "kanapka", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "zuppa", + "wordSecond": "zupa", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "minestra", + "wordSecond": "zupa", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pizza", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "hamburger", + "wordSecond": "hamburger", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "patatine fritte", + "wordSecond": "frytki", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "insalata", + "wordSecond": "sałatka", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "torta", + "wordSecond": "ciasto", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gelato", + "wordSecond": "lody", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "biscotto", + "wordSecond": "ciastko", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cioccolato", + "wordSecond": "czekolada", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "forno", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "frigorifero", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "fornello", + "wordSecond": "kuchenka", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pentola", + "wordSecond": "garnek", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "padella", + "wordSecond": "patelnia", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "teglia", + "wordSecond": "blacha", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "coltello", + "wordSecond": "nóż", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "forchetta", + "wordSecond": "widelec", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cucchiaio", + "wordSecond": "łyżka", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "piatto", + "wordSecond": "talerz", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "bicchiere", + "wordSecond": "szklanka", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tazza", + "wordSecond": "filiżanka", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cucinare", + "wordSecond": "gotować", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "friggere", + "wordSecond": "smażyć", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cuocere al forno", + "wordSecond": "piec", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "bollire", + "wordSecond": "gotować", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tagliare", + "wordSecond": "kroić", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mescolare", + "wordSecond": "mieszać", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "servire", + "wordSecond": "podawać", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mangiare", + "wordSecond": "jeść", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "bere", + "wordSecond": "pić", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "colazione", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pranzo", + "wordSecond": "obiad", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cena", + "wordSecond": "kolacja", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "spuntino", + "wordSecond": "przekąska", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dolce", + "wordSecond": "deser", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "piccante", + "wordSecond": "ostry", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dolce", + "wordSecond": "słodki", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "salato", + "wordSecond": "słony", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "acido", + "wordSecond": "kwaśny", + "createdAt": "2026-02-19T13:57:50.556Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_it_zh_A2.json b/output/2026_02_19_food_cooking_it_zh_A2.json new file mode 100644 index 0000000..9b64444 --- /dev/null +++ b/output/2026_02_19_food_cooking_it_zh_A2.json @@ -0,0 +1,1137 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:57:08.717Z", + "metadata": { + "itemCount": 86, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pane", + "wordSecond": "面包 (miànbāo)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "acqua", + "wordSecond": "水 (shuǐ)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "latte", + "wordSecond": "牛奶 (niúnǎi)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "caffè", + "wordSecond": "咖啡 (kāfēi)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tè", + "wordSecond": "茶 (chá)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "zucchero", + "wordSecond": "糖 (táng)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sale", + "wordSecond": "盐 (yán)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "uovo", + "wordSecond": "鸡蛋 (jīdàn)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "formaggio", + "wordSecond": "奶酪 (nǎilào)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "burro", + "wordSecond": "黄油 (huángyóu)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pasta", + "wordSecond": "意大利面 (yìdàlì miàn)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "riso", + "wordSecond": "米饭 (mǐfàn)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pizza", + "wordSecond": "比萨饼 (bǐsà bǐng)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "minestra", + "wordSecond": "汤 (tāng)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "insalata", + "wordSecond": "沙拉 (shālā)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "carne", + "wordSecond": "肉 (ròu)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pollo", + "wordSecond": "鸡肉 (jīròu)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pesce", + "wordSecond": "鱼 (yú)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pane tostato", + "wordSecond": "吐司 (tǔsī)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "marmellata", + "wordSecond": "果酱 (guǒjiàng)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "yogurt", + "wordSecond": "酸奶 (suānnǎi)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cereali", + "wordSecond": "麦片 (màipiàn)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "frutta", + "wordSecond": "水果 (shuǐguǒ)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mela", + "wordSecond": "苹果 (píngguǒ)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "banana", + "wordSecond": "香蕉 (xiāngjiāo)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "arancia", + "wordSecond": "橙子 (chéngzi)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fragola", + "wordSecond": "草莓 (cǎoméi)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "uva", + "wordSecond": "葡萄 (pútáo)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "verdura", + "wordSecond": "蔬菜 (shūcài)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pomodoro", + "wordSecond": "西红柿 (xīhóngshì)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "patata", + "wordSecond": "土豆 (tǔdòu)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cipolla", + "wordSecond": "洋葱 (yángcōng)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "carota", + "wordSecond": "胡萝卜 (húluóbo)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "insalata verde", + "wordSecond": "生菜 (shēngcài)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "broccoli", + "wordSecond": "西兰花 (xīlánhuā)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "peperone", + "wordSecond": "甜椒 (tiánjiāo)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "funghi", + "wordSecond": "蘑菇 (mógū)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "aglio", + "wordSecond": "大蒜 (dàsuàn)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "limone", + "wordSecond": "柠檬 (níngméng)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "olio", + "wordSecond": "油 (yóu)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "aceto", + "wordSecond": "醋 (cù)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "salsa", + "wordSecond": "酱 (jiàng)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ketchup", + "wordSecond": "番茄酱 (fānqié jiàng)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "maionese", + "wordSecond": "蛋黄酱 (dànhuáng jiàng)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "senape", + "wordSecond": "芥末 (jièmo)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "panino", + "wordSecond": "三明治 (sānmíngzhì)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "hamburger", + "wordSecond": "汉堡包 (hànbǎo bāo)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "hot dog", + "wordSecond": "热狗 (règǒu)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "patatine fritte", + "wordSecond": "薯条 (shǔtiáo)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "gelato", + "wordSecond": "冰淇淋 (bīngqílín)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "torta", + "wordSecond": "蛋糕 (dàngāo)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cioccolato", + "wordSecond": "巧克力 (qiǎokèlì)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "biscotto", + "wordSecond": "饼干 (bǐnggān)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "succo", + "wordSecond": "果汁 (guǒzhī)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "birra", + "wordSecond": "啤酒 (píjiǔ)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "vino", + "wordSecond": "葡萄酒 (pútáojiǔ)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cucchiaio", + "wordSecond": "勺子 (sháozi)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "forchetta", + "wordSecond": "叉子 (chāzi)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "coltello", + "wordSecond": "刀子 (dāozi)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "piatto", + "wordSecond": "盘子 (pánzi)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "bicchiere", + "wordSecond": "杯子 (bēizi)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tazza", + "wordSecond": "杯子 (bēizi)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pentola", + "wordSecond": "锅 (guō)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "padella", + "wordSecond": "平底锅 (píngdǐ guō)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "forno", + "wordSecond": "烤箱 (kǎoxiāng)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "frigorifero", + "wordSecond": "冰箱 (bīngxiāng)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lavello", + "wordSecond": "水槽 (shuǐcáo)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tagliere", + "wordSecond": "切菜板 (qiēcài bǎn)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cucinare", + "wordSecond": "做饭 (zuòfàn)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "bollire", + "wordSecond": "煮 (zhǔ)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "friggere", + "wordSecond": "炸 (zhá)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cuocere al forno", + "wordSecond": "烤 (kǎo)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "arrostire", + "wordSecond": "烤 (kǎo)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tagliare", + "wordSecond": "切 (qiē)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mescolare", + "wordSecond": "搅拌 (jiǎobàn)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "servire", + "wordSecond": "上菜 (shàngcài)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mangiare", + "wordSecond": "吃 (chī)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "bere", + "wordSecond": "喝 (hē)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "colazione", + "wordSecond": "早餐 (zǎocān)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pranzo", + "wordSecond": "午餐 (wǔcān)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cena", + "wordSecond": "晚餐 (wǎncān)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "spuntino", + "wordSecond": "小吃 (xiǎochī)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ristorante", + "wordSecond": "餐厅 (cāntīng)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "supermercato", + "wordSecond": "超市 (chāoshì)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mercato", + "wordSecond": "市场 (shìchǎng)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lista della spesa", + "wordSecond": "购物清单 (gòuwù qīngdān)", + "createdAt": "2026-02-19T13:57:08.717Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_ja_ko_A2.json b/output/2026_02_19_food_cooking_ja_ko_A2.json new file mode 100644 index 0000000..f056d58 --- /dev/null +++ b/output/2026_02_19_food_cooking_ja_ko_A2.json @@ -0,0 +1,1085 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:59:01.747Z", + "metadata": { + "itemCount": 82, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "りんご (りんご, ringo)", + "wordSecond": "사과 (sagwa)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "バナナ (ばなな, banana)", + "wordSecond": "바나나 (banana)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "みかん (みかん, mikan)", + "wordSecond": "귤 (gyul)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "いちご (いちご, ichigo)", + "wordSecond": "딸기 (ttalgi)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ぶどう (ぶどう, budō)", + "wordSecond": "포도 (podo)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "トマト (とまと, tomato)", + "wordSecond": "토마토 (tomato)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "きゅうり (きゅうり, kyūri)", + "wordSecond": "오이 (oi)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "にんじん (にんじん, ninjin)", + "wordSecond": "당근 (danggeun)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "たまねぎ (たまねぎ, tamanegi)", + "wordSecond": "양파 (yangpa)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "じゃがいも (じゃがいも, jagaimo)", + "wordSecond": "감자 (gamja)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ごはん (ごはん, gohan)", + "wordSecond": "밥 (bap)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "パン (ぱん, pan)", + "wordSecond": "빵 (ppang)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "たまご (たまご, tamago)", + "wordSecond": "계란 (gyeran)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "にく (にく, niku)", + "wordSecond": "고기 (gogi)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "さかな (さかな, sakana)", + "wordSecond": "생선 (saengseon)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ぎゅうにゅう (ぎゅうにゅう, gyūnyū)", + "wordSecond": "우유 (uyu)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "チーズ (ちーず, chīzu)", + "wordSecond": "치즈 (chijeu)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "バター (ばたー, batā)", + "wordSecond": "버터 (beoteo)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "しお (しお, shio)", + "wordSecond": "소금 (sogeum)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "こしょう (こしょう, koshō)", + "wordSecond": "후추 (huchu)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "さとう (さとう, satō)", + "wordSecond": "설탕 (seoltang)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "みず (みず, mizu)", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "おちゃ (おちゃ, ocha)", + "wordSecond": "차 (cha)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "コーヒー (こーひー, kōhī)", + "wordSecond": "커피 (keopi)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ジュース (じゅーす, jūsu)", + "wordSecond": "주스 (juseu)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "スープ (すーぷ, sūpu)", + "wordSecond": "수프 (supeu)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "サラダ (さらだ, sarada)", + "wordSecond": "샐러드 (saelleodeu)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "サンドイッチ (さんどいっち, sandoitchi)", + "wordSecond": "샌드위치 (saendeuwichi)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ハンバーガー (はんばーがー, hanbāgā)", + "wordSecond": "햄버거 (haembeogeo)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ピザ (ぴざ, piza)", + "wordSecond": "피자 (pija)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "カレー (かれー, karē)", + "wordSecond": "카레 (kare)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ラーメン (らーめん, rāmen)", + "wordSecond": "라면 (ramyeon)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "すし (すし, sushi)", + "wordSecond": "초밥 (chobap)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "やさい (やさい, yasai)", + "wordSecond": "야채 (yachae)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "くだもの (くだもの, kudamono)", + "wordSecond": "과일 (gwail)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "あさごはん (あさごはん, asagohan)", + "wordSecond": "아침밥 (achim-bap)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ひるごはん (ひるごはん, hirugohan)", + "wordSecond": "점심밥 (jeomsim-bap)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ばんごはん (ばんごはん, bangohan)", + "wordSecond": "저녁밥 (jeonyeok-bap)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "おにぎり (おにぎり, onigiri)", + "wordSecond": "주먹밥 (jumeok-bap)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "みそしる (みそしる, misoshiru)", + "wordSecond": "된장찌개 (doenjang-jjigae)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "やきにく (やきにく, yakiniku)", + "wordSecond": "불고기 (bulgogi)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "てんぷら (てんぷら, tenpura)", + "wordSecond": "튀김 (twigim)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "うどん (うどん, udon)", + "wordSecond": "우동 (udong)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "そば (そば, soba)", + "wordSecond": "메밀국수 (memil-guksu)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "おかし (おかし, okashi)", + "wordSecond": "과자 (gwaja)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ケーキ (けーき, kēki)", + "wordSecond": "케이크 (keikeu)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "チョコレート (ちょこれーと, chokorēto)", + "wordSecond": "초콜릿 (chokollit)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "アイスクリーム (あいすくりーむ, aisukurīmu)", + "wordSecond": "아이스크림 (aiseukeurim)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "フォーク (ふぉーく, fōku)", + "wordSecond": "포크 (pokeu)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ナイフ (ないふ, naifu)", + "wordSecond": "나이프 (naipeu)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "スプーン (すぷーん, supūn)", + "wordSecond": "숟가락 (sutgarak)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "おさら (おさら, osara)", + "wordSecond": "접시 (jeopsi)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "コップ (こっぷ, koppu)", + "wordSecond": "컵 (keop)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "なべ (なべ, nabe)", + "wordSecond": "냄비 (naembi)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "フライパン (ふらいぱん, furaipan)", + "wordSecond": "프라이팬 (peuraipaen)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "やかん (やかん, yakan)", + "wordSecond": "주전자 (jujeonja)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "でんしレンジ (でんしれんじ, denshi renji)", + "wordSecond": "전자레인지 (jeonjareinji)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "れいぞうこ (れいぞうこ, reizōko)", + "wordSecond": "냉장고 (naengjanggo)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "つくる (つくる, tsukuru)", + "wordSecond": "만들다 (mandeulda)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "きる (きる, kiru)", + "wordSecond": "자르다 (jareuda)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "むく (むく, muku)", + "wordSecond": "껍질을 벗기다 (kkeopjireul beotgida)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "にる (にる, niru)", + "wordSecond": "끓이다 (kkeurida)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "やく (やく, yaku)", + "wordSecond": "굽다 (gupda)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "あげる (あげる, ageru)", + "wordSecond": "튀기다 (twigida)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "まぜる (まぜる, mazeru)", + "wordSecond": "섞다 (seokkda)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "たべる (たべる, taberu)", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "のむ (のむ, nomu)", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "かう (かう, kau)", + "wordSecond": "사다 (sada)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "あらう (あらう, arau)", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "あたためる (あたためる, atatameru)", + "wordSecond": "데우다 (de-uda)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ひやす (ひやす, hiyasu)", + "wordSecond": "차갑게 하다 (chagapge hada)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "あじ (あじ, aji)", + "wordSecond": "맛 (mat)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "あつい (あつい, atsui)", + "wordSecond": "뜨겁다 (tteugeopda)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "つめたい (つめたい, tsumetai)", + "wordSecond": "차갑다 (chagapda)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "あまい (あまい, amai)", + "wordSecond": "달다 (dalda)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "からい (からい, karai)", + "wordSecond": "맵다 (maepda)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "しょっぱい (しょっぱい, shoppai)", + "wordSecond": "짜다 (jjada)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "すっぱい (すっぱい, suppai)", + "wordSecond": "시다 (sida)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "おいしい (おいしい, oishii)", + "wordSecond": "맛있다 (masitda)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "まずい (まずい, mazui)", + "wordSecond": "맛없다 (maseopda)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "レストラン (れすとらん, resutoran)", + "wordSecond": "레스토랑 (reseutorang)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "スーパー (すーぱー, sūpā)", + "wordSecond": "슈퍼마켓 (syupeomaket)", + "createdAt": "2026-02-19T13:59:01.747Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_ja_pl_A2.json b/output/2026_02_19_food_cooking_ja_pl_A2.json new file mode 100644 index 0000000..cc0ec7e --- /dev/null +++ b/output/2026_02_19_food_cooking_ja_pl_A2.json @@ -0,0 +1,1085 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:59:30.393Z", + "metadata": { + "itemCount": 82, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "りんご (りんご, ringo)", + "wordSecond": "jabłko", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "バナナ (ばなな, banana)", + "wordSecond": "banan", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "オレンジ (おれんじ, orenji)", + "wordSecond": "pomarańcza", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "いちご (いちご, ichigo)", + "wordSecond": "truskawka", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ぶどう (ぶどう, budō)", + "wordSecond": "winogrono", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "にんじん (にんじん, ninjin)", + "wordSecond": "marchewka", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "たまねぎ (たまねぎ, tamanegi)", + "wordSecond": "cebula", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "じゃがいも (じゃがいも, jagaimo)", + "wordSecond": "ziemniak", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "トマト (とまと, tomato)", + "wordSecond": "pomidor", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "きゅうり (きゅうり, kyūri)", + "wordSecond": "ogórek", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ほうれんそう (ほうれんそう, hōrensō)", + "wordSecond": "szpinak", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "レタス (れたす, retasu)", + "wordSecond": "sałata", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "キャベツ (きゃべつ, kyabetsu)", + "wordSecond": "kapusta", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ブロッコリー (ぶろっこりー, burokkorī)", + "wordSecond": "brokuł", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ピーマン (ぴーまん, pīman)", + "wordSecond": "papryka", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "肉 (にく, niku)", + "wordSecond": "mięso", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "牛肉 (ぎゅうにく, gyūniku)", + "wordSecond": "wołowina", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "豚肉 (ぶたにく, butaniku)", + "wordSecond": "wieprzowina", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "鶏肉 (とりにく, toriniku)", + "wordSecond": "kurczak", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "魚 (さかな, sakana)", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "卵 (たまご, tamago)", + "wordSecond": "jajko", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "牛乳 (ぎゅうにゅう, gyūnyū)", + "wordSecond": "mleko", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "チーズ (ちーず, chīzu)", + "wordSecond": "ser", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "バター (ばたー, batā)", + "wordSecond": "masło", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "パン (ぱん, pan)", + "wordSecond": "chleb", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ご飯 (ごはん, gohan)", + "wordSecond": "ryż", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "パスタ (ぱすた, pasuta)", + "wordSecond": "makaron", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "スープ (すーぷ, sūpu)", + "wordSecond": "zupa", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "サラダ (さらだ, sarada)", + "wordSecond": "sałatka", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ハンバーガー (はんばーがー, hanbāgā)", + "wordSecond": "hamburger", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ピザ (ぴざ, piza)", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "サンドイッチ (さんどいっち, sandoitchi)", + "wordSecond": "kanapka", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ケーキ (けーき, kēki)", + "wordSecond": "ciasto", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "クッキー (くっきー, kukkī)", + "wordSecond": "ciastko", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "アイスクリーム (あいすくりーむ, aisukurīmu)", + "wordSecond": "lody", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "コーヒー (こーひー, kōhī)", + "wordSecond": "kawa", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "お茶 (おちゃ, ocha)", + "wordSecond": "herbata", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ジュース (じゅーす, jūsu)", + "wordSecond": "sok", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "水 (みず, mizu)", + "wordSecond": "woda", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "塩 (しお, shio)", + "wordSecond": "sól", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "砂糖 (さとう, satō)", + "wordSecond": "cukier", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "こしょう (こしょう, koshō)", + "wordSecond": "pieprz", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "油 (あぶら, abura)", + "wordSecond": "olej", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "醤油 (しょうゆ, shōyu)", + "wordSecond": "sos sojowy", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "酢 (す, su)", + "wordSecond": "ocet", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ケチャップ (けちゃっぷ, kechappu)", + "wordSecond": "keczup", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "マヨネーズ (まよねーず, mayonēzu)", + "wordSecond": "majonez", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "マスタード (ますたーど, masutādo)", + "wordSecond": "musztarda", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "朝食 (ちょうしょく, chōshoku)", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "昼食 (ちゅうしょく, chūshoku)", + "wordSecond": "obiad", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "夕食 (ゆうしょく, yūshoku)", + "wordSecond": "kolacja", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おにぎり (おにぎり, onigiri)", + "wordSecond": "onigiri", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "味噌汁 (みそしる, misoshiru)", + "wordSecond": "zupa miso", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "カレー (かれー, karē)", + "wordSecond": "curry", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ラーメン (らーめん, rāmen)", + "wordSecond": "ramen", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "寿司 (すし, sushi)", + "wordSecond": "sushi", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "天ぷら (てんぷら, tenpura)", + "wordSecond": "tempura", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "うどん (うどん, udon)", + "wordSecond": "udon", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "そば (そば, soba)", + "wordSecond": "soba", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "鍋 (なべ, nabe)", + "wordSecond": "garnek", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "フライパン (ふらいぱん, furaipan)", + "wordSecond": "patelnia", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "包丁 (ほうちょう, hōchō)", + "wordSecond": "nóż", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "フォーク (ふぉーく, fōku)", + "wordSecond": "widelec", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "スプーン (すぷーん, supūn)", + "wordSecond": "łyżka", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ナイフ (ないふ, naifu)", + "wordSecond": "nóż", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "皿 (さら, sara)", + "wordSecond": "talerz", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "コップ (こっぷ, koppu)", + "wordSecond": "szklanka", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "カップ (かっぷ, kappu)", + "wordSecond": "kubek", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ボウル (ぼうる, bōru)", + "wordSecond": "miska", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "まな板 (まないた, manaita)", + "wordSecond": "deska do krojenia", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "冷蔵庫 (れいぞうこ, reizōko)", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "電子レンジ (でんしれんじ, denshirenji)", + "wordSecond": "mikrofalówka", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "オーブン (おーぶん, ōbun)", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "調理する (ちょうりする, chōri suru)", + "wordSecond": "gotować", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "切る (きる, kiru)", + "wordSecond": "kroić", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "焼く (やく, yaku)", + "wordSecond": "piec", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "炒める (いためる, itameru)", + "wordSecond": "smażyć", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ゆでる (ゆでる, yuderu)", + "wordSecond": "gotować (wrzątek)", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "混ぜる (まぜる, mazeru)", + "wordSecond": "mieszać", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "洗う (あらう, arau)", + "wordSecond": "myć", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "食べる (たべる, taberu)", + "wordSecond": "jeść", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "飲む (のむ, nomu)", + "wordSecond": "pić", + "createdAt": "2026-02-19T13:59:30.393Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_ja_zh_A2.json b/output/2026_02_19_food_cooking_ja_zh_A2.json new file mode 100644 index 0000000..2bce819 --- /dev/null +++ b/output/2026_02_19_food_cooking_ja_zh_A2.json @@ -0,0 +1,1150 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:58:25.307Z", + "metadata": { + "itemCount": 87, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "りんご (りんご, ringo)", + "wordSecond": "苹果 (pingguo)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "バナナ (ばなな, banana)", + "wordSecond": "香蕉 (xiangjiao)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "オレンジ (おれんじ, orenji)", + "wordSecond": "橙子 (chengzi)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ぶどう (ぶどう, budou)", + "wordSecond": "葡萄 (putao)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "いちご (いちご, ichigo)", + "wordSecond": "草莓 (caomei)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "トマト (とまと, tomato)", + "wordSecond": "西红柿 (xihongshi)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "たまねぎ (たまねぎ, tamanegi)", + "wordSecond": "洋葱 (yangcong)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "にんじん (にんじん, ninjin)", + "wordSecond": "胡萝卜 (huluobo)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "じゃがいも (じゃがいも, jagaimo)", + "wordSecond": "土豆 (tudou)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "キャベツ (きゃべつ, kyabetsu)", + "wordSecond": "卷心菜 (juanxincai)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "レタス (れたす, retasu)", + "wordSecond": "生菜 (shengcai)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "きゅうり (きゅうり, kyuri)", + "wordSecond": "黄瓜 (huanggua)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ほうれんそう (ほうれんそう, hourensou)", + "wordSecond": "菠菜 (bocai)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ピーマン (ぴーまん, pi-man)", + "wordSecond": "青椒 (qingjiao)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "なす (なす, nasu)", + "wordSecond": "茄子 (qiezi)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "米 (こめ, kome)", + "wordSecond": "米 (mi)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "パン (ぱん, pan)", + "wordSecond": "面包 (mianbao)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "うどん (うどん, udon)", + "wordSecond": "乌冬面 (wudongmian)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ラーメン (らーめん, ra-men)", + "wordSecond": "拉面 (lamian)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ごはん (ごはん, gohan)", + "wordSecond": "米饭 (mifan)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "そば (そば, soba)", + "wordSecond": "荞麦面 (qiaomaimian)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "パスタ (ぱすた, pasuta)", + "wordSecond": "意大利面 (yidalimian)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "肉 (にく, niku)", + "wordSecond": "肉 (rou)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "牛肉 (ぎゅうにく, gyuniku)", + "wordSecond": "牛肉 (niurou)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "豚肉 (ぶたにく, butaniku)", + "wordSecond": "猪肉 (zhurou)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "鶏肉 (とりにく, toriniku)", + "wordSecond": "鸡肉 (jirou)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "魚 (さかな, sakana)", + "wordSecond": "鱼 (yu)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "卵 (たまご, tamago)", + "wordSecond": "鸡蛋 (jidan)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "牛乳 (ぎゅうにゅう, gyunyu)", + "wordSecond": "牛奶 (niunai)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "チーズ (ちーず, chi-zu)", + "wordSecond": "奶酪 (nailao)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "バター (ばたー, bata-)", + "wordSecond": "黄油 (huangyou)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ヨーグルト (よーぐると, yo-guruto)", + "wordSecond": "酸奶 (suannai)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "塩 (しお, shio)", + "wordSecond": "盐 (yan)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "砂糖 (さとう, satou)", + "wordSecond": "糖 (tang)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "こしょう (こしょう, koshou)", + "wordSecond": "胡椒 (hujiao)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "しょうゆ (しょうゆ, shouyu)", + "wordSecond": "酱油 (jiangyou)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "みそ (みそ, miso)", + "wordSecond": "味噌 (weiceng)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "油 (あぶら, abura)", + "wordSecond": "油 (you)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "水 (みず, mizu)", + "wordSecond": "水 (shui)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お茶 (おちゃ, ocha)", + "wordSecond": "茶 (cha)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "コーヒー (こーひー, ko-hi-)", + "wordSecond": "咖啡 (kafei)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ジュース (じゅーす, ju-su)", + "wordSecond": "果汁 (guozhi)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ビール (びーる, bi-ru)", + "wordSecond": "啤酒 (pijiu)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ワイン (わいん, wain)", + "wordSecond": "葡萄酒 (putaojiu)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "サラダ (さらだ, sarada)", + "wordSecond": "沙拉 (shala)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "スープ (すーぷ, su-pu)", + "wordSecond": "汤 (tang)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "カレー (かれー, kare-)", + "wordSecond": "咖喱 (gali)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ハンバーガー (はんばーがー, hanba-ga-)", + "wordSecond": "汉堡包 (hanbaobao)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ピザ (ぴざ, piza)", + "wordSecond": "披萨 (pisa)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "サンドイッチ (さんどいっち, sandoicchi)", + "wordSecond": "三明治 (sanmingzhi)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "オムレツ (おむれつ, omuretsu)", + "wordSecond": "煎蛋卷 (jiandanjuan)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "目玉焼き (めだまやき, medamayaki)", + "wordSecond": "煎蛋 (jiandan)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "餃子 (ぎょうざ, gyouza)", + "wordSecond": "饺子 (jiaozi)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "寿司 (すし, sushi)", + "wordSecond": "寿司 (shousi)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "天ぷら (てんぷら, tenpura)", + "wordSecond": "天妇罗 (tianfuluo)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "とんかつ (とんかつ, tonkatsu)", + "wordSecond": "炸猪排 (zhazhupai)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "焼き鳥 (やきとり, yakitori)", + "wordSecond": "烤鸡肉串 (kaojirouchuan)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "鍋 (なべ, nabe)", + "wordSecond": "火锅 (huoguo)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "フライドポテト (ふらいどぽてと, furaido poteto)", + "wordSecond": "炸薯条 (zhashutiao)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "アイスクリーム (あいすくりーむ, aisukuri-mu)", + "wordSecond": "冰淇淋 (bingqilin)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ケーキ (けーき, ke-ki)", + "wordSecond": "蛋糕 (dangao)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "クッキー (くっきー, kukki-)", + "wordSecond": "饼干 (binggan)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "チョコレート (ちょこれーと, chokore-to)", + "wordSecond": "巧克力 (qiaokeli)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "朝ごはん (あさごはん, asagohan)", + "wordSecond": "早餐 (zaocan)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "昼ごはん (ひるごはん, hirugohan)", + "wordSecond": "午餐 (wucan)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "晩ごはん (ばんごはん, bangohan)", + "wordSecond": "晚餐 (wancan)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "フォーク (ふぉーく, fo-ku)", + "wordSecond": "叉子 (chazi)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ナイフ (ないふ, naifu)", + "wordSecond": "刀 (dao)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "スプーン (すぷーん, supu-n)", + "wordSecond": "勺子 (shaozi)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "はし (はし, hashi)", + "wordSecond": "筷子 (kuaizi)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お皿 (おさら, osara)", + "wordSecond": "盘子 (panzi)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "コップ (こっぷ, koppu)", + "wordSecond": "杯子 (beizi)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "なべ (なべ, nabe)", + "wordSecond": "锅 (guo)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "フライパン (ふらいぱん, furaipan)", + "wordSecond": "平底锅 (pingdiguo)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "オーブン (おーぶん, o-bun)", + "wordSecond": "烤箱 (kaoxiang)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "冷蔵庫 (れいぞうこ, reizouko)", + "wordSecond": "冰箱 (bingxiang)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "電子レンジ (でんしれんじ, denshi renji)", + "wordSecond": "微波炉 (weibolu)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "切る (きる, kiru)", + "wordSecond": "切 (qie)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "焼く (やく, yaku)", + "wordSecond": "烤 (kao)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ゆでる (ゆでる, yuderu)", + "wordSecond": "煮 (zhu)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "炒める (いためる, itameru)", + "wordSecond": "炒 (chao)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "揚げる (あげる, ageru)", + "wordSecond": "炸 (zha)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "混ぜる (まぜる, mazeru)", + "wordSecond": "混合 (hunhe)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "食べる (たべる, taberu)", + "wordSecond": "吃 (chi)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "飲む (のむ, nomu)", + "wordSecond": "喝 (he)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "作る (つくる, tsukuru)", + "wordSecond": "做 (zuo)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "買う (かう, kau)", + "wordSecond": "买 (mai)", + "createdAt": "2026-02-19T13:58:25.307Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_ko_pl_A2.json b/output/2026_02_19_food_cooking_ko_pl_A2.json new file mode 100644 index 0000000..9d61a31 --- /dev/null +++ b/output/2026_02_19_food_cooking_ko_pl_A2.json @@ -0,0 +1,1150 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:00:42.521Z", + "metadata": { + "itemCount": 87, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "사과 (sagwa)", + "wordSecond": "jabłko", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "바나나 (banana)", + "wordSecond": "banan", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "우유 (uyu)", + "wordSecond": "mleko", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "빵 (ppang)", + "wordSecond": "chleb", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "계란 (gyeran)", + "wordSecond": "jajko", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "쌀 (ssal)", + "wordSecond": "ryż", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "고기 (gogi)", + "wordSecond": "mięso", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "생선 (saengseon)", + "wordSecond": "ryba", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "치즈 (chijeu)", + "wordSecond": "ser", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "버터 (beoteo)", + "wordSecond": "masło", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "소금 (sogeum)", + "wordSecond": "sól", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "후추 (huchu)", + "wordSecond": "pieprz", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "설탕 (seoltang)", + "wordSecond": "cukier", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "물 (mul)", + "wordSecond": "woda", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "주스 (juseu)", + "wordSecond": "sok", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "차 (cha)", + "wordSecond": "herbata", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "커피 (keopi)", + "wordSecond": "kawa", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "야채 (yachae)", + "wordSecond": "warzywa", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "과일 (gwail)", + "wordSecond": "owoce", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "감자 (gamja)", + "wordSecond": "ziemniak", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "양파 (yangpa)", + "wordSecond": "cebula", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "마늘 (maneul)", + "wordSecond": "czosnek", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "당근 (danggeun)", + "wordSecond": "marchew", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "토마토 (tomato)", + "wordSecond": "pomidor", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "오이 (oi)", + "wordSecond": "ogórek", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "상추 (sangchu)", + "wordSecond": "sałata", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "브로콜리 (beurokolli)", + "wordSecond": "brokuł", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "딸기 (ttalgi)", + "wordSecond": "truskawka", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "포도 (podo)", + "wordSecond": "winogrono", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "오렌지 (orenji)", + "wordSecond": "pomarańcza", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "레몬 (remon)", + "wordSecond": "cytryna", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "수박 (subak)", + "wordSecond": "arbuz", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "복숭아 (boksunga)", + "wordSecond": "brzoskwinia", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "배 (bae)", + "wordSecond": "gruszka", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "파인애플 (painaepeul)", + "wordSecond": "ananas", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "망고 (manggo)", + "wordSecond": "mango", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "키위 (kiwi)", + "wordSecond": "kiwi", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "햄 (haem)", + "wordSecond": "szynka", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "소시지 (sosiji)", + "wordSecond": "kiełbasa", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "닭고기 (dakgogi)", + "wordSecond": "kurczak", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "돼지고기 (dwaejigogi)", + "wordSecond": "wieprzowina", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "소고기 (sogogi)", + "wordSecond": "wołowina", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "국 (guk)", + "wordSecond": "zupa", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "김치 (gimchi)", + "wordSecond": "kimchi", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "라면 (ramyeon)", + "wordSecond": "ramen", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "비빔밥 (bibimbap)", + "wordSecond": "bibimbap", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "불고기 (bulgogi)", + "wordSecond": "bulgogi", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "김밥 (gimbap)", + "wordSecond": "gimbap", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "만두 (mandu)", + "wordSecond": "pierogi", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "피자 (pija)", + "wordSecond": "pizza", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "햄버거 (haembeogeo)", + "wordSecond": "hamburger", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "샌드위치 (saendeuwichi)", + "wordSecond": "kanapka", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "스파게티 (seupageti)", + "wordSecond": "spaghetti", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "샐러드 (saelleodeu)", + "wordSecond": "sałatka", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "케이크 (keikeu)", + "wordSecond": "ciasto", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "아이스크림 (aiseukeurim)", + "wordSecond": "lody", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "초콜릿 (chokollit)", + "wordSecond": "czekolada", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "쿠키 (kuki)", + "wordSecond": "ciastko", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "요구르트 (yogureuteu)", + "wordSecond": "jogurt", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "식사 (siksa)", + "wordSecond": "posiłek", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "아침식사 (achimsiksa)", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "점심식사 (jeomsimsiksa)", + "wordSecond": "obiad", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "저녁식사 (jeonyeoksiksa)", + "wordSecond": "kolacja", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "간식 (gansik)", + "wordSecond": "przekąska", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "식당 (sikdang)", + "wordSecond": "restauracja", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "주방 (jubang)", + "wordSecond": "kuchnia", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "냄비 (naembi)", + "wordSecond": "garnek", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "프라이팬 (peuraipaen)", + "wordSecond": "patelnia", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "접시 (jeopsi)", + "wordSecond": "talerz", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "컵 (keop)", + "wordSecond": "kubek", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "포크 (pokeu)", + "wordSecond": "widelec", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "나이프 (naipeu)", + "wordSecond": "nóż", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "숟가락 (sutgarak)", + "wordSecond": "łyżka", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "국자 (gukja)", + "wordSecond": "łyżka wazowa", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "오븐 (obeun)", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "전자레인지 (jeonjareinji)", + "wordSecond": "mikrofalówka", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "냉장고 (naengjanggo)", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "믹서기 (mikseogi)", + "wordSecond": "mikser", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "칼 (kal)", + "wordSecond": "nóż (kuchenny)", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "도마 (doma)", + "wordSecond": "deska do krojenia", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "요리하다 (yorihada)", + "wordSecond": "gotować", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "굽다 (gupda)", + "wordSecond": "piec", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "끓이다 (kkeurida)", + "wordSecond": "gotować (np. wodę)", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "썰다 (sseolda)", + "wordSecond": "kroić", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "섞다 (seokkda)", + "wordSecond": "mieszać", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "튀기다 (twigida)", + "wordSecond": "smażyć (w głębokim tłuszczu)", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "맛있다 (masitda)", + "wordSecond": "być smacznym", + "createdAt": "2026-02-19T14:00:42.521Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_pt_de_A2.json b/output/2026_02_19_food_cooking_pt_de_A2.json new file mode 100644 index 0000000..fa6c51e --- /dev/null +++ b/output/2026_02_19_food_cooking_pt_de_A2.json @@ -0,0 +1,1137 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:50:05.816Z", + "metadata": { + "itemCount": 86, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pão", + "wordSecond": "Brot", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "queijo", + "wordSecond": "Käse", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "leite", + "wordSecond": "Milch", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "café", + "wordSecond": "Kaffee", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chá", + "wordSecond": "Tee", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "água", + "wordSecond": "Wasser", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "açúcar", + "wordSecond": "Zucker", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sal", + "wordSecond": "Salz", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ovo", + "wordSecond": "Ei", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "manteiga", + "wordSecond": "Butter", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "arroz", + "wordSecond": "Reis", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "feijão", + "wordSecond": "Bohnen", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "macarrão", + "wordSecond": "Nudeln", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "carne", + "wordSecond": "Fleisch", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "frango", + "wordSecond": "Hähnchen", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "peixe", + "wordSecond": "Fisch", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "batata", + "wordSecond": "Kartoffel", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cenoura", + "wordSecond": "Karotte", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tomate", + "wordSecond": "Tomate", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cebola", + "wordSecond": "Zwiebel", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "alho", + "wordSecond": "Knoblauch", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pimenta", + "wordSecond": "Pfeffer", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "limão", + "wordSecond": "Zitrone", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "laranja", + "wordSecond": "Orange", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "maçã", + "wordSecond": "Apfel", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "banana", + "wordSecond": "Banane", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "uva", + "wordSecond": "Traube", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "morango", + "wordSecond": "Erdbeere", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "suco", + "wordSecond": "Saft", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "iogurte", + "wordSecond": "Joghurt", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "bolo", + "wordSecond": "Kuchen", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "biscoito", + "wordSecond": "Keks", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sorvete", + "wordSecond": "Eis", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chocolate", + "wordSecond": "Schokolade", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sanduíche", + "wordSecond": "Sandwich", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sopa", + "wordSecond": "Suppe", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "salada", + "wordSecond": "Salat", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pizza", + "wordSecond": "Pizza", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "hambúrguer", + "wordSecond": "Hamburger", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "batata frita", + "wordSecond": "Pommes frites", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cachorro-quente", + "wordSecond": "Hotdog", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fruta", + "wordSecond": "Frucht", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "legume", + "wordSecond": "Gemüse", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cereal", + "wordSecond": "Müsli", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "presunto", + "wordSecond": "Schinken", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "salsicha", + "wordSecond": "Wurst", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "massa", + "wordSecond": "Teigwaren", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "molho", + "wordSecond": "Soße", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "azeite", + "wordSecond": "Olivenöl", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vinagre", + "wordSecond": "Essig", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "farinha", + "wordSecond": "Mehl", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fermento", + "wordSecond": "Hefe", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "canela", + "wordSecond": "Zimt", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mel", + "wordSecond": "Honig", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "gelo", + "wordSecond": "Eiswürfel", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "prato", + "wordSecond": "Teller", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "garfo", + "wordSecond": "Gabel", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "faca", + "wordSecond": "Messer", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "colher", + "wordSecond": "Löffel", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "copo", + "wordSecond": "Glas", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "xícara", + "wordSecond": "Tasse", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "panela", + "wordSecond": "Topf", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "frigideira", + "wordSecond": "Pfanne", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fogão", + "wordSecond": "Herd", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "forno", + "wordSecond": "Ofen", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "geladeira", + "wordSecond": "Kühlschrank", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "micro-ondas", + "wordSecond": "Mikrowelle", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "liquidificador", + "wordSecond": "Mixer", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cozinhar", + "wordSecond": "kochen", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "assar", + "wordSecond": "backen", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fritar", + "wordSecond": "braten", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ferver", + "wordSecond": "kochen", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "misturar", + "wordSecond": "mischen", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cortar", + "wordSecond": "schneiden", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "descascar", + "wordSecond": "schälen", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lavar", + "wordSecond": "waschen", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "comer", + "wordSecond": "essen", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "beber", + "wordSecond": "trinken", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "café da manhã", + "wordSecond": "Frühstück", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "almoço", + "wordSecond": "Mittagessen", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "jantar", + "wordSecond": "Abendessen", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lanche", + "wordSecond": "Snack", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sobremesa", + "wordSecond": "Nachtisch", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "refeição", + "wordSecond": "Mahlzeit", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "restaurante", + "wordSecond": "Restaurant", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "supermercado", + "wordSecond": "Supermarkt", + "createdAt": "2026-02-19T13:50:05.816Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_pt_fr_A2.json b/output/2026_02_19_food_cooking_pt_fr_A2.json new file mode 100644 index 0000000..8a97e2b --- /dev/null +++ b/output/2026_02_19_food_cooking_pt_fr_A2.json @@ -0,0 +1,1189 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:50:23.380Z", + "metadata": { + "itemCount": 90, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pão", + "wordSecond": "pain", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "leite", + "wordSecond": "lait", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "café", + "wordSecond": "café", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "queijo", + "wordSecond": "fromage", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ovo", + "wordSecond": "œuf", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "manteiga", + "wordSecond": "beurre", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "açúcar", + "wordSecond": "sucre", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chá", + "wordSecond": "thé", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "suco", + "wordSecond": "jus", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fruta", + "wordSecond": "fruit", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "maçã", + "wordSecond": "pomme", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "banana", + "wordSecond": "banane", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "laranja", + "wordSecond": "orange", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "uva", + "wordSecond": "raisin", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "morango", + "wordSecond": "fraise", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "arroz", + "wordSecond": "riz", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "feijão", + "wordSecond": "haricot", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "macarrão", + "wordSecond": "pâtes", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "carne", + "wordSecond": "viande", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "frango", + "wordSecond": "poulet", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "peixe", + "wordSecond": "poisson", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "batata", + "wordSecond": "pomme de terre", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cenoura", + "wordSecond": "carotte", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cebola", + "wordSecond": "oignon", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "alho", + "wordSecond": "ail", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tomate", + "wordSecond": "tomate", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "alface", + "wordSecond": "laitue", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pimenta", + "wordSecond": "poivre", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sal", + "wordSecond": "sel", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "azeite", + "wordSecond": "huile d'olive", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vinagre", + "wordSecond": "vinaigre", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pão de queijo", + "wordSecond": "pain au fromage", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sanduíche", + "wordSecond": "sandwich", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sopa", + "wordSecond": "soupe", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "salada", + "wordSecond": "salade", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pizza", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "hambúrguer", + "wordSecond": "hamburger", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "batata frita", + "wordSecond": "frites", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "bolo", + "wordSecond": "gâteau", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "biscoito", + "wordSecond": "biscuit", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chocolate", + "wordSecond": "chocolat", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sorvete", + "wordSecond": "glace", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "iogurte", + "wordSecond": "yaourt", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cereal", + "wordSecond": "céréales", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "torrada", + "wordSecond": "toast", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "presunto", + "wordSecond": "jambon", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "salsicha", + "wordSecond": "saucisse", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "massa", + "wordSecond": "pâte", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "molho", + "wordSecond": "sauce", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "limão", + "wordSecond": "citron", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "abacaxi", + "wordSecond": "ananas", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "manga", + "wordSecond": "mangue", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "melancia", + "wordSecond": "pastèque", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pêssego", + "wordSecond": "pêche", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pêra", + "wordSecond": "poire", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "kiwi", + "wordSecond": "kiwi", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "brócolis", + "wordSecond": "brocoli", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "espinafre", + "wordSecond": "épinard", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pepino", + "wordSecond": "concombre", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pimentão", + "wordSecond": "poivron", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cogumelo", + "wordSecond": "champignon", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "milho", + "wordSecond": "maïs", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ervilha", + "wordSecond": "petit pois", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "azeitona", + "wordSecond": "olive", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pão francês", + "wordSecond": "baguette", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "café da manhã", + "wordSecond": "petit déjeuner", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "almoço", + "wordSecond": "déjeuner", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "jantar", + "wordSecond": "dîner", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lanche", + "wordSecond": "goûter", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "garfo", + "wordSecond": "fourchette", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "faca", + "wordSecond": "couteau", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "colher", + "wordSecond": "cuillère", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "prato", + "wordSecond": "assiette", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "copo", + "wordSecond": "verre", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "xícara", + "wordSecond": "tasse", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "panela", + "wordSecond": "casserole", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "frigideira", + "wordSecond": "poêle", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fogão", + "wordSecond": "cuisinière", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "forno", + "wordSecond": "four", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "geladeira", + "wordSecond": "réfrigérateur", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "micro-ondas", + "wordSecond": "micro-ondes", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cozinhar", + "wordSecond": "cuisiner", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ferver", + "wordSecond": "bouillir", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fritar", + "wordSecond": "frire", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "assar", + "wordSecond": "cuire au four", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cortar", + "wordSecond": "couper", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "misturar", + "wordSecond": "mélanger", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lavar", + "wordSecond": "laver", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "comer", + "wordSecond": "manger", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "beber", + "wordSecond": "boire", + "createdAt": "2026-02-19T13:50:23.380Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_pt_it_A2.json b/output/2026_02_19_food_cooking_pt_it_A2.json new file mode 100644 index 0000000..ba757fa --- /dev/null +++ b/output/2026_02_19_food_cooking_pt_it_A2.json @@ -0,0 +1,1176 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:50:40.801Z", + "metadata": { + "itemCount": 89, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pão", + "wordSecond": "pane", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "leite", + "wordSecond": "latte", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "café", + "wordSecond": "caffè", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chá", + "wordSecond": "tè", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "açúcar", + "wordSecond": "zucchero", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ovo", + "wordSecond": "uovo", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "queijo", + "wordSecond": "formaggio", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "manteiga", + "wordSecond": "burro", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "presunto", + "wordSecond": "prosciutto", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fruta", + "wordSecond": "frutta", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "maçã", + "wordSecond": "mela", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "banana", + "wordSecond": "banana", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "laranja", + "wordSecond": "arancia", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "uva", + "wordSecond": "uva", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "morango", + "wordSecond": "fragola", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "arroz", + "wordSecond": "riso", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "feijão", + "wordSecond": "fagioli", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "macarrão", + "wordSecond": "pasta", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "batata", + "wordSecond": "patata", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cenoura", + "wordSecond": "carota", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tomate", + "wordSecond": "pomodoro", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cebola", + "wordSecond": "cipolla", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "alho", + "wordSecond": "aglio", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sal", + "wordSecond": "sale", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pimenta", + "wordSecond": "pepe", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "azeite", + "wordSecond": "olio d'oliva", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vinagre", + "wordSecond": "aceto", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "carne", + "wordSecond": "carne", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "frango", + "wordSecond": "pollo", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "peixe", + "wordSecond": "pesce", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "camarão", + "wordSecond": "gambero", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sopa", + "wordSecond": "zuppa", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "salada", + "wordSecond": "insalata", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sanduíche", + "wordSecond": "panino", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pizza", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bolo", + "wordSecond": "torta", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "biscoito", + "wordSecond": "biscotto", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chocolate", + "wordSecond": "cioccolato", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sorvete", + "wordSecond": "gelato", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "água", + "wordSecond": "acqua", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "suco", + "wordSecond": "succo", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "refrigerante", + "wordSecond": "bibita", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vinho", + "wordSecond": "vino", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cerveja", + "wordSecond": "birra", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "café da manhã", + "wordSecond": "colazione", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "almoço", + "wordSecond": "pranzo", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "jantar", + "wordSecond": "cena", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lanche", + "wordSecond": "spuntino", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "faca", + "wordSecond": "coltello", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "garfo", + "wordSecond": "forchetta", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "colher", + "wordSecond": "cucchiaio", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "prato", + "wordSecond": "piatto", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "copo", + "wordSecond": "bicchiere", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "xícara", + "wordSecond": "tazza", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "panela", + "wordSecond": "pentola", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "frigideira", + "wordSecond": "padella", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "forno", + "wordSecond": "forno", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fogão", + "wordSecond": "fornello", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "geladeira", + "wordSecond": "frigorifero", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "micro-ondas", + "wordSecond": "microonde", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "torradeira", + "wordSecond": "tostapane", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "liquidificador", + "wordSecond": "frullatore", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cozinhar", + "wordSecond": "cucinare", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ferver", + "wordSecond": "bollire", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "assar", + "wordSecond": "cuocere al forno", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fritar", + "wordSecond": "friggere", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "grelhar", + "wordSecond": "grigliare", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cortar", + "wordSecond": "tagliare", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "misturar", + "wordSecond": "mescolare", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "descascar", + "wordSecond": "sbucciare", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lavar", + "wordSecond": "lavare", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "comer", + "wordSecond": "mangiare", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "beber", + "wordSecond": "bere", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "servir", + "wordSecond": "servire", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pimentão", + "wordSecond": "peperone", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "alface", + "wordSecond": "lattuga", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "espinafre", + "wordSecond": "spinaci", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cogumelo", + "wordSecond": "fungo", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "limão", + "wordSecond": "limone", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "abacaxi", + "wordSecond": "ananas", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "melancia", + "wordSecond": "anguria", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pêssego", + "wordSecond": "pesca", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pão de forma", + "wordSecond": "pane in cassetta", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "iogurte", + "wordSecond": "yogurt", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "creme de leite", + "wordSecond": "panna", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mostarda", + "wordSecond": "senape", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ketchup", + "wordSecond": "ketchup", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "farinha", + "wordSecond": "farina", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fermento", + "wordSecond": "lievito", + "createdAt": "2026-02-19T13:50:40.801Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_pt_ja_A2.json b/output/2026_02_19_food_cooking_pt_ja_A2.json new file mode 100644 index 0000000..13094ab --- /dev/null +++ b/output/2026_02_19_food_cooking_pt_ja_A2.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:51:10.714Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pão", + "wordSecond": "パン (ぱん, pan)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "arroz", + "wordSecond": "ご飯 (ごはん, gohan)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "macarrão", + "wordSecond": "麺 (めん, men)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "carne", + "wordSecond": "肉 (にく, niku)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "frango", + "wordSecond": "鶏肉 (とりにく, toriniku)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "peixe", + "wordSecond": "魚 (さかな, sakana)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ovo", + "wordSecond": "卵 (たまご, tamago)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "queijo", + "wordSecond": "チーズ (ちーず, chīzu)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "leite", + "wordSecond": "牛乳 (ぎゅうにゅう, gyūnyū)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "manteiga", + "wordSecond": "バター (ばたー, batā)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "açúcar", + "wordSecond": "砂糖 (さとう, satō)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sal", + "wordSecond": "塩 (しお, shio)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pimenta", + "wordSecond": "胡椒 (こしょう, koshō)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "óleo", + "wordSecond": "油 (あぶら, abura)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "água", + "wordSecond": "水 (みず, mizu)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "café", + "wordSecond": "コーヒー (こーひー, kōhī)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "chá", + "wordSecond": "お茶 (おちゃ, ocha)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "suco", + "wordSecond": "ジュース (じゅーす, jūsu)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cerveja", + "wordSecond": "ビール (びーる, bīru)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "vinho", + "wordSecond": "ワイン (わいん, wain)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "maçã", + "wordSecond": "りんご (りんご, ringo)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "banana", + "wordSecond": "バナナ (ばなな, banana)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "laranja", + "wordSecond": "オレンジ (おれんじ, orenji)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "uva", + "wordSecond": "ぶどう (ぶどう, budō)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "morango", + "wordSecond": "いちご (いちご, ichigo)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tomate", + "wordSecond": "トマト (とまと, tomato)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "batata", + "wordSecond": "じゃがいも (じゃがいも, jagaimo)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cebola", + "wordSecond": "玉ねぎ (たまねぎ, tamanegi)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "alho", + "wordSecond": "にんにく (にんにく, ninniku)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cenoura", + "wordSecond": "にんじん (にんじん, ninjin)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "alface", + "wordSecond": "レタス (れたす, retasu)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pão de queijo", + "wordSecond": "チーズパン (ちーずぱん, chīzupan)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "feijão", + "wordSecond": "豆 (まめ, mame)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sopa", + "wordSecond": "スープ (すーぷ, sūpu)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "salada", + "wordSecond": "サラダ (さらだ, sarada)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sanduíche", + "wordSecond": "サンドイッチ (さんどいっち, sandoitchi)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pizza", + "wordSecond": "ピザ (ぴざ, piza)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "hambúrguer", + "wordSecond": "ハンバーガー (はんばーがー, hanbāgā)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sushi", + "wordSecond": "寿司 (すし, sushi)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tempurá", + "wordSecond": "天ぷら (てんぷら, tenpura)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "arroz frito", + "wordSecond": "チャーハン (ちゃーはん, chāhan)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "bolo", + "wordSecond": "ケーキ (けーき, kēki)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "biscoito", + "wordSecond": "クッキー (くっきー, kukkī)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "chocolate", + "wordSecond": "チョコレート (ちょこれーと, chokorēto)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sorvete", + "wordSecond": "アイスクリーム (あいすくりーむ, aisukurīmu)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "café da manhã", + "wordSecond": "朝ご飯 (あさごはん, asagohan)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "almoço", + "wordSecond": "昼ご飯 (ひるごはん, hirugohan)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "jantar", + "wordSecond": "晩ご飯 (ばんごはん, bangohan)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "lanche", + "wordSecond": "おやつ (おやつ, oyatsu)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "faca", + "wordSecond": "ナイフ (ないふ, naifu)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "garfo", + "wordSecond": "フォーク (ふぉーく, fōku)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "colher", + "wordSecond": "スプーン (すぷーん, supūn)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "prato", + "wordSecond": "皿 (さら, sara)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "copo", + "wordSecond": "コップ (こっぷ, koppu)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "xícara", + "wordSecond": "カップ (かっぷ, kappu)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "panela", + "wordSecond": "鍋 (なべ, nabe)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "frigideira", + "wordSecond": "フライパン (ふらいぱん, furaipan)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "fogão", + "wordSecond": "コンロ (こんろ, konro)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "geladeira", + "wordSecond": "冷蔵庫 (れいぞうこ, reizōko)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "micro-ondas", + "wordSecond": "電子レンジ (でんしれんじ, denshirenji)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cozinhar", + "wordSecond": "料理する (りょうりする, ryōri suru)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ferver", + "wordSecond": "沸かす (わかす, wakasu)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "fritar", + "wordSecond": "揚げる (あげる, ageru)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "assar", + "wordSecond": "焼く (やく, yaku)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cortar", + "wordSecond": "切る (きる, kiru)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "misturar", + "wordSecond": "混ぜる (まぜる, mazeru)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "comer", + "wordSecond": "食べる (たべる, taberu)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "beber", + "wordSecond": "飲む (のむ, nomu)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "gostoso", + "wordSecond": "美味しい (おいしい, oishii)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "quente", + "wordSecond": "熱い (あつい, atsui)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "frio", + "wordSecond": "冷たい (つめたい, tsumetai)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "doce", + "wordSecond": "甘い (あまい, amai)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "azedo", + "wordSecond": "酸っぱい (すっぱい, suppai)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "salgado", + "wordSecond": "塩辛い (しおからい, shiokarai)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "amargo", + "wordSecond": "苦い (にがい, nigai)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "picante", + "wordSecond": "辛い (からい, karai)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "mercado", + "wordSecond": "スーパー (すーぱー, sūpā)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "restaurante", + "wordSecond": "レストラン (れすとらん, resutoran)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cozinha", + "wordSecond": "台所 (だいどころ, daidokoro)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "mesa", + "wordSecond": "テーブル (てーぶる, tēburu)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cadeira", + "wordSecond": "椅子 (いす, isu)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "receita", + "wordSecond": "レシピ (れしぴ, reshipi)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "compras", + "wordSecond": "買い物 (かいもの, kaimono)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "limão", + "wordSecond": "レモン (れもん, remon)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "abacaxi", + "wordSecond": "パイナップル (ぱいなっぷる, painappuru)", + "createdAt": "2026-02-19T13:51:10.714Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_pt_ko_A2.json b/output/2026_02_19_food_cooking_pt_ko_A2.json new file mode 100644 index 0000000..90c0747 --- /dev/null +++ b/output/2026_02_19_food_cooking_pt_ko_A2.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:51:59.390Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pão", + "wordSecond": "빵 (ppang)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "arroz", + "wordSecond": "밥 (bap)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "feijão", + "wordSecond": "콩 (kong)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "carne", + "wordSecond": "고기 (gogi)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "frango", + "wordSecond": "닭 (dak)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "peixe", + "wordSecond": "생선 (saengseon)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ovo", + "wordSecond": "계란 (gyeran)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "leite", + "wordSecond": "우유 (uyu)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "queijo", + "wordSecond": "치즈 (chijeu)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "manteiga", + "wordSecond": "버터 (beoteo)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "açúcar", + "wordSecond": "설탕 (seoltang)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sal", + "wordSecond": "소금 (sogeum)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pimenta", + "wordSecond": "후추 (huchu)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "óleo", + "wordSecond": "기름 (gireum)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "água", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "café", + "wordSecond": "커피 (keopi)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "chá", + "wordSecond": "차 (cha)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "suco", + "wordSecond": "주스 (juseu)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cerveja", + "wordSecond": "맥주 (maekju)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "vinho", + "wordSecond": "와인 (wain)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "maçã", + "wordSecond": "사과 (sagwa)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "banana", + "wordSecond": "바나나 (banana)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "laranja", + "wordSecond": "오렌지 (orenji)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "morango", + "wordSecond": "딸기 (ttalgi)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "uva", + "wordSecond": "포도 (podo)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "melancia", + "wordSecond": "수박 (subak)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "abacaxi", + "wordSecond": "파인애플 (paine-aepeul)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "manga", + "wordSecond": "망고 (manggo)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "limão", + "wordSecond": "레몬 (remon)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pêssego", + "wordSecond": "복숭아 (boksunga)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "batata", + "wordSecond": "감자 (gamja)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cenoura", + "wordSecond": "당근 (danggeun)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cebola", + "wordSecond": "양파 (yangpa)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "alho", + "wordSecond": "마늘 (maneul)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tomate", + "wordSecond": "토마토 (tomato)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pimentão", + "wordSecond": "피망 (pimang)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "alface", + "wordSecond": "상추 (sangchu)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "brócolis", + "wordSecond": "브로콜리 (beurokolli)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "espinafre", + "wordSecond": "시금치 (sigeumchi)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cogumelo", + "wordSecond": "버섯 (beoseot)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "macarrão", + "wordSecond": "면 (myeon)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pizza", + "wordSecond": "피자 (pija)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "hambúrguer", + "wordSecond": "햄버거 (haembeogeo)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sanduíche", + "wordSecond": "샌드위치 (saendeuwichi)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sopa", + "wordSecond": "국 (guk)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "salada", + "wordSecond": "샐러드 (saelleodeu)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "bolo", + "wordSecond": "케이크 (keikeu)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "biscoito", + "wordSecond": "쿠키 (kuki)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "chocolate", + "wordSecond": "초콜릿 (chokollit)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sorvete", + "wordSecond": "아이스크림 (aiseukeurim)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "café da manhã", + "wordSecond": "아침 식사 (achim siksa)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "almoço", + "wordSecond": "점심 식사 (jeomsim siksa)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "jantar", + "wordSecond": "저녁 식사 (jeonyeok siksa)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lanche", + "wordSecond": "간식 (gansik)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "faca", + "wordSecond": "칼 (kal)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "garfo", + "wordSecond": "포크 (pokeu)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "colher", + "wordSecond": "숟가락 (sutgarak)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "prato", + "wordSecond": "접시 (jeopsi)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "copo", + "wordSecond": "컵 (keop)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "panela", + "wordSecond": "냄비 (naembi)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "frigideira", + "wordSecond": "프라이팬 (peuraipaen)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "forno", + "wordSecond": "오븐 (obeun)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "geladeira", + "wordSecond": "냉장고 (naengjanggo)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "micro-ondas", + "wordSecond": "전자레인지 (jeonjareinji)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "fogão", + "wordSecond": "가스레인지 (gaseureinji)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cozinhar", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ferver", + "wordSecond": "끓이다 (kkeurida)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "fritar", + "wordSecond": "튀기다 (twigida)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "assar", + "wordSecond": "굽다 (gupda)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cortar", + "wordSecond": "자르다 (jareuda)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "misturar", + "wordSecond": "섞다 (seokkda)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lavar", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "comer", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "beber", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "comprar", + "wordSecond": "사다 (sada)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "preparar", + "wordSecond": "준비하다 (junbihada)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "servir", + "wordSecond": "내놓다 (naenota)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "gostoso", + "wordSecond": "맛있다 (masitda)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "doce", + "wordSecond": "달다 (dalda)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "salgado", + "wordSecond": "짜다 (jjada)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "azedo", + "wordSecond": "시다 (sida)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "quente", + "wordSecond": "뜨겁다 (tteugeopda)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "frio", + "wordSecond": "차갑다 (chagapda)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "restaurante", + "wordSecond": "식당 (sikdang)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "supermercado", + "wordSecond": "슈퍼마켓 (syupeomaket)", + "createdAt": "2026-02-19T13:51:59.390Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_pt_pl_A2.json b/output/2026_02_19_food_cooking_pt_pl_A2.json new file mode 100644 index 0000000..a82c8b1 --- /dev/null +++ b/output/2026_02_19_food_cooking_pt_pl_A2.json @@ -0,0 +1,1150 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:52:16.678Z", + "metadata": { + "itemCount": 87, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pão", + "wordSecond": "chleb", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "leite", + "wordSecond": "mleko", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "queijo", + "wordSecond": "ser", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "manteiga", + "wordSecond": "masło", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ovo", + "wordSecond": "jajko", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "café", + "wordSecond": "kawa", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "chá", + "wordSecond": "herbata", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "suco", + "wordSecond": "sok", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "água", + "wordSecond": "woda", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "arroz", + "wordSecond": "ryż", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "feijão", + "wordSecond": "fasola", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "macarrão", + "wordSecond": "makaron", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "batata", + "wordSecond": "ziemniak", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "carne", + "wordSecond": "mięso", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "frango", + "wordSecond": "kurczak", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "peixe", + "wordSecond": "ryba", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "salada", + "wordSecond": "sałatka", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sopa", + "wordSecond": "zupa", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sanduíche", + "wordSecond": "kanapka", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pizza", + "wordSecond": "pizza", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "bolo", + "wordSecond": "ciasto", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "biscoito", + "wordSecond": "ciastko", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "chocolate", + "wordSecond": "czekolada", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "açúcar", + "wordSecond": "cukier", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sal", + "wordSecond": "sól", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pimenta", + "wordSecond": "pieprz", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "óleo", + "wordSecond": "olej", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "vinagre", + "wordSecond": "ocet", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tomate", + "wordSecond": "pomidor", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cebola", + "wordSecond": "cebula", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "alho", + "wordSecond": "czosnek", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cenoura", + "wordSecond": "marchew", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "alface", + "wordSecond": "sałata", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "banana", + "wordSecond": "banan", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "maçã", + "wordSecond": "jabłko", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "laranja", + "wordSecond": "pomarańcza", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "uva", + "wordSecond": "winogrono", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "morango", + "wordSecond": "truskawka", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "limão", + "wordSecond": "cytryna", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "abacaxi", + "wordSecond": "ananas", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "manga", + "wordSecond": "mango", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "melancia", + "wordSecond": "arbuz", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pêra", + "wordSecond": "gruszka", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pêssego", + "wordSecond": "brzoskwinia", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cereja", + "wordSecond": "wiśnia", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "kiwi", + "wordSecond": "kiwi", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "presunto", + "wordSecond": "szynka", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "salsicha", + "wordSecond": "kiełbasa", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "iogurte", + "wordSecond": "jogurt", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sorvete", + "wordSecond": "lody", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "gelo", + "wordSecond": "lód", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "farinha", + "wordSecond": "mąka", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "fermento", + "wordSecond": "drożdże", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "canela", + "wordSecond": "cynamon", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "mel", + "wordSecond": "miód", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "mostarda", + "wordSecond": "musztarda", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ketchup", + "wordSecond": "keczup", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "maionese", + "wordSecond": "majonez", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "azeite", + "wordSecond": "oliwa z oliwek", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "margarina", + "wordSecond": "margaryna", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "creme", + "wordSecond": "śmietana", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "requeijão", + "wordSecond": "ser topiony", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "bacon", + "wordSecond": "bekon", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "linguiça", + "wordSecond": "kiełbasa", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "costela", + "wordSecond": "żeberko", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "filé", + "wordSecond": "stek", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "hambúrguer", + "wordSecond": "hamburger", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "batata frita", + "wordSecond": "frytki", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "omelete", + "wordSecond": "omlet", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "panqueca", + "wordSecond": "naleśnik", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cereal", + "wordSecond": "płatki śniadaniowe", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "torrada", + "wordSecond": "tost", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "geleia", + "wordSecond": "dżem", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "marmelada", + "wordSecond": "marmolada", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "café da manhã", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "almoço", + "wordSecond": "obiad", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "jantar", + "wordSecond": "kolacja", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sobremesa", + "wordSecond": "deser", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "garfo", + "wordSecond": "widelec", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "faca", + "wordSecond": "nóż", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "colher", + "wordSecond": "łyżka", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "prato", + "wordSecond": "talerz", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "copo", + "wordSecond": "szklanka", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "panela", + "wordSecond": "garnek", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "frigideira", + "wordSecond": "patelnia", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "forno", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "geladeira", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T13:52:16.678Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_pt_zh_A2.json b/output/2026_02_19_food_cooking_pt_zh_A2.json new file mode 100644 index 0000000..9382bea --- /dev/null +++ b/output/2026_02_19_food_cooking_pt_zh_A2.json @@ -0,0 +1,1137 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:51:34.799Z", + "metadata": { + "itemCount": 86, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pão", + "wordSecond": "面包 (miànbāo)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "leite", + "wordSecond": "牛奶 (niúnǎi)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ovo", + "wordSecond": "鸡蛋 (jīdàn)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "queijo", + "wordSecond": "奶酪 (nǎilào)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "manteiga", + "wordSecond": "黄油 (huángyóu)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "café", + "wordSecond": "咖啡 (kāfēi)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "chá", + "wordSecond": "茶 (chá)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "suco", + "wordSecond": "果汁 (guǒzhī)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "água", + "wordSecond": "水 (shuǐ)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "arroz", + "wordSecond": "米饭 (mǐfàn)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "feijão", + "wordSecond": "豆子 (dòuzi)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "macarrão", + "wordSecond": "面条 (miàntiáo)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "carne", + "wordSecond": "肉 (ròu)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "frango", + "wordSecond": "鸡肉 (jīròu)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "peixe", + "wordSecond": "鱼 (yú)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "porco", + "wordSecond": "猪肉 (zhūròu)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "batata", + "wordSecond": "土豆 (tǔdòu)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cenoura", + "wordSecond": "胡萝卜 (húluóbo)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cebola", + "wordSecond": "洋葱 (yángcōng)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "alho", + "wordSecond": "大蒜 (dàsuàn)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tomate", + "wordSecond": "番茄 (fānqié)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "alface", + "wordSecond": "生菜 (shēngcài)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "banana", + "wordSecond": "香蕉 (xiāngjiāo)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "maçã", + "wordSecond": "苹果 (píngguǒ)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "laranja", + "wordSecond": "橙子 (chéngzi)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "uva", + "wordSecond": "葡萄 (pútáo)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "morango", + "wordSecond": "草莓 (cǎoméi)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "limão", + "wordSecond": "柠檬 (níngméng)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "abacaxi", + "wordSecond": "菠萝 (bōluó)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "manga", + "wordSecond": "芒果 (mángguǒ)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sal", + "wordSecond": "盐 (yán)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "açúcar", + "wordSecond": "糖 (táng)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pimenta", + "wordSecond": "胡椒 (hújiāo)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "óleo", + "wordSecond": "油 (yóu)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "vinagre", + "wordSecond": "醋 (cù)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "molho de soja", + "wordSecond": "酱油 (jiàngyóu)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sopa", + "wordSecond": "汤 (tāng)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "salada", + "wordSecond": "沙拉 (shālā)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sanduíche", + "wordSecond": "三明治 (sānmíngzhì)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pizza", + "wordSecond": "比萨饼 (bǐsàbǐng)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "hambúrguer", + "wordSecond": "汉堡包 (hànbǎobāo)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "bolo", + "wordSecond": "蛋糕 (dàngāo)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "biscoito", + "wordSecond": "饼干 (bǐnggān)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "chocolate", + "wordSecond": "巧克力 (qiǎokèlì)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sorvete", + "wordSecond": "冰淇淋 (bīngqílín)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "iogurte", + "wordSecond": "酸奶 (suānnǎi)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cereal", + "wordSecond": "麦片 (màipiàn)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "torrada", + "wordSecond": "吐司 (tǔsī)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "panqueca", + "wordSecond": "煎饼 (jiānbǐng)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "omelete", + "wordSecond": "煎蛋卷 (jiāndànjuǎn)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "lasanha", + "wordSecond": "千层面 (qiāncéngmiàn)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fruta", + "wordSecond": "水果 (shuǐguǒ)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "legume", + "wordSecond": "蔬菜 (shūcài)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "copo", + "wordSecond": "杯子 (bēizi)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "prato", + "wordSecond": "盘子 (pánzi)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "garfo", + "wordSecond": "叉子 (chāzi)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "faca", + "wordSecond": "刀子 (dāozi)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "colher", + "wordSecond": "勺子 (sháozi)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "panela", + "wordSecond": "锅 (guō)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "frigideira", + "wordSecond": "平底锅 (píngdǐguō)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fogão", + "wordSecond": "炉子 (lúzi)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "forno", + "wordSecond": "烤箱 (kǎoxiāng)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "geladeira", + "wordSecond": "冰箱 (bīngxiāng)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "micro-ondas", + "wordSecond": "微波炉 (wēibōlú)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "torradeira", + "wordSecond": "烤面包机 (kǎomiànbāojī)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "liquidificador", + "wordSecond": "搅拌机 (jiǎobànjī)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "comer", + "wordSecond": "吃 (chī)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "beber", + "wordSecond": "喝 (hē)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cozinhar", + "wordSecond": "做饭 (zuòfàn)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ferver", + "wordSecond": "煮 (zhǔ)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fritar", + "wordSecond": "炸 (zhá)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "assar", + "wordSecond": "烤 (kǎo)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cortar", + "wordSecond": "切 (qiē)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "misturar", + "wordSecond": "混合 (hùnhé)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "lavar", + "wordSecond": "洗 (xǐ)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "descascar", + "wordSecond": "剥皮 (bāopí)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "abrir", + "wordSecond": "打开 (dǎkāi)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fechar", + "wordSecond": "关闭 (guānbì)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "quentar", + "wordSecond": "加热 (jiārè)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "esfriar", + "wordSecond": "冷却 (lěngquè)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "servir", + "wordSecond": "服务 (fúwù)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "comprar", + "wordSecond": "买 (mǎi)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "vender", + "wordSecond": "卖 (mài)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "mercado", + "wordSecond": "市场 (shìchǎng)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "supermercado", + "wordSecond": "超市 (chāoshì)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "restaurante", + "wordSecond": "餐厅 (cāntīng)", + "createdAt": "2026-02-19T13:51:34.799Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_zh_ko_A2.json b/output/2026_02_19_food_cooking_zh_ko_A2.json new file mode 100644 index 0000000..c7614f5 --- /dev/null +++ b/output/2026_02_19_food_cooking_zh_ko_A2.json @@ -0,0 +1,1098 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:59:57.305Z", + "metadata": { + "itemCount": 83, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "苹果 (pingguo)", + "wordSecond": "사과 (sagwa)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "香蕉 (xiangjiao)", + "wordSecond": "바나나 (banana)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "橙子 (chengzi)", + "wordSecond": "오렌지 (orenji)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "葡萄 (putao)", + "wordSecond": "포도 (podo)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "草莓 (caomei)", + "wordSecond": "딸기 (ttalgi)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "西瓜 (xigua)", + "wordSecond": "수박 (subak)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "米饭 (mifan)", + "wordSecond": "밥 (bap)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "面条 (miantiao)", + "wordSecond": "국수 (guksu)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "面包 (mianbao)", + "wordSecond": "빵 (ppang)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "鸡蛋 (jidan)", + "wordSecond": "계란 (gyeran)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "牛奶 (niunai)", + "wordSecond": "우유 (uyu)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "水 (shui)", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "茶 (cha)", + "wordSecond": "차 (cha)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "咖啡 (kafei)", + "wordSecond": "커피 (keopi)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "果汁 (guozhi)", + "wordSecond": "주스 (juseu)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "啤酒 (pijiu)", + "wordSecond": "맥주 (maekju)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "鸡肉 (jirou)", + "wordSecond": "닭고기 (dakgogi)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "牛肉 (niurou)", + "wordSecond": "소고기 (sogogi)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "猪肉 (zhurou)", + "wordSecond": "돼지고기 (dwaejigogi)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "鱼 (yu)", + "wordSecond": "생선 (saengseon)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "虾 (xia)", + "wordSecond": "새우 (saewu)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "蔬菜 (shucai)", + "wordSecond": "야채 (yachae)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "土豆 (tudou)", + "wordSecond": "감자 (gamja)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "西红柿 (xihongshi)", + "wordSecond": "토마토 (tomato)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "胡萝卜 (huluobo)", + "wordSecond": "당근 (danggeun)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "洋葱 (yangcong)", + "wordSecond": "양파 (yangpa)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "辣椒 (lajiao)", + "wordSecond": "고추 (gochu)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "蘑菇 (mogu)", + "wordSecond": "버섯 (beoseot)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "黄瓜 (huanggua)", + "wordSecond": "오이 (oi)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "生菜 (shengcai)", + "wordSecond": "상추 (sangchu)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "奶酪 (nailao)", + "wordSecond": "치즈 (chijeu)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "黄油 (huangyou)", + "wordSecond": "버터 (beoteo)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "盐 (yan)", + "wordSecond": "소금 (sogeum)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "糖 (tang)", + "wordSecond": "설탕 (seoltang)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "酱油 (jiangyou)", + "wordSecond": "간장 (ganjang)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "醋 (cu)", + "wordSecond": "식초 (sikcho)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "油 (you)", + "wordSecond": "기름 (gireum)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "胡椒 (hujiao)", + "wordSecond": "후추 (huchu)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "早餐 (zaocan)", + "wordSecond": "아침 식사 (achim siksa)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "午餐 (wucan)", + "wordSecond": "점심 식사 (jeomsim siksa)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "晚餐 (wancan)", + "wordSecond": "저녁 식사 (jeonyeok siksa)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "汤 (tang)", + "wordSecond": "국 (guk)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "沙拉 (shala)", + "wordSecond": "샐러드 (saelleodeu)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "三明治 (sanmingzhi)", + "wordSecond": "샌드위치 (saendeuwichi)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "汉堡包 (hanbaobao)", + "wordSecond": "햄버거 (haembeogeo)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "披萨 (pisa)", + "wordSecond": "피자 (pija)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "饺子 (jiaozi)", + "wordSecond": "만두 (mandu)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "炒饭 (chaofan)", + "wordSecond": "볶음밥 (bokkeumbap)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "蛋糕 (dangao)", + "wordSecond": "케이크 (keikeu)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "冰淇淋 (bingqilin)", + "wordSecond": "아이스크림 (aiseukeurim)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "巧克力 (qiaokeli)", + "wordSecond": "초콜릿 (chokollit)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "饼干 (binggan)", + "wordSecond": "과자 (gwaja)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "糖果 (tangguo)", + "wordSecond": "사탕 (satang)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "吃 (chi)", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "喝 (he)", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "煮 (zhu)", + "wordSecond": "끓이다 (kkeurida)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "炒 (chao)", + "wordSecond": "볶다 (bokda)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "烤 (kao)", + "wordSecond": "굽다 (gupda)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "切 (qie)", + "wordSecond": "자르다 (jareuda)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "搅拌 (jiaoban)", + "wordSecond": "섞다 (seokkda)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "洗 (xi)", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "盘子 (panzi)", + "wordSecond": "접시 (jeopsi)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "碗 (wan)", + "wordSecond": "그릇 (geureut)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "杯子 (beizi)", + "wordSecond": "컵 (keop)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "筷子 (kuaizi)", + "wordSecond": "젓가락 (jeotgarak)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "勺子 (shaozi)", + "wordSecond": "숟가락 (sutgarak)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "刀 (dao)", + "wordSecond": "칼 (kal)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "叉子 (chazi)", + "wordSecond": "포크 (pokeu)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "锅 (guo)", + "wordSecond": "냄비 (naembi)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "平底锅 (pingdiguo)", + "wordSecond": "프라이팬 (peuraipaen)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "烤箱 (kaoxiang)", + "wordSecond": "오븐 (obeun)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "冰箱 (bingxiang)", + "wordSecond": "냉장고 (naengjanggo)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "微波炉 (weibolu)", + "wordSecond": "전자레인지 (jeonjareinji)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "水壶 (shuihu)", + "wordSecond": "주전자 (jujeonja)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "餐巾纸 (canjinzhi)", + "wordSecond": "냅킨 (naepkin)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "桌子 (zhuozi)", + "wordSecond": "테이블 (teibeul)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "椅子 (yizi)", + "wordSecond": "의자 (uija)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "菜单 (caidan)", + "wordSecond": "메뉴 (menyu)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "服务员 (fuwuyuan)", + "wordSecond": "웨이터 (weiteo)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "厨师 (chushi)", + "wordSecond": "요리사 (yorisa)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "餐厅 (canting)", + "wordSecond": "식당 (sikdang)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "超市 (chaoshi)", + "wordSecond": "슈퍼마켓 (syupeomaket)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "市场 (shichang)", + "wordSecond": "시장 (sijang)", + "createdAt": "2026-02-19T13:59:57.305Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_food_cooking_zh_pl_A2.json b/output/2026_02_19_food_cooking_zh_pl_A2.json new file mode 100644 index 0000000..9781640 --- /dev/null +++ b/output/2026_02_19_food_cooking_zh_pl_A2.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:00:17.999Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Food & Cooking" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Food & Cooking" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "苹果 (pingguo)", + "wordSecond": "jabłko", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "香蕉 (xiangjiao)", + "wordSecond": "banan", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "面包 (mianbao)", + "wordSecond": "chleb", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "牛奶 (niunai)", + "wordSecond": "mleko", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鸡蛋 (jidan)", + "wordSecond": "jajko", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "米饭 (mifan)", + "wordSecond": "ryż", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "面条 (miantiao)", + "wordSecond": "makaron", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鸡肉 (jirou)", + "wordSecond": "kurczak", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "牛肉 (niurou)", + "wordSecond": "wołowina", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "猪肉 (zhurou)", + "wordSecond": "wieprzowina", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "鱼 (yu)", + "wordSecond": "ryba", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "土豆 (tudou)", + "wordSecond": "ziemniak", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "番茄 (fanqie)", + "wordSecond": "pomidor", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "胡萝卜 (huluobo)", + "wordSecond": "marchew", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "洋葱 (yangcong)", + "wordSecond": "cebula", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "沙拉 (shala)", + "wordSecond": "sałatka", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "汤 (tang)", + "wordSecond": "zupa", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "水 (shui)", + "wordSecond": "woda", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "茶 (cha)", + "wordSecond": "herbata", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "咖啡 (kafei)", + "wordSecond": "kawa", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "果汁 (guozhi)", + "wordSecond": "sok", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "啤酒 (pijiu)", + "wordSecond": "piwo", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "盐 (yan)", + "wordSecond": "sól", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "糖 (tang)", + "wordSecond": "cukier", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "油 (you)", + "wordSecond": "olej", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "黄油 (huangyou)", + "wordSecond": "masło", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "奶酪 (nailao)", + "wordSecond": "ser", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "酸奶 (suannai)", + "wordSecond": "jogurt", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蛋糕 (dangao)", + "wordSecond": "ciasto", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "饼干 (binggan)", + "wordSecond": "ciastko", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "巧克力 (qiaokeli)", + "wordSecond": "czekolada", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "冰淇淋 (bingqilin)", + "wordSecond": "lody", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "早餐 (zaocan)", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "午餐 (wucan)", + "wordSecond": "lunch", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "晚餐 (wancan)", + "wordSecond": "kolacja", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "汉堡包 (hanbaobao)", + "wordSecond": "hamburger", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "披萨 (pisa)", + "wordSecond": "pizza", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "热狗 (regou)", + "wordSecond": "hot dog", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "三明治 (sanmingzhi)", + "wordSecond": "kanapka", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "饺子 (jiaozi)", + "wordSecond": "pierogi", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "炒饭 (chaofan)", + "wordSecond": "smażony ryż", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "炒面 (chaomian)", + "wordSecond": "smażony makaron", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "刀 (dao)", + "wordSecond": "nóż", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "叉子 (chazi)", + "wordSecond": "widelec", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "勺子 (shaozi)", + "wordSecond": "łyżka", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "盘子 (panzi)", + "wordSecond": "talerz", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "碗 (wan)", + "wordSecond": "miska", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "杯子 (beizi)", + "wordSecond": "kubek", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "锅 (guo)", + "wordSecond": "garnek", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "平底锅 (pingdiguo)", + "wordSecond": "patelnia", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "烤箱 (kaoxiang)", + "wordSecond": "piekarnik", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "冰箱 (bingxiang)", + "wordSecond": "lodówka", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "微波炉 (weibolu)", + "wordSecond": "mikrofalówka", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "吃 (chi)", + "wordSecond": "jeść", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "喝 (he)", + "wordSecond": "pić", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "煮 (zhu)", + "wordSecond": "gotować", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "炒 (chao)", + "wordSecond": "smażyć", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "烤 (kao)", + "wordSecond": "piec", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "切 (qie)", + "wordSecond": "kroić", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "洗 (xi)", + "wordSecond": "myć", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "买 (mai)", + "wordSecond": "kupować", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "草莓 (caomei)", + "wordSecond": "truskawka", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "葡萄 (putao)", + "wordSecond": "winogrono", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "橙子 (chengzi)", + "wordSecond": "pomarańcza", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "柠檬 (ningmeng)", + "wordSecond": "cytryna", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "西瓜 (xigua)", + "wordSecond": "arbuz", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "黄瓜 (huanggua)", + "wordSecond": "ogórek", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "生菜 (shengcai)", + "wordSecond": "sałata", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蘑菇 (mogu)", + "wordSecond": "grzyb", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "辣椒 (lajiao)", + "wordSecond": "papryka", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "胡椒 (hujiao)", + "wordSecond": "pieprz", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "芥末 (jiemo)", + "wordSecond": "musztarda", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "番茄酱 (fanqiejiang)", + "wordSecond": "keczup", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蛋黄酱 (danhuangjiang)", + "wordSecond": "majonez", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "面包卷 (mianbaojuan)", + "wordSecond": "bułka", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "麦片 (maipian)", + "wordSecond": "płatki śniadaniowe", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "香肠 (xiangchang)", + "wordSecond": "kiełbasa", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "火腿 (huotui)", + "wordSecond": "szynka", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "玉米 (yumi)", + "wordSecond": "kukurydza", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "豌豆 (wandou)", + "wordSecond": "groch", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "菠菜 (bocai)", + "wordSecond": "szpinak", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "花椰菜 (huayecai)", + "wordSecond": "kalafior", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "西兰花 (xilanhua)", + "wordSecond": "brokuł", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "虾 (xia)", + "wordSecond": "krewetka", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "蟹 (xie)", + "wordSecond": "krab", + "createdAt": "2026-02-19T14:00:17.999Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_de_fr_A1.json b/output/2026_02_19_greetings_introductions_de_fr_A1.json new file mode 100644 index 0000000..7a502d7 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_de_fr_A1.json @@ -0,0 +1,790 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:44:36.888Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hallo", + "wordSecond": "Bonjour", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Guten Morgen", + "wordSecond": "Bonjour", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Guten Tag", + "wordSecond": "Bonjour", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Guten Abend", + "wordSecond": "Bonsoir", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gute Nacht", + "wordSecond": "Bonne nuit", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Auf Wiedersehen", + "wordSecond": "Au revoir", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tschüss", + "wordSecond": "Salut", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bis bald", + "wordSecond": "À bientôt", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bis später", + "wordSecond": "À plus tard", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bitte", + "wordSecond": "S'il vous plaît", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Danke", + "wordSecond": "Merci", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Danke schön", + "wordSecond": "Merci beaucoup", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bitte schön", + "wordSecond": "De rien", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Entschuldigung", + "wordSecond": "Pardon", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Es tut mir leid", + "wordSecond": "Je suis désolé", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ja", + "wordSecond": "Oui", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Nein", + "wordSecond": "Non", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gut", + "wordSecond": "Bien", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schlecht", + "wordSecond": "Mal", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wie geht es dir?", + "wordSecond": "Comment ça va?", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Mir geht es gut", + "wordSecond": "Ça va bien", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Nicht schlecht", + "wordSecond": "Pas mal", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wie heißt du?", + "wordSecond": "Comment tu t'appelles?", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ich heiße...", + "wordSecond": "Je m'appelle...", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Mein Name ist...", + "wordSecond": "Mon nom est...", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Freut mich", + "wordSecond": "Enchanté", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wie alt bist du?", + "wordSecond": "Quel âge as-tu?", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ich bin ... Jahre alt", + "wordSecond": "J'ai ... ans", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Woher kommst du?", + "wordSecond": "D'où viens-tu?", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ich komme aus...", + "wordSecond": "Je viens de...", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Deutschland", + "wordSecond": "Allemagne", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Österreich", + "wordSecond": "Autriche", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schweiz", + "wordSecond": "Suisse", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Frankreich", + "wordSecond": "France", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ich bin Deutscher", + "wordSecond": "Je suis allemand", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ich bin Deutsche", + "wordSecond": "Je suis allemande", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ich bin Franzose", + "wordSecond": "Je suis français", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ich bin Französin", + "wordSecond": "Je suis française", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Sprechen Sie Deutsch?", + "wordSecond": "Parlez-vous allemand?", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ich spreche ein bisschen Französisch", + "wordSecond": "Je parle un peu français", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Verstehen Sie?", + "wordSecond": "Comprenez-vous?", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ich verstehe", + "wordSecond": "Je comprends", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ich verstehe nicht", + "wordSecond": "Je ne comprends pas", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Können Sie das wiederholen?", + "wordSecond": "Pouvez-vous répéter?", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Langsamer bitte", + "wordSecond": "Plus lentement s'il vous plaît", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wie bitte?", + "wordSecond": "Comment?", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Was ist das?", + "wordSecond": "Qu'est-ce que c'est?", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wer ist das?", + "wordSecond": "Qui est-ce?", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Das ist...", + "wordSecond": "C'est...", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ein Freund", + "wordSecond": "Un ami", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Eine Freundin", + "wordSecond": "Une amie", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Die Familie", + "wordSecond": "La famille", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Die Mutter", + "wordSecond": "La mère", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Der Vater", + "wordSecond": "Le père", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Der Bruder", + "wordSecond": "Le frère", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Die Schwester", + "wordSecond": "La sœur", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Willkommen", + "wordSecond": "Bienvenue", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Viel Glück", + "wordSecond": "Bonne chance", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Alles Gute", + "wordSecond": "Tous mes vœux", + "createdAt": "2026-02-19T12:44:36.888Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_de_it_A1.json b/output/2026_02_19_greetings_introductions_de_it_A1.json new file mode 100644 index 0000000..a90ccf3 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_de_it_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:44:50.697Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hallo", + "wordSecond": "Ciao", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Guten Morgen", + "wordSecond": "Buongiorno", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Guten Tag", + "wordSecond": "Buongiorno", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Guten Abend", + "wordSecond": "Buonasera", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gute Nacht", + "wordSecond": "Buonanotte", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Auf Wiedersehen", + "wordSecond": "Arrivederci", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tschüss", + "wordSecond": "Ciao", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bis bald", + "wordSecond": "A presto", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bis später", + "wordSecond": "A dopo", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bitte", + "wordSecond": "Per favore", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Danke", + "wordSecond": "Grazie", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Danke schön", + "wordSecond": "Grazie mille", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bitte schön", + "wordSecond": "Prego", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Entschuldigung", + "wordSecond": "Scusa", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Es tut mir leid", + "wordSecond": "Mi dispiace", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ja", + "wordSecond": "Sì", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nein", + "wordSecond": "No", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gut", + "wordSecond": "Bene", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schlecht", + "wordSecond": "Male", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wie geht es dir?", + "wordSecond": "Come stai?", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mir geht es gut", + "wordSecond": "Sto bene", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nicht schlecht", + "wordSecond": "Non male", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wie heißt du?", + "wordSecond": "Come ti chiami?", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ich heiße...", + "wordSecond": "Mi chiamo...", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mein Name ist...", + "wordSecond": "Il mio nome è...", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Freut mich", + "wordSecond": "Piacere", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wie alt bist du?", + "wordSecond": "Quanti anni hai?", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ich bin ... Jahre alt", + "wordSecond": "Ho ... anni", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Woher kommst du?", + "wordSecond": "Di dove sei?", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ich komme aus...", + "wordSecond": "Vengo da...", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Deutschland", + "wordSecond": "Germania", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Österreich", + "wordSecond": "Austria", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schweiz", + "wordSecond": "Svizzera", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Italien", + "wordSecond": "Italia", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Was ist deine Nationalität?", + "wordSecond": "Qual è la tua nazionalità?", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ich bin Deutscher/Deutsche", + "wordSecond": "Sono tedesco/tedesca", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ich bin Italiener/Italienerin", + "wordSecond": "Sono italiano/italiana", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sprechen Sie Deutsch?", + "wordSecond": "Parla tedesco?", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ich spreche ein bisschen Italienisch", + "wordSecond": "Parlo un po' di italiano", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ich verstehe nicht", + "wordSecond": "Non capisco", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Können Sie das wiederholen?", + "wordSecond": "Può ripetere?", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Langsamer, bitte", + "wordSecond": "Più piano, per favore", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wie bitte?", + "wordSecond": "Come, prego?", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Willkommen", + "wordSecond": "Benvenuto", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Alles Gute", + "wordSecond": "Tanti auguri", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Viel Glück", + "wordSecond": "Buona fortuna", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gesundheit", + "wordSecond": "Salute", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Prost", + "wordSecond": "Cin cin", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Guten Appetit", + "wordSecond": "Buon appetito", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wie spät ist es?", + "wordSecond": "Che ore sono?", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Heute", + "wordSecond": "Oggi", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Morgen", + "wordSecond": "Domani", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gestern", + "wordSecond": "Ieri", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Jetzt", + "wordSecond": "Adesso", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Später", + "wordSecond": "Più tardi", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hier", + "wordSecond": "Qui", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Dort", + "wordSecond": "Lì", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wer?", + "wordSecond": "Chi?", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Was?", + "wordSecond": "Cosa?", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wo?", + "wordSecond": "Dove?", + "createdAt": "2026-02-19T12:44:50.697Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_de_ja_A1.json b/output/2026_02_19_greetings_introductions_de_ja_A1.json new file mode 100644 index 0000000..8ab0818 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_de_ja_A1.json @@ -0,0 +1,786 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:45:15.369Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hallo", + "wordSecond": "こんにちは (こんにちは, konnichiwa)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Guten Morgen", + "wordSecond": "おはようございます (おはようございます, ohayō gozaimasu)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Guten Tag", + "wordSecond": "こんにちは (こんにちは, konnichiwa)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Guten Abend", + "wordSecond": "こんばんは (こんばんは, konbanwa)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Gute Nacht", + "wordSecond": "おやすみなさい (おやすみなさい, oyasuminasai)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tschüss", + "wordSecond": "さようなら (さようなら, sayōnara)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Auf Wiedersehen", + "wordSecond": "さようなら (さようなら, sayōnara)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Bis später", + "wordSecond": "またね (またね, mata ne)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Bitte", + "wordSecond": "お願いします (おねがいします, onegaishimasu)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Danke", + "wordSecond": "ありがとう (ありがとう, arigatō)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Danke schön", + "wordSecond": "ありがとうございます (ありがとうございます, arigatō gozaimasu)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Entschuldigung", + "wordSecond": "すみません (すみません, sumimasen)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Es tut mir leid", + "wordSecond": "ごめんなさい (ごめんなさい, gomennasai)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ja", + "wordSecond": "はい (はい, hai)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Nein", + "wordSecond": "いいえ (いいえ, iie)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wie geht es dir?", + "wordSecond": "お元気ですか? (おげんきですか?, ogenki desu ka?)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Mir geht es gut", + "wordSecond": "元気です (げんきです, genki desu)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wie heißt du?", + "wordSecond": "お名前は? (おなまえは?, onamae wa?)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ich heiße...", + "wordSecond": "私は...です (わたしは...です, watashi wa... desu)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Mein Name ist...", + "wordSecond": "私の名前は...です (わたしのなまえは...です, watashi no namae wa... desu)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wer bist du?", + "wordSecond": "あなたは誰ですか? (あなたはだれですか?, anata wa dare desu ka?)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ich bin...", + "wordSecond": "私は...です (わたしは...です, watashi wa... desu)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Woher kommst du?", + "wordSecond": "どこから来ましたか? (どこからきましたか?, doko kara kimashita ka?)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ich komme aus...", + "wordSecond": "...から来ました (...からきました, ... kara kimashita)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wie alt bist du?", + "wordSecond": "何歳ですか? (なんさいですか?, nansai desu ka?)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ich bin ... Jahre alt", + "wordSecond": "...歳です (...さいです, ...sai desu)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Nationalität", + "wordSecond": "国籍 (こくせき, kokuseki)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ich bin Deutscher/Deutsche", + "wordSecond": "私はドイツ人です (わたしはドイツじんです, watashi wa Doitsu-jin desu)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Freut mich", + "wordSecond": "はじめまして (はじめまして, hajimemashite)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Sehr erfreut", + "wordSecond": "どうぞよろしくお願いします (どうぞよろしくおねがいします, dōzo yoroshiku onegaishimasu)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Willkommen", + "wordSecond": "ようこそ (ようこそ, yōkoso)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wie bitte?", + "wordSecond": "すみません? (すみません?, sumimasen?)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Langsamer bitte", + "wordSecond": "ゆっくりお願いします (ゆっくりおねがいします, yukkuri onegaishimasu)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ich verstehe nicht", + "wordSecond": "わかりません (わかりません, wakarimasen)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ich verstehe", + "wordSecond": "わかりました (わかりました, wakarimashita)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Sprechen Sie Englisch?", + "wordSecond": "英語を話せますか? (えいごをはなせますか?, eigo o hanasemasu ka?)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ein bisschen", + "wordSecond": "少し (すこし, sukoshi)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Was ist das?", + "wordSecond": "それは何ですか? (それはなんですか?, sore wa nan desu ka?)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wer ist das?", + "wordSecond": "あの人は誰ですか? (あのひとはだれですか?, ano hito wa dare desu ka?)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Das ist...", + "wordSecond": "それは...です (それは...です, sore wa... desu)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Student", + "wordSecond": "学生 (がくせい, gakusei)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Lehrer", + "wordSecond": "先生 (せんせい, sensei)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Arbeit", + "wordSecond": "仕事 (しごと, shigoto)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hobby", + "wordSecond": "趣味 (しゅみ, shumi)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Deutschland", + "wordSecond": "ドイツ (ドイツ, Doitsu)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Japan", + "wordSecond": "日本 (にほん, Nihon)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Stadt", + "wordSecond": "町 (まち, machi)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Haus", + "wordSecond": "家 (いえ, ie)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Familie", + "wordSecond": "家族 (かぞく, kazoku)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Freund", + "wordSecond": "友達 (ともだち, tomodachi)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Mutter", + "wordSecond": "母 (はは, haha)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Vater", + "wordSecond": "父 (ちち, chichi)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Bruder", + "wordSecond": "兄弟 (きょうだい, kyōdai)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schwester", + "wordSecond": "姉妹 (しまい, shimai)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kind", + "wordSecond": "子供 (こども, kodomo)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Mann", + "wordSecond": "男の人 (おとこのひと, otoko no hito)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Frau", + "wordSecond": "女の人 (おんなのひと, onna no hito)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Junge", + "wordSecond": "男の子 (おとこのこ, otoko no ko)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Mädchen", + "wordSecond": "女の子 (おんなのこ, onna no ko)", + "createdAt": "2026-02-19T12:45:15.369Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_de_ko_A1.json b/output/2026_02_19_greetings_introductions_de_ko_A1.json new file mode 100644 index 0000000..3659004 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_de_ko_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:45:54.907Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Hallo", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Guten Morgen", + "wordSecond": "좋은 아침 (joeun achim)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Guten Tag", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Guten Abend", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Gute Nacht", + "wordSecond": "안녕히 주무세요 (annyeonghi jumuseyo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Tschüss", + "wordSecond": "안녕 (annyeong)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Auf Wiedersehen", + "wordSecond": "안녕히 가세요 (annyeonghi gaseyo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bitte", + "wordSecond": "제발 (jebal)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Danke", + "wordSecond": "감사합니다 (gamsahamnida)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Vielen Dank", + "wordSecond": "대단히 감사합니다 (daedanhi gamsahamnida)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Entschuldigung", + "wordSecond": "죄송합니다 (joesonghamnida)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Es tut mir leid", + "wordSecond": "미안합니다 (mianhamnida)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ja", + "wordSecond": "네 (ne)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Nein", + "wordSecond": "아니요 (aniyo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Name", + "wordSecond": "이름 (ireum)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ich heiße...", + "wordSecond": "제 이름은...입니다 (je ireumeun...imnida)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wie heißt du?", + "wordSecond": "이름이 뭐예요? (ireumi mwoyeyo?)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Alter", + "wordSecond": "나이 (nai)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ich bin ... Jahre alt", + "wordSecond": "저는 ...살입니다 (jeoneun ...salimnida)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wie alt bist du?", + "wordSecond": "몇 살이에요? (myeot sarieyo?)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Nationalität", + "wordSecond": "국적 (gukjeok)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ich komme aus...", + "wordSecond": "저는 ...에서 왔어요 (jeoneun ...eseo wasseoyo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Woher kommst du?", + "wordSecond": "어디에서 왔어요? (eodieseo wasseoyo?)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Deutschland", + "wordSecond": "독일 (dogil)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Österreich", + "wordSecond": "오스트리아 (oseuteuria)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schweiz", + "wordSecond": "스위스 (seuwiseu)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Korea", + "wordSecond": "한국 (hanguk)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Freut mich", + "wordSecond": "만나서 반갑습니다 (mannaseo bangapseumnida)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wie geht es dir?", + "wordSecond": "어떻게 지내세요? (eotteoke jinaeseyo?)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Mir geht es gut", + "wordSecond": "잘 지내요 (jal jinaeyo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Nicht gut", + "wordSecond": "안 좋아요 (an joayo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Willkommen", + "wordSecond": "환영합니다 (hwanyeonghamnida)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wiedersehen", + "wordSecond": "다음에 봐요 (daeume bwayo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bis bald", + "wordSecond": "잘 가요 (jal gayo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bis später", + "wordSecond": "나중에 봐요 (najunge bwayo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Guten Appetit", + "wordSecond": "맛있게 드세요 (masitge deuseyo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Prost", + "wordSecond": "건배 (geonbae)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Hilfe", + "wordSecond": "도와주세요 (dowajuseyo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Verzeihung", + "wordSecond": "실례합니다 (sillyehamnida)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kein Problem", + "wordSecond": "괜찮아요 (gwaenchanayo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Keine Ursache", + "wordSecond": "천만에요 (cheonmaneyo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Sprechen Sie Englisch?", + "wordSecond": "영어 할 줄 아세요? (yeongeo hal jul aseyo?)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ich verstehe nicht", + "wordSecond": "이해가 안 돼요 (ihaega an dwaeyo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Langsamer bitte", + "wordSecond": "천천히 말해 주세요 (cheoncheonhi malhae juseyo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wie bitte?", + "wordSecond": "뭐라고요? (mworagoyo?)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Was ist das?", + "wordSecond": "이게 뭐예요? (ige mwoyeyo?)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wer?", + "wordSecond": "누구? (nugu?)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wo?", + "wordSecond": "어디? (eodi?)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wann?", + "wordSecond": "언제? (eonje?)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Warum?", + "wordSecond": "왜? (wae?)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wie?", + "wordSecond": "어떻게? (eotteoke?)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Was?", + "wordSecond": "뭐? (mwo?)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ich", + "wordSecond": "저 (jeo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Du", + "wordSecond": "너 (neo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Er", + "wordSecond": "그 (geu)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Sie", + "wordSecond": "그녀 (geunyeo)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wir", + "wordSecond": "우리 (uri)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ihr", + "wordSecond": "너희 (neohui)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Sie (plural)", + "wordSecond": "그들 (geudeul)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Student", + "wordSecond": "학생 (haksaeng)", + "createdAt": "2026-02-19T12:45:54.907Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_de_pl_A1.json b/output/2026_02_19_greetings_introductions_de_pl_A1.json new file mode 100644 index 0000000..f003c11 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_de_pl_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:46:09.397Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hallo", + "wordSecond": "Cześć", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Guten Morgen", + "wordSecond": "Dzień dobry", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Guten Tag", + "wordSecond": "Dzień dobry", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Guten Abend", + "wordSecond": "Dobry wieczór", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Gute Nacht", + "wordSecond": "Dobranoc", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Auf Wiedersehen", + "wordSecond": "Do widzenia", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Tschüss", + "wordSecond": "Pa", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bis später", + "wordSecond": "Do zobaczenia", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bis bald", + "wordSecond": "Do zobaczenia wkrótce", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ja", + "wordSecond": "Tak", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Nein", + "wordSecond": "Nie", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bitte", + "wordSecond": "Proszę", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Danke", + "wordSecond": "Dziękuję", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Danke schön", + "wordSecond": "Dziękuję bardzo", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bitte schön", + "wordSecond": "Proszę bardzo", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Entschuldigung", + "wordSecond": "Przepraszam", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Es tut mir leid", + "wordSecond": "Przepraszam", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kein Problem", + "wordSecond": "Nie ma problemu", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wie geht es dir?", + "wordSecond": "Jak się masz?", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Mir geht es gut", + "wordSecond": "Dobrze mi", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Nicht schlecht", + "wordSecond": "Nieźle", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Es geht so", + "wordSecond": "Tak sobie", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wie heißt du?", + "wordSecond": "Jak masz na imię?", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ich heiße...", + "wordSecond": "Mam na imię...", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Mein Name ist...", + "wordSecond": "Nazywam się...", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Und du?", + "wordSecond": "A ty?", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Freut mich", + "wordSecond": "Miło mi", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Sehr erfreut", + "wordSecond": "Bardzo mi miło", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Woher kommst du?", + "wordSecond": "Skąd jesteś?", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ich komme aus...", + "wordSecond": "Jestem z...", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Deutschland", + "wordSecond": "Niemcy", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Polen", + "wordSecond": "Polska", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wie alt bist du?", + "wordSecond": "Ile masz lat?", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ich bin ... Jahre alt", + "wordSecond": "Mam ... lat", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Jung", + "wordSecond": "Młody", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Alt", + "wordSecond": "Stary", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Was machst du?", + "wordSecond": "Co robisz?", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ich lerne", + "wordSecond": "Uczę się", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ich arbeite", + "wordSecond": "Pracuję", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Student", + "wordSecond": "Student", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Lehrer", + "wordSecond": "Nauczyciel", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Sprechen Sie Englisch?", + "wordSecond": "Czy mówisz po angielsku?", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ich verstehe nicht", + "wordSecond": "Nie rozumiem", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Langsamer bitte", + "wordSecond": "Wolniej, proszę", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Können Sie das wiederholen?", + "wordSecond": "Czy możesz to powtórzyć?", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wie bitte?", + "wordSecond": "Słucham?", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Alles klar", + "wordSecond": "Wszystko jasne", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Vielleicht", + "wordSecond": "Może", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Natürlich", + "wordSecond": "Oczywiście", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Okay", + "wordSecond": "Okay", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Gut", + "wordSecond": "Dobrze", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schlecht", + "wordSecond": "Źle", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Müde", + "wordSecond": "Zmęczony", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Glücklich", + "wordSecond": "Szczęśliwy", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Traurig", + "wordSecond": "Smutny", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Herr", + "wordSecond": "Pan", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Frau", + "wordSecond": "Pani", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Freund", + "wordSecond": "Przyjaciel", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Familie", + "wordSecond": "Rodzina", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Willkommen", + "wordSecond": "Witamy", + "createdAt": "2026-02-19T12:46:09.397Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_de_zh_A1.json b/output/2026_02_19_greetings_introductions_de_zh_A1.json new file mode 100644 index 0000000..01fa649 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_de_zh_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:45:34.117Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hallo", + "wordSecond": "你好 (nǐ hǎo)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Guten Morgen", + "wordSecond": "早上好 (zǎo shang hǎo)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Guten Tag", + "wordSecond": "你好 (nǐ hǎo)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Guten Abend", + "wordSecond": "晚上好 (wǎn shang hǎo)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gute Nacht", + "wordSecond": "晚安 (wǎn ān)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tschüss", + "wordSecond": "再见 (zài jiàn)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Auf Wiedersehen", + "wordSecond": "再见 (zài jiàn)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bitte", + "wordSecond": "请 (qǐng)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Danke", + "wordSecond": "谢谢 (xiè xie)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Danke schön", + "wordSecond": "谢谢 (xiè xie)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bitte schön", + "wordSecond": "不客气 (bú kè qì)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Entschuldigung", + "wordSecond": "对不起 (duì bu qǐ)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Es tut mir leid", + "wordSecond": "对不起 (duì bu qǐ)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ja", + "wordSecond": "是 (shì)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Nein", + "wordSecond": "不 (bù)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ich", + "wordSecond": "我 (wǒ)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Du", + "wordSecond": "你 (nǐ)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Er", + "wordSecond": "他 (tā)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Sie", + "wordSecond": "她 (tā)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wir", + "wordSecond": "我们 (wǒ men)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ihr", + "wordSecond": "你们 (nǐ men)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Sie (plural)", + "wordSecond": "他们 (tā men)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Name", + "wordSecond": "名字 (míng zi)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Mein Name ist...", + "wordSecond": "我叫... (wǒ jiào...)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wie heißt du?", + "wordSecond": "你叫什么名字? (nǐ jiào shén me míng zi?)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Freut mich", + "wordSecond": "很高兴认识你 (hěn gāo xìng rèn shi nǐ)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wie geht's?", + "wordSecond": "你好吗? (nǐ hǎo ma?)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gut", + "wordSecond": "好 (hǎo)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Sehr gut", + "wordSecond": "很好 (hěn hǎo)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Nicht gut", + "wordSecond": "不好 (bù hǎo)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Und du?", + "wordSecond": "你呢? (nǐ ne?)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Woher kommst du?", + "wordSecond": "你从哪里来? (nǐ cóng nǎ lǐ lái?)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ich komme aus...", + "wordSecond": "我来自... (wǒ lái zì...)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Deutschland", + "wordSecond": "德国 (dé guó)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "China", + "wordSecond": "中国 (zhōng guó)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Nationalität", + "wordSecond": "国籍 (guó jí)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Alter", + "wordSecond": "年龄 (nián líng)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wie alt bist du?", + "wordSecond": "你多大? (nǐ duō dà?)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ich bin ... Jahre alt", + "wordSecond": "我...岁 (wǒ ... suì)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Student", + "wordSecond": "学生 (xué sheng)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Lehrer", + "wordSecond": "老师 (lǎo shī)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Beruf", + "wordSecond": "工作 (gōng zuò)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Was machst du?", + "wordSecond": "你做什么工作? (nǐ zuò shén me gōng zuò?)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Sprechen", + "wordSecond": "说 (shuō)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ich spreche Deutsch", + "wordSecond": "我说德语 (wǒ shuō dé yǔ)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Sprichst du Englisch?", + "wordSecond": "你说英语吗? (nǐ shuō yīng yǔ ma?)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ein bisschen", + "wordSecond": "一点 (yì diǎn)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Verstehen", + "wordSecond": "懂 (dǒng)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ich verstehe nicht", + "wordSecond": "我不懂 (wǒ bù dǒng)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wiederholen", + "wordSecond": "重复 (chóng fù)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Langsam", + "wordSecond": "慢 (màn)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wie bitte?", + "wordSecond": "什么? (shén me?)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Willkommen", + "wordSecond": "欢迎 (huān yíng)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Auf Wiederhören", + "wordSecond": "再见 (zài jiàn)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bis später", + "wordSecond": "一会儿见 (yí huì er jiàn)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bis morgen", + "wordSecond": "明天见 (míng tiān jiàn)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Vielen Dank", + "wordSecond": "非常感谢 (fēi cháng gǎn xiè)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Keine Ursache", + "wordSecond": "不客气 (bú kè qì)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "In Ordnung", + "wordSecond": "好的 (hǎo de)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tschau", + "wordSecond": "拜拜 (bài bài)", + "createdAt": "2026-02-19T12:45:34.117Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_en_de_A1.json b/output/2026_02_19_greetings_introductions_en_de_A1.json new file mode 100644 index 0000000..c6085db --- /dev/null +++ b/output/2026_02_19_greetings_introductions_en_de_A1.json @@ -0,0 +1,781 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:38:17.764Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hello", + "wordSecond": "hallo", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "good morning", + "wordSecond": "guten Morgen", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "good day", + "wordSecond": "guten Tag", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "good evening", + "wordSecond": "guten Abend", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "good night", + "wordSecond": "gute Nacht", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "goodbye", + "wordSecond": "auf Wiedersehen", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bye", + "wordSecond": "tschüss", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "see you later", + "wordSecond": "bis später", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "see you soon", + "wordSecond": "bis bald", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "see you tomorrow", + "wordSecond": "bis morgen", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "please", + "wordSecond": "bitte", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "thank you", + "wordSecond": "danke", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "thank you very much", + "wordSecond": "danke schön", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "you're welcome", + "wordSecond": "bitte schön", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "excuse me", + "wordSecond": "Entschuldigung", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sorry", + "wordSecond": "es tut mir leid", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "yes", + "wordSecond": "ja", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "no", + "wordSecond": "nein", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "okay", + "wordSecond": "okay", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "good", + "wordSecond": "gut", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bad", + "wordSecond": "schlecht", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fine", + "wordSecond": "gut", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "and you?", + "wordSecond": "und du?", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "my name is", + "wordSecond": "ich heiße", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "I am", + "wordSecond": "ich bin", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "what is your name?", + "wordSecond": "wie heißt du?", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "name", + "wordSecond": "Name", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "first name", + "wordSecond": "Vorname", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "surname", + "wordSecond": "Nachname", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "I", + "wordSecond": "ich", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "you", + "wordSecond": "du", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "he", + "wordSecond": "er", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "she", + "wordSecond": "sie", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "we", + "wordSecond": "wir", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "they", + "wordSecond": "sie", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "how are you?", + "wordSecond": "wie geht's?", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "how are you? ", + "wordSecond": "wie geht es Ihnen?", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "I am well", + "wordSecond": "mir geht es gut", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "I am not well", + "wordSecond": "mir geht es nicht gut", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "age", + "wordSecond": "Alter", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "how old are you?", + "wordSecond": "wie alt bist du?", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "I am ... years old", + "wordSecond": "ich bin ... Jahre alt", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "nationality", + "wordSecond": "Nationalität", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "where are you from?", + "wordSecond": "woher kommst du?", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "I am from", + "wordSecond": "ich komme aus", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "Germany", + "wordSecond": "Deutschland", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "England", + "wordSecond": "England", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "America", + "wordSecond": "Amerika", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "city", + "wordSecond": "Stadt", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "country", + "wordSecond": "Land", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "nice to meet you", + "wordSecond": "freut mich", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "likewise", + "wordSecond": "gleichfalls", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "thank you again", + "wordSecond": "nochmals danke", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "very good", + "wordSecond": "sehr gut", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "not bad", + "wordSecond": "nicht schlecht", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "so-so", + "wordSecond": "so lala", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "what's new?", + "wordSecond": "was gibt's Neues?", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "nothing much", + "wordSecond": "nicht viel", + "createdAt": "2026-02-19T12:38:17.764Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_en_es_A1.json b/output/2026_02_19_greetings_introductions_en_es_A1.json new file mode 100644 index 0000000..b56ad39 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_en_es_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:37:52.438Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hello", + "wordSecond": "hola", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "good morning", + "wordSecond": "buenos días", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "good afternoon", + "wordSecond": "buenas tardes", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "good evening", + "wordSecond": "buenas noches", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "goodbye", + "wordSecond": "adiós", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bye", + "wordSecond": "chao", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "see you later", + "wordSecond": "hasta luego", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "see you tomorrow", + "wordSecond": "hasta mañana", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "please", + "wordSecond": "por favor", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "thank you", + "wordSecond": "gracias", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "thank you very much", + "wordSecond": "muchas gracias", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "you're welcome", + "wordSecond": "de nada", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sorry", + "wordSecond": "lo siento", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "excuse me", + "wordSecond": "perdón", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "yes", + "wordSecond": "sí", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "no", + "wordSecond": "no", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "okay", + "wordSecond": "vale", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "good", + "wordSecond": "bueno", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bad", + "wordSecond": "malo", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fine", + "wordSecond": "bien", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "and you?", + "wordSecond": "¿y tú?", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "what's your name?", + "wordSecond": "¿cómo te llamas?", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "my name is", + "wordSecond": "me llamo", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "I am", + "wordSecond": "soy", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "you are", + "wordSecond": "eres", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "he is", + "wordSecond": "él es", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "she is", + "wordSecond": "ella es", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Mr.", + "wordSecond": "señor", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Mrs.", + "wordSecond": "señora", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Miss", + "wordSecond": "señorita", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "friend", + "wordSecond": "amigo", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "how are you?", + "wordSecond": "¿cómo estás?", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "I am well", + "wordSecond": "estoy bien", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "I am not well", + "wordSecond": "no estoy bien", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "so-so", + "wordSecond": "así así", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nice to meet you", + "wordSecond": "mucho gusto", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "likewise", + "wordSecond": "igualmente", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "where are you from?", + "wordSecond": "¿de dónde eres?", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "I am from", + "wordSecond": "soy de", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "country", + "wordSecond": "país", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "city", + "wordSecond": "ciudad", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Spain", + "wordSecond": "España", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Mexico", + "wordSecond": "México", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "the United States", + "wordSecond": "Estados Unidos", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "England", + "wordSecond": "Inglaterra", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "France", + "wordSecond": "Francia", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Germany", + "wordSecond": "Alemania", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Italy", + "wordSecond": "Italia", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nationality", + "wordSecond": "nacionalidad", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Spanish", + "wordSecond": "español", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "English", + "wordSecond": "inglés", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "French", + "wordSecond": "francés", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "German", + "wordSecond": "alemán", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Italian", + "wordSecond": "italiano", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "how old are you?", + "wordSecond": "¿cuántos años tienes?", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "I am ... years old", + "wordSecond": "tengo ... años", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "young", + "wordSecond": "joven", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "old", + "wordSecond": "viejo", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "student", + "wordSecond": "estudiante", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "teacher", + "wordSecond": "profesor", + "createdAt": "2026-02-19T12:37:52.438Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_en_fr_A1.json b/output/2026_02_19_greetings_introductions_en_fr_A1.json new file mode 100644 index 0000000..2d4c739 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_en_fr_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:38:32.338Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Hello", + "wordSecond": "Bonjour", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Hi", + "wordSecond": "Salut", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Good morning", + "wordSecond": "Bonjour", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Good afternoon", + "wordSecond": "Bon après-midi", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Good evening", + "wordSecond": "Bonsoir", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Good night", + "wordSecond": "Bonne nuit", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Goodbye", + "wordSecond": "Au revoir", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Bye", + "wordSecond": "Salut", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "See you later", + "wordSecond": "À plus tard", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "See you soon", + "wordSecond": "À bientôt", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Please", + "wordSecond": "S'il vous plaît", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Thank you", + "wordSecond": "Merci", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Thank you very much", + "wordSecond": "Merci beaucoup", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "You're welcome", + "wordSecond": "De rien", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Excuse me", + "wordSecond": "Excusez-moi", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Sorry", + "wordSecond": "Pardon", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I'm sorry", + "wordSecond": "Je suis désolé(e)", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Yes", + "wordSecond": "Oui", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "No", + "wordSecond": "Non", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Okay", + "wordSecond": "D'accord", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "How are you?", + "wordSecond": "Comment allez-vous ?", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "How are you? ", + "wordSecond": "Ça va ?", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I'm fine", + "wordSecond": "Je vais bien", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Very well", + "wordSecond": "Très bien", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "And you?", + "wordSecond": "Et vous ?", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "And you? ", + "wordSecond": "Et toi ?", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "What's your name?", + "wordSecond": "Comment vous appelez-vous ?", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "My name is...", + "wordSecond": "Je m'appelle...", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Nice to meet you", + "wordSecond": "Enchanté(e)", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Pleased to meet you", + "wordSecond": "Ravi(e) de vous rencontrer", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "How old are you?", + "wordSecond": "Quel âge avez-vous ?", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I am ... years old", + "wordSecond": "J'ai ... ans", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Where are you from?", + "wordSecond": "D'où venez-vous ?", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I am from...", + "wordSecond": "Je viens de...", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I am English", + "wordSecond": "Je suis anglais(e)", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I am French", + "wordSecond": "Je suis français(e)", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I am American", + "wordSecond": "Je suis américain(e)", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I am Canadian", + "wordSecond": "Je suis canadien(ne)", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I am Spanish", + "wordSecond": "Je suis espagnol(e)", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I am German", + "wordSecond": "Je suis allemand(e)", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I am Italian", + "wordSecond": "Je suis italien(ne)", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I am Japanese", + "wordSecond": "Je suis japonais(e)", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I am Chinese", + "wordSecond": "Je suis chinois(e)", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I am Australian", + "wordSecond": "Je suis australien(ne)", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I am a student", + "wordSecond": "Je suis étudiant(e)", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I am a teacher", + "wordSecond": "Je suis professeur", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I live in...", + "wordSecond": "J'habite à...", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "What is this?", + "wordSecond": "Qu'est-ce que c'est ?", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I don't understand", + "wordSecond": "Je ne comprends pas", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Can you repeat?", + "wordSecond": "Pouvez-vous répéter ?", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Speak slowly, please", + "wordSecond": "Parlez lentement, s'il vous plaît", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Do you speak English?", + "wordSecond": "Parlez-vous anglais ?", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "I speak a little French", + "wordSecond": "Je parle un peu français", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Have a good day", + "wordSecond": "Bonne journée", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Have a good evening", + "wordSecond": "Bonne soirée", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Good luck", + "wordSecond": "Bonne chance", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Take care", + "wordSecond": "Prenez soin de vous", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Cheers!", + "wordSecond": "Santé !", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Welcome", + "wordSecond": "Bienvenue", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "It's a pleasure", + "wordSecond": "C'est un plaisir", + "createdAt": "2026-02-19T12:38:32.338Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_en_it_A1.json b/output/2026_02_19_greetings_introductions_en_it_A1.json new file mode 100644 index 0000000..ac6fdbd --- /dev/null +++ b/output/2026_02_19_greetings_introductions_en_it_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:38:43.817Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hello", + "wordSecond": "ciao", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "good morning", + "wordSecond": "buongiorno", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "good afternoon", + "wordSecond": "buon pomeriggio", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "good evening", + "wordSecond": "buonasera", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "good night", + "wordSecond": "buonanotte", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hi", + "wordSecond": "salve", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "goodbye", + "wordSecond": "arrivederci", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bye", + "wordSecond": "ciao", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "see you later", + "wordSecond": "a più tardi", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "see you soon", + "wordSecond": "a presto", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "please", + "wordSecond": "per favore", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "thank you", + "wordSecond": "grazie", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "thank you very much", + "wordSecond": "grazie mille", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "you're welcome", + "wordSecond": "prego", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sorry", + "wordSecond": "scusa", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "excuse me", + "wordSecond": "mi scusi", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pardon", + "wordSecond": "permesso", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "yes", + "wordSecond": "sì", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "no", + "wordSecond": "no", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "okay", + "wordSecond": "va bene", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "good", + "wordSecond": "bene", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bad", + "wordSecond": "male", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fine", + "wordSecond": "bene", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "how are you?", + "wordSecond": "come stai?", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "I'm fine", + "wordSecond": "sto bene", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "and you?", + "wordSecond": "e tu?", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "what's your name?", + "wordSecond": "come ti chiami?", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "my name is", + "wordSecond": "mi chiamo", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "I am", + "wordSecond": "io sono", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "you are", + "wordSecond": "tu sei", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "he is", + "wordSecond": "lui è", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "she is", + "wordSecond": "lei è", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Mr.", + "wordSecond": "signor", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Mrs.", + "wordSecond": "signora", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Miss", + "wordSecond": "signorina", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "friend", + "wordSecond": "amico", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "teacher", + "wordSecond": "insegnante", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "student", + "wordSecond": "studente", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "man", + "wordSecond": "uomo", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "woman", + "wordSecond": "donna", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "boy", + "wordSecond": "ragazzo", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "girl", + "wordSecond": "ragazza", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "age", + "wordSecond": "età", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "how old are you?", + "wordSecond": "quanti anni hai?", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "I am ... years old", + "wordSecond": "ho ... anni", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "nationality", + "wordSecond": "nazionalità", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "where are you from?", + "wordSecond": "di dove sei?", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "I am from", + "wordSecond": "sono di", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Italy", + "wordSecond": "Italia", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "England", + "wordSecond": "Inghilterra", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "America", + "wordSecond": "America", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "France", + "wordSecond": "Francia", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Germany", + "wordSecond": "Germania", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Spain", + "wordSecond": "Spagna", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "city", + "wordSecond": "città", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "country", + "wordSecond": "paese", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "nice to meet you", + "wordSecond": "piacere di conoscerti", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "likewise", + "wordSecond": "piacere mio", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "welcome", + "wordSecond": "benvenuto", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "good luck", + "wordSecond": "buona fortuna", + "createdAt": "2026-02-19T12:38:43.817Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_en_ja_A1.json b/output/2026_02_19_greetings_introductions_en_ja_A1.json new file mode 100644 index 0000000..14b58e4 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_en_ja_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:39:07.447Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Hello", + "wordSecond": "こんにちは (こんにちは, konnichiwa)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Good morning", + "wordSecond": "おはようございます (おはようございます, ohayou gozaimasu)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Good evening", + "wordSecond": "こんばんは (こんばんは, konbanwa)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Goodbye", + "wordSecond": "さようなら (さようなら, sayounara)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "See you", + "wordSecond": "またね (またね, mata ne)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Good night", + "wordSecond": "おやすみなさい (おやすみなさい, oyasuminasai)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Please", + "wordSecond": "おねがいします (おねがいします, onegaishimasu)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Thank you", + "wordSecond": "ありがとうございます (ありがとうございます, arigatou gozaimasu)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Sorry", + "wordSecond": "ごめんなさい (ごめんなさい, gomennasai)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Excuse me", + "wordSecond": "すみません (すみません, sumimasen)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Yes", + "wordSecond": "はい (はい, hai)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "No", + "wordSecond": "いいえ (いいえ, iie)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "My name is...", + "wordSecond": "わたしのなまえは...です (わたしのなまえは...です, watashi no namae wa... desu)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "I am...", + "wordSecond": "わたしは...です (わたしは...です, watashi wa... desu)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Name", + "wordSecond": "なまえ (なまえ, namae)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Age", + "wordSecond": "ねんれい (ねんれい, nenrei)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Nationality", + "wordSecond": "こくせき (こくせき, kokuseki)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "How are you?", + "wordSecond": "おげんきですか (おげんきですか, ogenki desu ka)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "I'm fine", + "wordSecond": "げんきです (げんきです, genki desu)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Nice to meet you", + "wordSecond": "はじめまして (はじめまして, hajimemashite)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "You're welcome", + "wordSecond": "どういたしまして (どういたしまして, douitashimashite)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Mr./Ms.", + "wordSecond": "さん (さん, san)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "I", + "wordSecond": "わたし (わたし, watashi)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "You", + "wordSecond": "あなた (あなた, anata)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "He", + "wordSecond": "かれ (かれ, kare)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "She", + "wordSecond": "かのじょ (かのじょ, kanojo)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "This person", + "wordSecond": "このひと (このひと, kono hito)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Friend", + "wordSecond": "ともだち (ともだち, tomodachi)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Teacher", + "wordSecond": "せんせい (せんせい, sensei)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Student", + "wordSecond": "がくせい (がくせい, gakusei)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "What is your name?", + "wordSecond": "おなまえはなんですか (おなまえはなんですか, onamae wa nan desu ka)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Where are you from?", + "wordSecond": "どこからきましたか (どこからきましたか, doko kara kimashita ka)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "I am from...", + "wordSecond": "...からきました (...からきました, ... kara kimashita)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Japan", + "wordSecond": "にほん (にほん, nihon)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "America", + "wordSecond": "アメリカ (アメリカ, amerika)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "England", + "wordSecond": "イギリス (イギリス, igirisu)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "China", + "wordSecond": "ちゅうごく (ちゅうごく, chuugoku)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Korea", + "wordSecond": "かんこく (かんこく, kankoku)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "How old are you?", + "wordSecond": "おいくつですか (おいくつですか, oikutsu desu ka)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "I am ... years old", + "wordSecond": "わたしは...さいです (わたしは...さいです, watashi wa ... sai desu)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Please speak slowly", + "wordSecond": "ゆっくりはなしてください (ゆっくりはなしてください, yukkuri hanashite kudasai)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "I don't understand", + "wordSecond": "わかりません (わかりません, wakarimasen)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Please say it again", + "wordSecond": "もういちどいってください (もういちどいってください, mou ichido itte kudasai)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "What is this?", + "wordSecond": "これはなんですか (これはなんですか, kore wa nan desu ka)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Who is that?", + "wordSecond": "あのひとはだれですか (あのひとはだれですか, ano hito wa dare desu ka)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "This is...", + "wordSecond": "これは...です (これは...です, kore wa ... desu)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "That is...", + "wordSecond": "それは...です (それは...です, sore wa ... desu)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Here", + "wordSecond": "ここ (ここ, koko)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "There", + "wordSecond": "そこ (そこ, soko)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Over there", + "wordSecond": "あそこ (あそこ, asoko)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Now", + "wordSecond": "いま (いま, ima)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Later", + "wordSecond": "あとで (あとで, ato de)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Today", + "wordSecond": "きょう (きょう, kyou)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Tomorrow", + "wordSecond": "あした (あした, ashita)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Yesterday", + "wordSecond": "きのう (きのう, kinou)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Good", + "wordSecond": "いい (いい, ii)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Bad", + "wordSecond": "わるい (わるい, warui)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Okay", + "wordSecond": "だいじょうぶ (だいじょうぶ, daijoubu)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Please wait", + "wordSecond": "まってください (まってください, matte kudasai)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Let's go", + "wordSecond": "いきましょう (いきましょう, ikimashou)", + "createdAt": "2026-02-19T12:39:07.447Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_en_ko_A1.json b/output/2026_02_19_greetings_introductions_en_ko_A1.json new file mode 100644 index 0000000..db17c81 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_en_ko_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:39:46.414Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Hello", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Hi", + "wordSecond": "안녕 (annyeong)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Good morning", + "wordSecond": "좋은 아침 (joeun achim)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Good afternoon", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Good evening", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Goodbye", + "wordSecond": "안녕히 가세요 (annyeonghi gaseyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Bye", + "wordSecond": "안녕 (annyeong)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "See you later", + "wordSecond": "나중에 봐요 (najunge bwayo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "See you tomorrow", + "wordSecond": "내일 봐요 (naeil bwayo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Good night", + "wordSecond": "잘 자요 (jal jayo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Please", + "wordSecond": "제발 (jebal) / 주세요 (juseyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Thank you", + "wordSecond": "감사합니다 (gamsahamnida)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Thanks", + "wordSecond": "고마워요 (gomawoyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "You're welcome", + "wordSecond": "천만에요 (cheonmaneyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Sorry", + "wordSecond": "미안합니다 (mianhamnida)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Excuse me", + "wordSecond": "실례합니다 (sillyehamnida)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Yes", + "wordSecond": "네 (ne)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "No", + "wordSecond": "아니요 (aniyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Okay", + "wordSecond": "괜찮아요 (gwaenchanayo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "My name is...", + "wordSecond": "제 이름은...입니다 (je ireumeun...imnida)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "What is your name?", + "wordSecond": "이름이 뭐예요? (ireumi mwoyeyo?)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "I am...", + "wordSecond": "저는...입니다 (jeoneun...imnida)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Nice to meet you", + "wordSecond": "만나서 반갑습니다 (mannaseo bangapseumnida)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "How are you?", + "wordSecond": "어떻게 지내세요? (eotteoke jinaeseyo?)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "I'm fine", + "wordSecond": "저는 잘 지내요 (jeoneun jal jinaeyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "And you?", + "wordSecond": "그쪽은요? (geujjogeunyo?)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Age", + "wordSecond": "나이 (nai)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "How old are you?", + "wordSecond": "몇 살이에요? (myeot sarieyo?)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "I am ... years old", + "wordSecond": "저는 ... 살이에요 (jeoneun ... sarieyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Nationality", + "wordSecond": "국적 (gukjeok)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Where are you from?", + "wordSecond": "어디에서 왔어요? (eodieseo wasseoyo?)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "I am from...", + "wordSecond": "저는 ...에서 왔어요 (jeoneun ...eseo wasseoyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Korea", + "wordSecond": "한국 (hanguk)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "America", + "wordSecond": "미국 (miguk)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "England", + "wordSecond": "영국 (yeongguk)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Japan", + "wordSecond": "일본 (ilbon)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "China", + "wordSecond": "중국 (jungguk)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Student", + "wordSecond": "학생 (haksaeng)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Teacher", + "wordSecond": "선생님 (seonsaengnim)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Friend", + "wordSecond": "친구 (chingu)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "This is...", + "wordSecond": "이분은...입니다 (ibuneun...imnida)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Mr./Mrs.", + "wordSecond": "씨 (ssi)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Welcome", + "wordSecond": "환영합니다 (hwanyeonghamnida)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "How do you do?", + "wordSecond": "처음 뵙겠습니다 (cheoeum boepgetseumnida)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Long time no see", + "wordSecond": "오랜만이에요 (oraenmanieyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Take care", + "wordSecond": "잘 지내요 (jal jinaeyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Have a good day", + "wordSecond": "좋은 하루 되세요 (joeun haru doeseyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "I don't understand", + "wordSecond": "이해하지 못해요 (ihaehaji mothaeyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Please say it again", + "wordSecond": "다시 말해 주세요 (dasi malhae juseyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Slowly, please", + "wordSecond": "천천히 말해 주세요 (cheoncheonhi malhae juseyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "What?", + "wordSecond": "뭐라고요? (mworagoyo?)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "I know", + "wordSecond": "알아요 (arayo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "I don't know", + "wordSecond": "몰라요 (mollayo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Me too", + "wordSecond": "저도요 (jeodoyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Really?", + "wordSecond": "정말요? (jeongmallyo?)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Of course", + "wordSecond": "물론이죠 (mullonijyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Wait a moment", + "wordSecond": "잠시만요 (jamsimanyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Here", + "wordSecond": "여기 (yeogi)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "There", + "wordSecond": "저기 (jeogi)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Help", + "wordSecond": "도와주세요 (dowajuseyo)", + "createdAt": "2026-02-19T12:39:46.414Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_en_pl_A1.json b/output/2026_02_19_greetings_introductions_en_pl_A1.json new file mode 100644 index 0000000..1416267 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_en_pl_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:39:59.981Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Hello", + "wordSecond": "Cześć", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Good morning", + "wordSecond": "Dzień dobry", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Good afternoon", + "wordSecond": "Dzień dobry", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Good evening", + "wordSecond": "Dobry wieczór", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Good night", + "wordSecond": "Dobranoc", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Hi", + "wordSecond": "Hej", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Goodbye", + "wordSecond": "Do widzenia", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Bye", + "wordSecond": "Pa", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "See you later", + "wordSecond": "Do zobaczenia", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "See you soon", + "wordSecond": "Do zobaczenia wkrótce", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Please", + "wordSecond": "Proszę", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Thank you", + "wordSecond": "Dziękuję", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Thank you very much", + "wordSecond": "Dziękuję bardzo", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "You're welcome", + "wordSecond": "Proszę bardzo", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Sorry", + "wordSecond": "Przepraszam", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Excuse me", + "wordSecond": "Przepraszam", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Yes", + "wordSecond": "Tak", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "No", + "wordSecond": "Nie", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Okay", + "wordSecond": "Dobrze", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "My name is...", + "wordSecond": "Nazywam się...", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "What is your name?", + "wordSecond": "Jak masz na imię?", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "I am...", + "wordSecond": "Jestem...", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Nice to meet you", + "wordSecond": "Miło cię poznać", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "How are you?", + "wordSecond": "Jak się masz?", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "I'm fine", + "wordSecond": "Dobrze się mam", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "And you?", + "wordSecond": "A ty?", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Fine, thanks", + "wordSecond": "Dobrze, dziękuję", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Not bad", + "wordSecond": "Nieźle", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "So-so", + "wordSecond": "Tak sobie", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "How old are you?", + "wordSecond": "Ile masz lat?", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "I am ... years old", + "wordSecond": "Mam ... lat", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Where are you from?", + "wordSecond": "Skąd jesteś?", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "I am from...", + "wordSecond": "Jestem z...", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Poland", + "wordSecond": "Polska", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "England", + "wordSecond": "Anglia", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "America", + "wordSecond": "Ameryka", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Germany", + "wordSecond": "Niemcy", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "France", + "wordSecond": "Francja", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Spain", + "wordSecond": "Hiszpania", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Italy", + "wordSecond": "Włochy", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "What is your nationality?", + "wordSecond": "Jaka jest twoja narodowość?", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "I am Polish", + "wordSecond": "Jestem Polakiem / Polką", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "I am English", + "wordSecond": "Jestem Anglikiem / Angielką", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "I am American", + "wordSecond": "Jestem Amerykaninem / Amerykanką", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Welcome", + "wordSecond": "Witaj", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Welcome ", + "wordSecond": "Witajcie", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Very well", + "wordSecond": "Bardzo dobrze", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Not very well", + "wordSecond": "Niezbyt dobrze", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "What's new?", + "wordSecond": "Co słychać?", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Nothing much", + "wordSecond": "Nic szczególnego", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Good", + "wordSecond": "Dobry", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Bad", + "wordSecond": "Zły", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Man", + "wordSecond": "Mężczyzna", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Woman", + "wordSecond": "Kobieta", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Boy", + "wordSecond": "Chłopiec", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Girl", + "wordSecond": "Dziewczynka", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Friend", + "wordSecond": "Przyjaciel / Przyjaciółka", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Mr.", + "wordSecond": "Pan", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Mrs.", + "wordSecond": "Pani", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Miss", + "wordSecond": "Panna", + "createdAt": "2026-02-19T12:39:59.981Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_en_pt_A1.json b/output/2026_02_19_greetings_introductions_en_pt_A1.json new file mode 100644 index 0000000..2fb0090 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_en_pt_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:38:05.507Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Hello", + "wordSecond": "Olá", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Hi", + "wordSecond": "Oi", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Good morning", + "wordSecond": "Bom dia", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Good afternoon", + "wordSecond": "Boa tarde", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Good evening", + "wordSecond": "Boa noite", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Goodbye", + "wordSecond": "Adeus", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Bye", + "wordSecond": "Tchau", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "See you later", + "wordSecond": "Até logo", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "See you soon", + "wordSecond": "Até breve", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "See you tomorrow", + "wordSecond": "Até amanhã", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Please", + "wordSecond": "Por favor", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Thank you", + "wordSecond": "Obrigado", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Thank you ", + "wordSecond": "Obrigada", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Thanks", + "wordSecond": "Valeu", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "You're welcome", + "wordSecond": "De nada", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Sorry", + "wordSecond": "Desculpa", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Excuse me", + "wordSecond": "Com licença", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Yes", + "wordSecond": "Sim", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "No", + "wordSecond": "Não", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Okay", + "wordSecond": "Tudo bem", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "My name is...", + "wordSecond": "Meu nome é...", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "I am...", + "wordSecond": "Eu sou...", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "What is your name?", + "wordSecond": "Qual é o seu nome?", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Nice to meet you", + "wordSecond": "Prazer em conhecê-lo", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Nice to meet you ", + "wordSecond": "Prazer em conhecê-la", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "How are you?", + "wordSecond": "Como vai?", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "I'm fine", + "wordSecond": "Estou bem", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "And you?", + "wordSecond": "E você?", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Good", + "wordSecond": "Bom", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Bad", + "wordSecond": "Ruim", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "So-so", + "wordSecond": "Mais ou menos", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Mr.", + "wordSecond": "Senhor", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Mrs.", + "wordSecond": "Senhora", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Miss", + "wordSecond": "Senhorita", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Friend", + "wordSecond": "Amigo", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Friend ", + "wordSecond": "Amiga", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "I", + "wordSecond": "Eu", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "You", + "wordSecond": "Você", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "He", + "wordSecond": "Ele", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "She", + "wordSecond": "Ela", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "We", + "wordSecond": "Nós", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "They", + "wordSecond": "Eles", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "They ", + "wordSecond": "Elas", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "What?", + "wordSecond": "O quê?", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Who?", + "wordSecond": "Quem?", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Where?", + "wordSecond": "Onde?", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "How?", + "wordSecond": "Como?", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Why?", + "wordSecond": "Por quê?", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "When?", + "wordSecond": "Quando?", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "This is...", + "wordSecond": "Este é...", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "This is... ", + "wordSecond": "Esta é...", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Welcome", + "wordSecond": "Bem-vindo", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Welcome ", + "wordSecond": "Bem-vinda", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Good night", + "wordSecond": "Boa noite", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Take care", + "wordSecond": "Se cuida", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "How old are you?", + "wordSecond": "Quantos anos você tem?", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "I am ... years old", + "wordSecond": "Eu tenho ... anos", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Nationality", + "wordSecond": "Nacionalidade", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "I am Brazilian", + "wordSecond": "Eu sou brasileiro", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "I am Brazilian ", + "wordSecond": "Eu sou brasileira", + "createdAt": "2026-02-19T12:38:05.507Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_en_zh_A1.json b/output/2026_02_19_greetings_introductions_en_zh_A1.json new file mode 100644 index 0000000..bcede13 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_en_zh_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:39:24.980Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Hello", + "wordSecond": "你好 (nǐ hǎo)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Hi", + "wordSecond": "嗨 (hāi)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Good morning", + "wordSecond": "早上好 (zǎo shang hǎo)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Good afternoon", + "wordSecond": "下午好 (xià wǔ hǎo)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Good evening", + "wordSecond": "晚上好 (wǎn shang hǎo)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Good night", + "wordSecond": "晚安 (wǎn ān)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Goodbye", + "wordSecond": "再见 (zài jiàn)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Bye", + "wordSecond": "拜拜 (bài bài)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "See you", + "wordSecond": "回见 (huí jiàn)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "See you later", + "wordSecond": "待会儿见 (dāi huìr jiàn)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Please", + "wordSecond": "请 (qǐng)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Thank you", + "wordSecond": "谢谢 (xiè xie)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Thank you very much", + "wordSecond": "非常感谢 (fēi cháng gǎn xiè)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "You're welcome", + "wordSecond": "不客气 (bú kè qi)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Sorry", + "wordSecond": "对不起 (duì bu qǐ)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Excuse me", + "wordSecond": "打扰一下 (dǎ rǎo yí xià)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "It's okay", + "wordSecond": "没关系 (méi guān xi)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Yes", + "wordSecond": "是 (shì)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "No", + "wordSecond": "不是 (bú shì)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Okay", + "wordSecond": "好的 (hǎo de)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "My name is...", + "wordSecond": "我叫... (wǒ jiào...)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "I am...", + "wordSecond": "我是... (wǒ shì...)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Name", + "wordSecond": "名字 (míng zi)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "What is your name?", + "wordSecond": "你叫什么名字? (nǐ jiào shén me míng zi?)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "I", + "wordSecond": "我 (wǒ)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "You", + "wordSecond": "你 (nǐ)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "He", + "wordSecond": "他 (tā)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "She", + "wordSecond": "她 (tā)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "We", + "wordSecond": "我们 (wǒ men)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "You (plural)", + "wordSecond": "你们 (nǐ men)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "They", + "wordSecond": "他们 (tā men)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "How are you?", + "wordSecond": "你好吗? (nǐ hǎo ma?)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "I'm fine", + "wordSecond": "我很好 (wǒ hěn hǎo)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "And you?", + "wordSecond": "你呢? (nǐ ne?)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Nice to meet you", + "wordSecond": "很高兴认识你 (hěn gāo xìng rèn shi nǐ)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Me too", + "wordSecond": "我也是 (wǒ yě shì)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Age", + "wordSecond": "年龄 (nián líng)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "How old are you?", + "wordSecond": "你多大了? (nǐ duō dà le?)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "I am ... years old", + "wordSecond": "我...岁 (wǒ ... suì)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Nationality", + "wordSecond": "国籍 (guó jí)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Where are you from?", + "wordSecond": "你来自哪里? (nǐ lái zì nǎ lǐ?)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "I am from...", + "wordSecond": "我来自... (wǒ lái zì...)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "China", + "wordSecond": "中国 (zhōng guó)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "America", + "wordSecond": "美国 (měi guó)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "England", + "wordSecond": "英国 (yīng guó)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Japan", + "wordSecond": "日本 (rì běn)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Korea", + "wordSecond": "韩国 (hán guó)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "France", + "wordSecond": "法国 (fǎ guó)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Germany", + "wordSecond": "德国 (dé guó)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Student", + "wordSecond": "学生 (xué sheng)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Teacher", + "wordSecond": "老师 (lǎo shī)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Work", + "wordSecond": "工作 (gōng zuò)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "What do you do?", + "wordSecond": "你做什么工作? (nǐ zuò shén me gōng zuò?)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "This is...", + "wordSecond": "这是... (zhè shì...)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Friend", + "wordSecond": "朋友 (péng you)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Family", + "wordSecond": "家人 (jiā rén)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Mother", + "wordSecond": "妈妈 (mā ma)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Father", + "wordSecond": "爸爸 (bà ba)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Welcome", + "wordSecond": "欢迎 (huān yíng)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "How is it going?", + "wordSecond": "怎么样? (zěn me yàng?)", + "createdAt": "2026-02-19T12:39:24.980Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_es_de_A1.json b/output/2026_02_19_greetings_introductions_es_de_A1.json new file mode 100644 index 0000000..8b22930 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_es_de_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:40:27.462Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hola", + "wordSecond": "hallo", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "buenos días", + "wordSecond": "guten Morgen", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "buenas tardes", + "wordSecond": "guten Tag", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "buenas noches", + "wordSecond": "guten Abend", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "adiós", + "wordSecond": "auf Wiedersehen", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hasta luego", + "wordSecond": "bis später", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hasta mañana", + "wordSecond": "bis morgen", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "por favor", + "wordSecond": "bitte", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "gracias", + "wordSecond": "danke", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "de nada", + "wordSecond": "bitte schön", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lo siento", + "wordSecond": "es tut mir leid", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "perdón", + "wordSecond": "Entschuldigung", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sí", + "wordSecond": "ja", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "no", + "wordSecond": "nein", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "¿cómo estás?", + "wordSecond": "wie geht's?", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "bien", + "wordSecond": "gut", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mal", + "wordSecond": "schlecht", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "regular", + "wordSecond": "so lala", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "¿y tú?", + "wordSecond": "und dir?", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "¿cómo te llamas?", + "wordSecond": "wie heißt du?", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "me llamo...", + "wordSecond": "ich heiße...", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mucho gusto", + "wordSecond": "freut mich", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "encantado/a", + "wordSecond": "sehr erfreut", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "¿de dónde eres?", + "wordSecond": "woher kommst du?", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "soy de...", + "wordSecond": "ich komme aus...", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "España", + "wordSecond": "Spanien", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "Alemania", + "wordSecond": "Deutschland", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "México", + "wordSecond": "Mexiko", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "Argentina", + "wordSecond": "Argentinien", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "Colombia", + "wordSecond": "Kolumbien", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "¿cuántos años tienes?", + "wordSecond": "wie alt bist du?", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tengo ... años", + "wordSecond": "ich bin ... Jahre alt", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "¿qué tal?", + "wordSecond": "wie geht's?", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "bien, gracias", + "wordSecond": "gut, danke", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "muy bien", + "wordSecond": "sehr gut", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "así así", + "wordSecond": "so so", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "adiós", + "wordSecond": "tschüss", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hasta pronto", + "wordSecond": "bis bald", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "buenas noches", + "wordSecond": "gute Nacht", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "con permiso", + "wordSecond": "Entschuldigung", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "disculpe", + "wordSecond": "Entschuldigen Sie", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "señor", + "wordSecond": "Herr", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "señora", + "wordSecond": "Frau", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "señorita", + "wordSecond": "Fräulein", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "amigo", + "wordSecond": "Freund", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "amiga", + "wordSecond": "Freundin", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "¿hablas alemán?", + "wordSecond": "sprichst du Deutsch?", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "un poco", + "wordSecond": "ein bisschen", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "no entiendo", + "wordSecond": "ich verstehe nicht", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "¿puedes repetir?", + "wordSecond": "kannst du das wiederholen?", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "más despacio, por favor", + "wordSecond": "langsamer, bitte", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "¿cómo se dice?", + "wordSecond": "wie sagt man?", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "¿qué significa?", + "wordSecond": "was bedeutet das?", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "claro", + "wordSecond": "klar", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "vale", + "wordSecond": "okay", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "genial", + "wordSecond": "toll", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "perfecto", + "wordSecond": "perfekt", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "feliz", + "wordSecond": "glücklich", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "triste", + "wordSecond": "traurig", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cansado/a", + "wordSecond": "müde", + "createdAt": "2026-02-19T12:40:27.462Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_es_fr_A1.json b/output/2026_02_19_greetings_introductions_es_fr_A1.json new file mode 100644 index 0000000..8c57c12 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_es_fr_A1.json @@ -0,0 +1,877 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:40:41.074Z", + "metadata": { + "itemCount": 66, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hola", + "wordSecond": "bonjour", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "buenos días", + "wordSecond": "bonjour", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "buenas tardes", + "wordSecond": "bonsoir", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "buenas noches", + "wordSecond": "bonne nuit", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "adiós", + "wordSecond": "au revoir", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hasta luego", + "wordSecond": "à plus tard", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hasta mañana", + "wordSecond": "à demain", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "por favor", + "wordSecond": "s'il vous plaît", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gracias", + "wordSecond": "merci", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "de nada", + "wordSecond": "de rien", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lo siento", + "wordSecond": "désolé", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "perdón", + "wordSecond": "pardon", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sí", + "wordSecond": "oui", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "no", + "wordSecond": "non", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "¿cómo estás?", + "wordSecond": "comment ça va ?", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "bien", + "wordSecond": "bien", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mal", + "wordSecond": "mal", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "regular", + "wordSecond": "comme ci, comme ça", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "¿y tú?", + "wordSecond": "et toi ?", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "¿cómo te llamas?", + "wordSecond": "comment tu t'appelles ?", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "me llamo...", + "wordSecond": "je m'appelle...", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mucho gusto", + "wordSecond": "enchanté", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "encantado", + "wordSecond": "ravi", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el nombre", + "wordSecond": "le nom", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la edad", + "wordSecond": "l'âge", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tengo... años", + "wordSecond": "j'ai... ans", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la nacionalidad", + "wordSecond": "la nationalité", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "soy de...", + "wordSecond": "je viens de...", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "español", + "wordSecond": "espagnol", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "francés", + "wordSecond": "français", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "inglés", + "wordSecond": "anglais", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mexicano", + "wordSecond": "mexicain", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "argentino", + "wordSecond": "argentin", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "colombiano", + "wordSecond": "colombien", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "¿de dónde eres?", + "wordSecond": "tu viens d'où ?", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "yo", + "wordSecond": "je", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tú", + "wordSecond": "tu", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "él", + "wordSecond": "il", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ella", + "wordSecond": "elle", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nosotros", + "wordSecond": "nous", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vosotros", + "wordSecond": "vous", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ellos", + "wordSecond": "ils", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ellas", + "wordSecond": "elles", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "señor", + "wordSecond": "monsieur", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "señora", + "wordSecond": "madame", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "señorita", + "wordSecond": "mademoiselle", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "amigo", + "wordSecond": "ami", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "familia", + "wordSecond": "famille", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "¿qué tal?", + "wordSecond": "ça va ?", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "muy bien", + "wordSecond": "très bien", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gracias, ¿y tú?", + "wordSecond": "merci, et toi ?", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "con permiso", + "wordSecond": "excusez-moi", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "disculpe", + "wordSecond": "excusez-moi", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "bienvenido", + "wordSecond": "bienvenue", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hasta pronto", + "wordSecond": "à bientôt", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "chao", + "wordSecond": "salut", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "bueno", + "wordSecond": "bon", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "malo", + "wordSecond": "mauvais", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "feliz", + "wordSecond": "heureux", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "triste", + "wordSecond": "triste", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cansado", + "wordSecond": "fatigué", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "enfermo", + "wordSecond": "malade", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "¿hablas francés?", + "wordSecond": "tu parles français ?", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "un poco", + "wordSecond": "un peu", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "no entiendo", + "wordSecond": "je ne comprends pas", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "repita, por favor", + "wordSecond": "répétez, s'il vous plaît", + "createdAt": "2026-02-19T12:40:41.074Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_es_it_A1.json b/output/2026_02_19_greetings_introductions_es_it_A1.json new file mode 100644 index 0000000..795886a --- /dev/null +++ b/output/2026_02_19_greetings_introductions_es_it_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:40:53.935Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hola", + "wordSecond": "ciao", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "buenos días", + "wordSecond": "buongiorno", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "buenas tardes", + "wordSecond": "buon pomeriggio", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "buenas noches", + "wordSecond": "buona sera", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "adiós", + "wordSecond": "arrivederci", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hasta luego", + "wordSecond": "a dopo", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hasta mañana", + "wordSecond": "a domani", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "por favor", + "wordSecond": "per favore", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gracias", + "wordSecond": "grazie", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "de nada", + "wordSecond": "prego", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lo siento", + "wordSecond": "mi dispiace", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "perdón", + "wordSecond": "scusa", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sí", + "wordSecond": "sì", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "no", + "wordSecond": "no", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hola", + "wordSecond": "salve", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "¿cómo estás?", + "wordSecond": "come stai?", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bien", + "wordSecond": "bene", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mal", + "wordSecond": "male", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "regular", + "wordSecond": "così così", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "¿y tú?", + "wordSecond": "e tu?", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mucho gusto", + "wordSecond": "piacere", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "encantado", + "wordSecond": "lieto", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "encantada", + "wordSecond": "lieta", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "¿cómo te llamas?", + "wordSecond": "come ti chiami?", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "me llamo", + "wordSecond": "mi chiamo", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nombre", + "wordSecond": "nome", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "apellido", + "wordSecond": "cognome", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "¿cuántos años tienes?", + "wordSecond": "quanti anni hai?", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tengo ... años", + "wordSecond": "ho ... anni", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "edad", + "wordSecond": "età", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "¿de dónde eres?", + "wordSecond": "di dove sei?", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "soy de", + "wordSecond": "sono di", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "país", + "wordSecond": "paese", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ciudad", + "wordSecond": "città", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nacionalidad", + "wordSecond": "nazionalità", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "español", + "wordSecond": "spagnolo", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "española", + "wordSecond": "spagnola", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "italiano", + "wordSecond": "italiano", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "italiana", + "wordSecond": "italiana", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hombre", + "wordSecond": "uomo", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mujer", + "wordSecond": "donna", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "niño", + "wordSecond": "bambino", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "niña", + "wordSecond": "bambina", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "señor", + "wordSecond": "signore", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "señora", + "wordSecond": "signora", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "señorita", + "wordSecond": "signorina", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "amigo", + "wordSecond": "amico", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "amiga", + "wordSecond": "amica", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "familia", + "wordSecond": "famiglia", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "madre", + "wordSecond": "madre", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "padre", + "wordSecond": "padre", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hermano", + "wordSecond": "fratello", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hermana", + "wordSecond": "sorella", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "¿qué tal?", + "wordSecond": "come va?", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bien, gracias", + "wordSecond": "bene, grazie", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "¿hablas italiano?", + "wordSecond": "parli italiano?", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hablo un poco", + "wordSecond": "parlo un po'", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "no entiendo", + "wordSecond": "non capisco", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "repita, por favor", + "wordSecond": "ripeta, per favore", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "adiós", + "wordSecond": "ciao", + "createdAt": "2026-02-19T12:40:53.935Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_es_ja_A1.json b/output/2026_02_19_greetings_introductions_es_ja_A1.json new file mode 100644 index 0000000..a390512 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_es_ja_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:41:19.347Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hola", + "wordSecond": "こんにちは (こんにちは, konnichiwa)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "buenos días", + "wordSecond": "おはようございます (おはようございます, ohayō gozaimasu)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "buenas tardes", + "wordSecond": "こんにちは (こんにちは, konnichiwa)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "buenas noches", + "wordSecond": "こんばんは (こんばんは, konbanwa)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "adiós", + "wordSecond": "さようなら (さようなら, sayōnara)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hasta luego", + "wordSecond": "またね (またね, mata ne)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hasta mañana", + "wordSecond": "また明日 (またあした, mata ashita)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "por favor", + "wordSecond": "お願いします (おねがいします, onegaishimasu)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "gracias", + "wordSecond": "ありがとうございます (ありがとうございます, arigatō gozaimasu)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "de nada", + "wordSecond": "どういたしまして (どういたしまして, dōitashimashite)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lo siento", + "wordSecond": "ごめんなさい (ごめんなさい, gomennasai)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "perdón", + "wordSecond": "すみません (すみません, sumimasen)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sí", + "wordSecond": "はい (はい, hai)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "no", + "wordSecond": "いいえ (いいえ, iie)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hola ", + "wordSecond": "やあ (やあ, yā)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "buenos días ", + "wordSecond": "おはよう (おはよう, ohayō)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "gracias ", + "wordSecond": "ありがとう (ありがとう, arigatō)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "adiós ", + "wordSecond": "バイバイ (ばいばい, baibai)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "¿cómo estás?", + "wordSecond": "お元気ですか (おげんきですか, ogenki desu ka)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "bien", + "wordSecond": "元気です (げんきです, genki desu)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "más o menos", + "wordSecond": "まあまあです (まあまあです, māmā desu)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mal", + "wordSecond": "元気じゃないです (げんきじゃないです, genki janai desu)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "¿y tú?", + "wordSecond": "あなたは (あなたは, anata wa)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "encantado/a", + "wordSecond": "はじめまして (はじめまして, hajimemashite)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mucho gusto", + "wordSecond": "よろしくお願いします (よろしくおねがいします, yoroshiku onegaishimasu)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "me llamo...", + "wordSecond": "私の名前は...です (わたしのなまえは...です, watashi no namae wa... desu)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "¿cómo te llamas?", + "wordSecond": "お名前は何ですか (おなまえはなんですか, onamae wa nan desu ka)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "nombre", + "wordSecond": "名前 (なまえ, namae)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "apellido", + "wordSecond": "名字 (みょうじ, myōji)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "yo", + "wordSecond": "私 (わたし, watashi)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tú", + "wordSecond": "あなた (あなた, anata)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "él", + "wordSecond": "彼 (かれ, kare)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ella", + "wordSecond": "彼女 (かのじょ, kanojo)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "nosotros/nosotras", + "wordSecond": "私たち (わたしたち, watashitachi)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ustedes", + "wordSecond": "あなたたち (あなたたち, anatatachi)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "¿cuántos años tienes?", + "wordSecond": "おいくつですか (おいくつですか, oikutsu desu ka)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tengo ... años", + "wordSecond": "...歳です (...さいです, ...sai desu)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "edad", + "wordSecond": "年齢 (ねんれい, nenrei)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "¿de dónde eres?", + "wordSecond": "どちらからですか (どちらからですか, dochira kara desu ka)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "soy de...", + "wordSecond": "...から来ました (...からきました, ...kara kimashita)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "nacionalidad", + "wordSecond": "国籍 (こくせき, kokuseki)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "español/a", + "wordSecond": "スペイン人 (スペインじん, supein jin)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mexicano/a", + "wordSecond": "メキシコ人 (メキシコじん, mekishiko jin)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "argentino/a", + "wordSecond": "アルゼンチン人 (アルゼンチンじん, aruzenchin jin)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "japonés/japonesa", + "wordSecond": "日本人 (にほんじん, nihon jin)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "estadounidense", + "wordSecond": "アメリカ人 (アメリカじん, amerika jin)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "profesión", + "wordSecond": "職業 (しょくぎょう, shokugyō)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "estudiante", + "wordSecond": "学生 (がくせい, gakusei)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "maestro/a", + "wordSecond": "先生 (せんせい, sensei)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ingeniero/a", + "wordSecond": "エンジニア (えんじにあ, enjinia)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "¿qué tal?", + "wordSecond": "どうですか (どうですか, dō desu ka)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "bienvenido/a", + "wordSecond": "ようこそ (ようこそ, yōkoso)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "con permiso", + "wordSecond": "失礼します (しつれいします, shitsurei shimasu)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "disculpe", + "wordSecond": "すみません (すみません, sumimasen)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "¿puedo?", + "wordSecond": "いいですか (いいですか, ii desu ka)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "claro", + "wordSecond": "もちろん (もちろん, mochiron)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "vale", + "wordSecond": "わかりました (わかりました, wakarimashita)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "no entiendo", + "wordSecond": "わかりません (わかりません, wakarimasen)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "¿puedes repetir?", + "wordSecond": "もう一度お願いします (もういちどおねがいします, mō ichido onegaishimasu)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hablo español", + "wordSecond": "スペイン語を話します (スペインごをはなします, supein go o hanashimasu)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hablo un poco de japonés", + "wordSecond": "日本語を少し話します (にほんごをすこしはなします, nihongo o sukoshi hanashimasu)", + "createdAt": "2026-02-19T12:41:19.347Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_es_ko_A1.json b/output/2026_02_19_greetings_introductions_es_ko_A1.json new file mode 100644 index 0000000..8b0cab1 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_es_ko_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:42:01.632Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Hola", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Buenos días", + "wordSecond": "좋은 아침 (joeun achim)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Buenas tardes", + "wordSecond": "안녕하세요 (annyeonghaseyo) / 좋은 오후 (joeun ohu)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Buenas noches", + "wordSecond": "안녕히 주무세요 (annyeonghi jumuseyo) / 좋은 밤 (joeun bam)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Adiós", + "wordSecond": "안녕히 가세요 (annyeonghi gaseyo)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Hasta luego", + "wordSecond": "나중에 봐요 (najunge bwayo)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Por favor", + "wordSecond": "제발 (jebal) / 부탁합니다 (butakhamnida)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Gracias", + "wordSecond": "감사합니다 (gamsahamnida)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "De nada", + "wordSecond": "천만에요 (cheonmaneyo)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Lo siento", + "wordSecond": "미안합니다 (mianhamnida)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Perdón", + "wordSecond": "실례합니다 (sillyehamnida)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Sí", + "wordSecond": "네 (ne)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "No", + "wordSecond": "아니요 (aniyo)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "¿Cómo estás?", + "wordSecond": "어떻게 지내세요? (eotteoke jinaeseyo?)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Bien", + "wordSecond": "좋아요 (joayo)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Mal", + "wordSecond": "나빠요 (nappayo)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Así así", + "wordSecond": "그저 그래요 (geujeo geuraeyo)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "¿Y tú?", + "wordSecond": "그쪽은요? (geujjogeunyo?)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "¿Cómo te llamas?", + "wordSecond": "이름이 뭐예요? (ireumi mwoyeyo?)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Me llamo...", + "wordSecond": "제 이름은...입니다 (je ireumeun...imnida)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Nombre", + "wordSecond": "이름 (ireum)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "¿Cuántos años tienes?", + "wordSecond": "나이가 어떻게 되세요? (naiga eotteoke doeseyo?)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Tengo ... años", + "wordSecond": "저는 ...살입니다 (jeoneun ...salimnida)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Edad", + "wordSecond": "나이 (nai)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "¿De dónde eres?", + "wordSecond": "어디에서 왔어요? (eodieseo wasseoyo?)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Soy de...", + "wordSecond": "저는 ...에서 왔어요 (jeoneun ...eseo wasseoyo)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Nacionalidad", + "wordSecond": "국적 (gukjeok)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "España", + "wordSecond": "스페인 (seupein)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "México", + "wordSecond": "멕시코 (meksiko)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Argentina", + "wordSecond": "아르헨티나 (areuhentina)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Colombia", + "wordSecond": "콜롬비아 (kollombia)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Encantado/a", + "wordSecond": "만나서 반갑습니다 (mannaseo bangapseumnida)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Mucho gusto", + "wordSecond": "반갑습니다 (bangapseumnida)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Hola ", + "wordSecond": "안녕 (annyeong)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Adiós ", + "wordSecond": "안녕 (annyeong)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Gracias ", + "wordSecond": "고마워 (gomawo)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Por favor ", + "wordSecond": "제발 (jebal)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Lo siento ", + "wordSecond": "미안해 (mianhae)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Sí ", + "wordSecond": "응 (eung)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "No ", + "wordSecond": "아니 (ani)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "¿Qué tal?", + "wordSecond": "잘 지냈어요? (jal jinaesseoyo?)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Bien, gracias", + "wordSecond": "네, 잘 지냈어요 (ne, jal jinaesseoyo)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "¿Y usted?", + "wordSecond": "그쪽은요? (geujjogeunyo?)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Señor", + "wordSecond": "씨 (ssi) / 선생님 (seonsaengnim)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Señora", + "wordSecond": "씨 (ssi) / 선생님 (seonsaengnim)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Señorita", + "wordSecond": "씨 (ssi)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Amigo", + "wordSecond": "친구 (chingu)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Familia", + "wordSecond": "가족 (gajok)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Madre", + "wordSecond": "어머니 (eomeoni)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Padre", + "wordSecond": "아버지 (abeoji)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Hermano", + "wordSecond": "형제 (hyeongje) / 오빠 (oppa) / 형 (hyeong)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Hermana", + "wordSecond": "자매 (jamae) / 언니 (eonni) / 누나 (nuna)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Profesor", + "wordSecond": "선생님 (seonsaengnim)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Estudiante", + "wordSecond": "학생 (haksaeng)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "¿Hablas español?", + "wordSecond": "스페인어 할 줄 아세요? (seupeineo hal jul aseyo?)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Hablo un poco", + "wordSecond": "조금 할 수 있어요 (jogeum hal su isseoyo)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "No entiendo", + "wordSecond": "이해가 안 돼요 (ihaega an dwaeyo)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Repite, por favor", + "wordSecond": "다시 말해 주세요 (dasi malhae juseyo)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "¿Cómo se dice...?", + "wordSecond": "...을 어떻게 말해요? (...eul eotteoke malhaeyo?)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "Hasta mañana", + "wordSecond": "내일 봐요 (naeil bwayo)", + "createdAt": "2026-02-19T12:42:01.632Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_es_pl_A1.json b/output/2026_02_19_greetings_introductions_es_pl_A1.json new file mode 100644 index 0000000..36687e5 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_es_pl_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:42:17.068Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Hola", + "wordSecond": "Cześć", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Buenos días", + "wordSecond": "Dzień dobry", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Buenas tardes", + "wordSecond": "Dobry wieczór", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Buenas noches", + "wordSecond": "Dobranoc", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Adiós", + "wordSecond": "Do widzenia", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Hasta luego", + "wordSecond": "Do zobaczenia", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Por favor", + "wordSecond": "Proszę", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Gracias", + "wordSecond": "Dziękuję", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "De nada", + "wordSecond": "Nie ma za co", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Lo siento", + "wordSecond": "Przepraszam", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Sí", + "wordSecond": "Tak", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "No", + "wordSecond": "Nie", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "¿Cómo estás?", + "wordSecond": "Jak się masz?", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Bien", + "wordSecond": "Dobrze", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Mal", + "wordSecond": "Źle", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Así así", + "wordSecond": "Tak sobie", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "¿Y tú?", + "wordSecond": "A ty?", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Mucho gusto", + "wordSecond": "Miło mi", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Encantado/Encantada", + "wordSecond": "Miło mi", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "¿Cómo te llamas?", + "wordSecond": "Jak masz na imię?", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Me llamo...", + "wordSecond": "Mam na imię...", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "¿Cuál es tu nombre?", + "wordSecond": "Jak się nazywasz?", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Mi nombre es...", + "wordSecond": "Nazywam się...", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "¿De dónde eres?", + "wordSecond": "Skąd jesteś?", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Soy de...", + "wordSecond": "Jestem z...", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "España", + "wordSecond": "Hiszpanii", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Polonia", + "wordSecond": "Polski", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "¿Cuántos años tienes?", + "wordSecond": "Ile masz lat?", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Tengo ... años", + "wordSecond": "Mam ... lat", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "¿Hablas polaco?", + "wordSecond": "Czy mówisz po polsku?", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Hablo un poco", + "wordSecond": "Mówię trochę", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "No entiendo", + "wordSecond": "Nie rozumiem", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "¿Puedes repetir?", + "wordSecond": "Czy możesz powtórzyć?", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Más despacio, por favor", + "wordSecond": "Wolniej, proszę", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "¿Qué tal?", + "wordSecond": "Co słychać?", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Nada", + "wordSecond": "Nic", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Todo bien", + "wordSecond": "Wszystko w porządku", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Hola a todos", + "wordSecond": "Cześć wszystkim", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Buen finde", + "wordSecond": "Miłego weekendu", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Feliz cumpleaños", + "wordSecond": "Wszystkiego najlepszego", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Feliz Navidad", + "wordSecond": "Wesołych Świąt", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Bienvenido/Bienvenida", + "wordSecond": "Witaj/Witajcie", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Hasta mañana", + "wordSecond": "Do jutra", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Chao", + "wordSecond": "Pa", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Con permiso", + "wordSecond": "Przepraszam (przy przechodzeniu)", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Perdón", + "wordSecond": "Przepraszam (za błąd)", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Disculpa", + "wordSecond": "Przepraszam (zwrócenie uwagi)", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Claro", + "wordSecond": "Oczywiście", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "De acuerdo", + "wordSecond": "Zgoda", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Quizás", + "wordSecond": "Może", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "¿Verdad?", + "wordSecond": "Prawda?", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Hombre", + "wordSecond": "Mężczyzna", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Mujer", + "wordSecond": "Kobieta", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Niño/Niña", + "wordSecond": "Chłopiec/Dziewczynka", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Amigo/Amiga", + "wordSecond": "Przyjaciel/Przyjaciółka", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Familia", + "wordSecond": "Rodzina", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Señor", + "wordSecond": "Pan", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Señora", + "wordSecond": "Pani", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Señorita", + "wordSecond": "Panna", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "Estudiante", + "wordSecond": "Student/Studentka", + "createdAt": "2026-02-19T12:42:17.068Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_es_pt_A1.json b/output/2026_02_19_greetings_introductions_es_pt_A1.json new file mode 100644 index 0000000..86b5f41 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_es_pt_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:40:13.659Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Hola", + "wordSecond": "Olá", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Buenos días", + "wordSecond": "Bom dia", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Buenas tardes", + "wordSecond": "Boa tarde", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Buenas noches", + "wordSecond": "Boa noite", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Adiós", + "wordSecond": "Adeus", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Hasta luego", + "wordSecond": "Até logo", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Hasta mañana", + "wordSecond": "Até amanhã", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Chao", + "wordSecond": "Tchau", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Por favor", + "wordSecond": "Por favor", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Gracias", + "wordSecond": "Obrigado/Obrigada", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "De nada", + "wordSecond": "De nada", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Lo siento", + "wordSecond": "Desculpe", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Perdón", + "wordSecond": "Perdão", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Sí", + "wordSecond": "Sim", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "No", + "wordSecond": "Não", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "¿Cómo estás?", + "wordSecond": "Como vai?", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Bien", + "wordSecond": "Bem", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Mal", + "wordSecond": "Mal", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Así así", + "wordSecond": "Mais ou menos", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "¿Y tú?", + "wordSecond": "E você?", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Mucho gusto", + "wordSecond": "Muito prazer", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Encantado", + "wordSecond": "Encantado", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "¿Cómo te llamas?", + "wordSecond": "Como você se chama?", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Me llamo...", + "wordSecond": "Me chamo...", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Mi nombre es...", + "wordSecond": "Meu nome é...", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "¿Cuál es tu nombre?", + "wordSecond": "Qual é o seu nome?", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "¿Cuántos años tienes?", + "wordSecond": "Quantos anos você tem?", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Tengo ... años", + "wordSecond": "Tenho ... anos", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "¿De dónde eres?", + "wordSecond": "De onde você é?", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Soy de...", + "wordSecond": "Sou de...", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "España", + "wordSecond": "Espanha", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "México", + "wordSecond": "México", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Argentina", + "wordSecond": "Argentina", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Colombia", + "wordSecond": "Colômbia", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Brasil", + "wordSecond": "Brasil", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Portugal", + "wordSecond": "Portugal", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Estados Unidos", + "wordSecond": "Estados Unidos", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Francia", + "wordSecond": "França", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Inglaterra", + "wordSecond": "Inglaterra", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Italia", + "wordSecond": "Itália", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Alemania", + "wordSecond": "Alemanha", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "¿Hablas portugués?", + "wordSecond": "Você fala português?", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Hablo español", + "wordSecond": "Falo espanhol", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Un poco", + "wordSecond": "Um pouco", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "No entiendo", + "wordSecond": "Não entendo", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Repite, por favor", + "wordSecond": "Repete, por favor", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Más despacio", + "wordSecond": "Mais devagar", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "¿Qué tal?", + "wordSecond": "Tudo bem?", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Todo bien", + "wordSecond": "Tudo bem", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "¿Cómo está usted?", + "wordSecond": "Como vai o senhor/a senhora?", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Señor", + "wordSecond": "Senhor", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Señora", + "wordSecond": "Senhora", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Señorita", + "wordSecond": "Senhorita", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Amigo", + "wordSecond": "Amigo", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Amiga", + "wordSecond": "Amiga", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Mucho", + "wordSecond": "Muito", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Poco", + "wordSecond": "Pouco", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Bienvenido", + "wordSecond": "Bem-vindo", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Hasta pronto", + "wordSecond": "Até breve", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "Con permiso", + "wordSecond": "Com licença", + "createdAt": "2026-02-19T12:40:13.659Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_es_zh_A1.json b/output/2026_02_19_greetings_introductions_es_zh_A1.json new file mode 100644 index 0000000..a8cc06a --- /dev/null +++ b/output/2026_02_19_greetings_introductions_es_zh_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:41:38.495Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hola", + "wordSecond": "你好 (nǐ hǎo)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "buenos días", + "wordSecond": "早上好 (zǎo shang hǎo)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "buenas tardes", + "wordSecond": "下午好 (xià wǔ hǎo)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "buenas noches", + "wordSecond": "晚上好 (wǎn shang hǎo)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "adiós", + "wordSecond": "再见 (zài jiàn)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hasta luego", + "wordSecond": "回头见 (huí tóu jiàn)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hasta mañana", + "wordSecond": "明天见 (míng tiān jiàn)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "por favor", + "wordSecond": "请 (qǐng)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "gracias", + "wordSecond": "谢谢 (xiè xie)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "de nada", + "wordSecond": "不客气 (bú kè qì)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "lo siento", + "wordSecond": "对不起 (duì bu qǐ)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "perdón", + "wordSecond": "抱歉 (bào qiàn)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sí", + "wordSecond": "是 (shì)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "no", + "wordSecond": "不 (bù)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "¿cómo estás?", + "wordSecond": "你好吗? (nǐ hǎo ma?)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "bien", + "wordSecond": "好 (hǎo)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "muy bien", + "wordSecond": "很好 (hěn hǎo)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mal", + "wordSecond": "不好 (bù hǎo)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "regular", + "wordSecond": "还可以 (hái kě yǐ)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "¿y tú?", + "wordSecond": "你呢? (nǐ ne?)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "¿cómo te llamas?", + "wordSecond": "你叫什么名字? (nǐ jiào shén me míng zi?)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "me llamo...", + "wordSecond": "我叫... (wǒ jiào...)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nombre", + "wordSecond": "名字 (míng zi)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "¿cuántos años tienes?", + "wordSecond": "你几岁? (nǐ jǐ suì?)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tengo ... años", + "wordSecond": "我...岁 (wǒ ... suì)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "edad", + "wordSecond": "年龄 (nián líng)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "¿de dónde eres?", + "wordSecond": "你是哪国人? (nǐ shì nǎ guó rén?)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "soy de...", + "wordSecond": "我是...人 (wǒ shì ... rén)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nacionalidad", + "wordSecond": "国籍 (guó jí)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "España", + "wordSecond": "西班牙 (xī bān yá)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "México", + "wordSecond": "墨西哥 (mò xī gē)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "Argentina", + "wordSecond": "阿根廷 (ā gēn tíng)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "China", + "wordSecond": "中国 (zhōng guó)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "Estados Unidos", + "wordSecond": "美国 (měi guó)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hombre", + "wordSecond": "男人 (nán rén)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mujer", + "wordSecond": "女人 (nǚ rén)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "niño", + "wordSecond": "男孩 (nán hái)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "niña", + "wordSecond": "女孩 (nǚ hái)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "amigo", + "wordSecond": "朋友 (péng you)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "familia", + "wordSecond": "家庭 (jiā tíng)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mucho gusto", + "wordSecond": "很高兴认识你 (hěn gāo xìng rèn shi nǐ)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "encantado/a", + "wordSecond": "幸会 (xìng huì)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "¿qué tal?", + "wordSecond": "怎么样? (zěn me yàng?)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "bienvenido", + "wordSecond": "欢迎 (huān yíng)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hasta pronto", + "wordSecond": "待会儿见 (dāi huì er jiàn)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "buenas", + "wordSecond": "你好 (nǐ hǎo)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "chao", + "wordSecond": "拜拜 (bài bài)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "gracias a ti", + "wordSecond": "谢谢你 (xiè xie nǐ)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "no hay problema", + "wordSecond": "没问题 (méi wèn tí)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "con permiso", + "wordSecond": "借过 (jiè guò)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "disculpa", + "wordSecond": "不好意思 (bù hǎo yì si)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "¿hablas chino?", + "wordSecond": "你会说中文吗? (nǐ huì shuō zhōng wén ma?)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "un poco", + "wordSecond": "一点 (yī diǎn)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "estudiante", + "wordSecond": "学生 (xué sheng)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "profesor", + "wordSecond": "老师 (lǎo shī)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "trabajo", + "wordSecond": "工作 (gōng zuò)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "¿qué haces?", + "wordSecond": "你做什么工作? (nǐ zuò shén me gōng zuò?)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "¿dónde vives?", + "wordSecond": "你住在哪里? (nǐ zhù zài nǎ lǐ?)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "vivo en...", + "wordSecond": "我住在... (wǒ zhù zài...)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "teléfono", + "wordSecond": "电话 (diàn huà)", + "createdAt": "2026-02-19T12:41:38.495Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_fr_it_A1.json b/output/2026_02_19_greetings_introductions_fr_it_A1.json new file mode 100644 index 0000000..e532e33 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_fr_it_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:46:22.691Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Bonjour", + "wordSecond": "Ciao", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Salut", + "wordSecond": "Salve", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Bonsoir", + "wordSecond": "Buonasera", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Bonjour", + "wordSecond": "Buongiorno", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Bonne nuit", + "wordSecond": "Buonanotte", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Au revoir", + "wordSecond": "Arrivederci", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "À bientôt", + "wordSecond": "A presto", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "À demain", + "wordSecond": "A domani", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "S'il vous plaît", + "wordSecond": "Per favore", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "S'il te plaît", + "wordSecond": "Per piacere", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Merci", + "wordSecond": "Grazie", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Merci beaucoup", + "wordSecond": "Grazie mille", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "De rien", + "wordSecond": "Prego", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Excusez-moi", + "wordSecond": "Mi scusi", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Désolé", + "wordSecond": "Mi dispiace", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Pardon", + "wordSecond": "Scusa", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Oui", + "wordSecond": "Sì", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Non", + "wordSecond": "No", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Bon", + "wordSecond": "Bene", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Mal", + "wordSecond": "Male", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Comment allez-vous ?", + "wordSecond": "Come sta?", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Comment vas-tu ?", + "wordSecond": "Come stai?", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Ça va ?", + "wordSecond": "Tutto bene?", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Ça va bien", + "wordSecond": "Va bene", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Je m'appelle...", + "wordSecond": "Mi chiamo...", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Mon nom est...", + "wordSecond": "Il mio nome è...", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Quel est votre nom ?", + "wordSecond": "Come si chiama?", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Quel est ton nom ?", + "wordSecond": "Come ti chiami?", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Enchanté", + "wordSecond": "Piacere", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Moi", + "wordSecond": "Io", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Toi", + "wordSecond": "Tu", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Vous", + "wordSecond": "Lei", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Lui", + "wordSecond": "Lui", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Elle", + "wordSecond": "Lei", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Nous", + "wordSecond": "Noi", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Ils / Elles", + "wordSecond": "Loro", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Je suis...", + "wordSecond": "Io sono...", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Tu es...", + "wordSecond": "Tu sei...", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Il est...", + "wordSecond": "Lui è...", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Elle est...", + "wordSecond": "Lei è...", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Français", + "wordSecond": "Francese", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Italien", + "wordSecond": "Italiano", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Anglais", + "wordSecond": "Inglese", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Américain", + "wordSecond": "Americano", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Espagnol", + "wordSecond": "Spagnolo", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "De France", + "wordSecond": "Dalla Francia", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "D'Italie", + "wordSecond": "Dall'Italia", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "J'ai ... ans", + "wordSecond": "Ho ... anni", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Quel âge as-tu ?", + "wordSecond": "Quanti anni hai?", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Quel âge avez-vous ?", + "wordSecond": "Quanti anni ha?", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Je suis étudiant", + "wordSecond": "Sono studente", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Je suis étudiante", + "wordSecond": "Sono studentessa", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Je travaille", + "wordSecond": "Lavoro", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Bonjour (le matin)", + "wordSecond": "Buongiorno", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Bonsoir (le soir)", + "wordSecond": "Buonasera", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Salut (informel)", + "wordSecond": "Ciao", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Bienvenue", + "wordSecond": "Benvenuto", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "À plus tard", + "wordSecond": "A più tardi", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "S'il vous plaît (formel)", + "wordSecond": "Per favore", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Merci (beaucoup)", + "wordSecond": "Grazie (mille)", + "createdAt": "2026-02-19T12:46:22.691Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_fr_ja_A1.json b/output/2026_02_19_greetings_introductions_fr_ja_A1.json new file mode 100644 index 0000000..623591f --- /dev/null +++ b/output/2026_02_19_greetings_introductions_fr_ja_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:46:51.116Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bonjour", + "wordSecond": "こんにちは (こんにちは, konnichiwa)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bonjour (matin)", + "wordSecond": "おはようございます (おはようございます, ohayō gozaimasu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bonsoir", + "wordSecond": "こんばんは (こんばんは, konbanwa)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bonne nuit", + "wordSecond": "おやすみなさい (おやすみなさい, oyasuminasai)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "au revoir", + "wordSecond": "さようなら (さようなら, sayōnara)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "à bientôt", + "wordSecond": "またね (またね, mata ne)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "à demain", + "wordSecond": "またあした (またあした, mata ashita)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "salut", + "wordSecond": "やあ (やあ, yā)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "s'il vous plaît", + "wordSecond": "おねがいします (おねがいします, onegaishimasu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "merci", + "wordSecond": "ありがとうございます (ありがとうございます, arigatō gozaimasu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "merci beaucoup", + "wordSecond": "どうもありがとうございます (どうもありがとうございます, dōmo arigatō gozaimasu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "excusez-moi", + "wordSecond": "すみません (すみません, sumimasen)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pardon", + "wordSecond": "ごめんなさい (ごめんなさい, gomennasai)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "oui", + "wordSecond": "はい (はい, hai)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "non", + "wordSecond": "いいえ (いいえ, iie)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "comment allez-vous ?", + "wordSecond": "おげんきですか? (おげんきですか?, ogenki desu ka?)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ça va", + "wordSecond": "げんきです (げんきです, genki desu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ça va bien", + "wordSecond": "げんきです (げんきです, genki desu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ça va mal", + "wordSecond": "げんきじゃないです (げんきじゃないです, genki ja nai desu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "je m'appelle...", + "wordSecond": "わたしは...です (わたしは...です, watashi wa ... desu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "nom", + "wordSecond": "なまえ (なまえ, namae)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "quel est votre nom ?", + "wordSecond": "おなまえは? (おなまえは?, onamae wa?)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "âge", + "wordSecond": "ねんれい (ねんれい, nenrei)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "j'ai ... ans", + "wordSecond": "...さいです (...さいです, ...sai desu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "nationalité", + "wordSecond": "こくせき (こくせき, kokuseki)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "je suis français(e)", + "wordSecond": "わたしはフランスじんです (わたしはフランスじんです, watashi wa furansujin desu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "je suis japonais(e)", + "wordSecond": "わたしはにほんじんです (わたしはにほんじんです, watashi wa nihonjin desu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "enchanté(e)", + "wordSecond": "はじめまして (はじめまして, hajimemashite)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "comment ça va ?", + "wordSecond": "おげんきですか? (おげんきですか?, ogenki desu ka?)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "très bien", + "wordSecond": "とてもげんきです (とてもげんきです, totemo genki desu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "comme ci, comme ça", + "wordSecond": "まあまあです (まあまあです, māmā desu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bonjour (informel)", + "wordSecond": "やあ (やあ, yā)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bonjour (formel)", + "wordSecond": "こんにちは (こんにちは, konnichiwa)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bonne journée", + "wordSecond": "よいひを (よいひを, yoi hi o)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bonne soirée", + "wordSecond": "よいゆうを (よいゆうを, yoi yū o)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "à plus tard", + "wordSecond": "じゃあまた (じゃあまた, jā mata)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "merci (informel)", + "wordSecond": "ありがとう (ありがとう, arigatō)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "de rien", + "wordSecond": "どういたしまして (どういたしまして, dōitashimashite)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "excusez-moi (pour attirer l'attention)", + "wordSecond": "すみません (すみません, sumimasen)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "je suis désolé(e)", + "wordSecond": "ごめんなさい (ごめんなさい, gomennasai)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pas de problème", + "wordSecond": "だいじょうぶです (だいじょうぶです, daijōbu desu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "je ne comprends pas", + "wordSecond": "わかりません (わかりません, wakarimasen)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "parlez-vous français ?", + "wordSecond": "フランスごをはなせますか? (フランスごをはなせますか?, furansugo o hanasemasu ka?)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "parlez-vous anglais ?", + "wordSecond": "えいごをはなせますか? (えいごをはなせますか?, eigo o hanasemasu ka?)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "un peu", + "wordSecond": "すこし (すこし, sukoshi)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "beaucoup", + "wordSecond": "たくさん (たくさん, takusan)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "très", + "wordSecond": "とても (とても, totemo)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bon", + "wordSecond": "いい (いい, ii)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mauvais", + "wordSecond": "わるい (わるい, warui)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "facile", + "wordSecond": "かんたん (かんたん, kantan)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "difficile", + "wordSecond": "むずかしい (むずかしい, muzukashii)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "je suis étudiant(e)", + "wordSecond": "わたしはがくせいです (わたしはがくせいです, watashi wa gakusei desu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "je travaille", + "wordSecond": "わたしはしごとをしています (わたしはしごとをしています, watashi wa shigoto o shiteimasu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "je suis à la retraite", + "wordSecond": "わたしはたいしょくしています (わたしはたいしょくしています, watashi wa taishoku shiteimasu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "je suis heureux(se)", + "wordSecond": "わたしはしあわせです (わたしはしあわせです, watashi wa shiawase desu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "je suis triste", + "wordSecond": "わたしはかなしいです (わたしはかなしいです, watashi wa kanashii desu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "je suis fatigué(e)", + "wordSecond": "わたしはつかれています (わたしはつかれています, watashi wa tsukareteimasu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "je vais bien", + "wordSecond": "わたしはげんきです (わたしはげんきです, watashi wa genki desu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "je vais mal", + "wordSecond": "わたしはげんきじゃないです (わたしはげんきじゃないです, watashi wa genki ja nai desu)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "au revoir (informel)", + "wordSecond": "バイバイ (ばいばい, baibai)", + "createdAt": "2026-02-19T12:46:51.116Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_fr_ko_A1.json b/output/2026_02_19_greetings_introductions_fr_ko_A1.json new file mode 100644 index 0000000..1c7528e --- /dev/null +++ b/output/2026_02_19_greetings_introductions_fr_ko_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:47:32.745Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Bonjour", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Salut", + "wordSecond": "안녕 (annyeong)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Bonsoir", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Bonne nuit", + "wordSecond": "안녕히 주무세요 (annyeonghi jumuseyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Au revoir", + "wordSecond": "안녕히 가세요 (annyeonghi gaseyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "À bientôt", + "wordSecond": "나중에 봐요 (najunge bwayo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "À demain", + "wordSecond": "내일 봐요 (naeil bwayo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "S'il vous plaît", + "wordSecond": "제발 (jebal)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Merci", + "wordSecond": "감사합니다 (gamsahamnida)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Merci beaucoup", + "wordSecond": "대단히 감사합니다 (daedanhi gamsahamnida)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "De rien", + "wordSecond": "천만에요 (cheonmaneyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Excusez-moi", + "wordSecond": "실례합니다 (sillyehamnida)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Pardon", + "wordSecond": "죄송합니다 (joesonghamnida)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Je m'appelle...", + "wordSecond": "제 이름은...입니다 (je ireumeun...imnida)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Je suis...", + "wordSecond": "저는...입니다 (jeoneun...imnida)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Nom", + "wordSecond": "이름 (ireum)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Âge", + "wordSecond": "나이 (nai)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Nationalité", + "wordSecond": "국적 (gukjeok)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Pays", + "wordSecond": "나라 (nara)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Français", + "wordSecond": "프랑스 사람 (peurangseu saram)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Coréen", + "wordSecond": "한국 사람 (hanguk saram)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Comment allez-vous ?", + "wordSecond": "어떻게 지내세요? (eotteoke jinaeseyo?)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Ça va ?", + "wordSecond": "안녕하세요? (annyeonghaseyo?)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Ça va bien", + "wordSecond": "잘 지내요 (jal jinaeyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Pas mal", + "wordSecond": "괜찮아요 (gwaenchanayo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Enchanté", + "wordSecond": "만나서 반갑습니다 (mannaseo bangapseumnida)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Moi aussi", + "wordSecond": "저도요 (jeodoyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Oui", + "wordSecond": "네 (ne)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Non", + "wordSecond": "아니요 (aniyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Bonjour (matin)", + "wordSecond": "좋은 아침 (joeun achim)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Bon après-midi", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Bonsoir (soirée)", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Comment vous appelez-vous ?", + "wordSecond": "이름이 뭐예요? (ireumi mwoyeyo?)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Quel âge avez-vous ?", + "wordSecond": "나이가 어떻게 되세요? (naiga eotteoke doeseyo?)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "D'où venez-vous ?", + "wordSecond": "어디에서 왔어요? (eodieseo wasseoyo?)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Je viens de...", + "wordSecond": "...에서 왔어요 (...eseo wasseoyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Je suis étudiant", + "wordSecond": "저는 학생입니다 (jeoneun haksaengimnida)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Je travaille", + "wordSecond": "저는 일해요 (jeoneun ilhaeyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Profession", + "wordSecond": "직업 (jigeop)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Étudiant", + "wordSecond": "학생 (haksaeng)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Enseignant", + "wordSecond": "선생님 (seonsaengnim)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Docteur", + "wordSecond": "의사 (uisa)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Ingénieur", + "wordSecond": "엔지니어 (enjinieo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Bon", + "wordSecond": "좋아요 (joayo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Mauvais", + "wordSecond": "나빠요 (nappayo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Fatigué", + "wordSecond": "피곤해요 (pigonhaeyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Heureux", + "wordSecond": "행복해요 (haengbokhaeyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Triste", + "wordSecond": "슬퍼요 (seulpeoyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Faim", + "wordSecond": "배고파요 (baegopayo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Soif", + "wordSecond": "목말라요 (mongmallyayo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Merci pour votre aide", + "wordSecond": "도와줘서 감사합니다 (dowajwoseo gamsahamnida)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Je ne comprends pas", + "wordSecond": "이해하지 못해요 (ihaehaji motaeyo)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Parlez-vous français ?", + "wordSecond": "프랑스어 할 줄 아세요? (peurangseueo hal jul aseyo?)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Un peu", + "wordSecond": "조금 (jogeum)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Beaucoup", + "wordSecond": "많이 (mani)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Toujours", + "wordSecond": "항상 (hangsang)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Parfois", + "wordSecond": "가끔 (gakkeum)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Aujourd'hui", + "wordSecond": "오늘 (oneul)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Demain", + "wordSecond": "내일 (naeil)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "Hier", + "wordSecond": "어제 (eoje)", + "createdAt": "2026-02-19T12:47:32.745Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_fr_pl_A1.json b/output/2026_02_19_greetings_introductions_fr_pl_A1.json new file mode 100644 index 0000000..5f08e97 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_fr_pl_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:47:48.548Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Bonjour", + "wordSecond": "Dzień dobry", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Salut", + "wordSecond": "Cześć", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Bonsoir", + "wordSecond": "Dobry wieczór", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Au revoir", + "wordSecond": "Do widzenia", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "À bientôt", + "wordSecond": "Do zobaczenia", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "À demain", + "wordSecond": "Do jutra", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "S'il vous plaît", + "wordSecond": "Proszę", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Merci", + "wordSecond": "Dziękuję", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "De rien", + "wordSecond": "Nie ma za co", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Excusez-moi", + "wordSecond": "Przepraszam", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Pardon", + "wordSecond": "Przepraszam", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Oui", + "wordSecond": "Tak", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Non", + "wordSecond": "Nie", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Bonjour (matin)", + "wordSecond": "Dzień dobry", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Bonsoir (soir)", + "wordSecond": "Dobry wieczór", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Bonne nuit", + "wordSecond": "Dobranoc", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Comment ça va ?", + "wordSecond": "Jak się masz?", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Ça va bien", + "wordSecond": "Dobrze", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Ça va mal", + "wordSecond": "Źle", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Comme ci, comme ça", + "wordSecond": "Tak sobie", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Et toi ?", + "wordSecond": "A ty?", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Enchanté(e)", + "wordSecond": "Miło mi", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Comment tu t'appelles ?", + "wordSecond": "Jak masz na imię?", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Je m'appelle...", + "wordSecond": "Nazywam się...", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Quel est ton nom ?", + "wordSecond": "Jak się nazywasz?", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Mon nom est...", + "wordSecond": "Moje nazwisko to...", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Quel âge as-tu ?", + "wordSecond": "Ile masz lat?", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "J'ai ... ans", + "wordSecond": "Mam ... lat", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "D'où viens-tu ?", + "wordSecond": "Skąd jesteś?", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Je viens de...", + "wordSecond": "Jestem z...", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Je suis français(e)", + "wordSecond": "Jestem Francuzem/Francuzką", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Je suis polonais(e)", + "wordSecond": "Jestem Polakiem/Polką", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Je suis étudiant(e)", + "wordSecond": "Jestem studentem/studentką", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Bonjour (informel)", + "wordSecond": "Cześć", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Salut (informel)", + "wordSecond": "Hej", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Au revoir (informel)", + "wordSecond": "Pa", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Merci beaucoup", + "wordSecond": "Dziękuję bardzo", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "S'il te plaît", + "wordSecond": "Proszę (nieformalnie)", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Excuse-moi", + "wordSecond": "Przepraszam (nieformalnie)", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Je ne comprends pas", + "wordSecond": "Nie rozumiem", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Parlez-vous anglais ?", + "wordSecond": "Czy mówisz po angielsku?", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Parlez-vous français ?", + "wordSecond": "Czy mówisz po francusku?", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Parlez-vous polonais ?", + "wordSecond": "Czy mówisz po polsku?", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Un peu", + "wordSecond": "Trochę", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Bienvenue", + "wordSecond": "Witamy", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "À plus tard", + "wordSecond": "Na razie", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Comment allez-vous ?", + "wordSecond": "Jak się Pan/Pani ma?", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Très bien", + "wordSecond": "Bardzo dobrze", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Pas mal", + "wordSecond": "Nieźle", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Monsieur", + "wordSecond": "Pan", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Madame", + "wordSecond": "Pani", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Mademoiselle", + "wordSecond": "Panna", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Amie", + "wordSecond": "Przyjaciółka", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Ami", + "wordSecond": "Przyjaciel", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Famille", + "wordSecond": "Rodzina", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Mère", + "wordSecond": "Matka", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Père", + "wordSecond": "Ojciec", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Frère", + "wordSecond": "Brat", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Sœur", + "wordSecond": "Siostra", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "Enfant", + "wordSecond": "Dziecko", + "createdAt": "2026-02-19T12:47:48.548Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_fr_zh_A1.json b/output/2026_02_19_greetings_introductions_fr_zh_A1.json new file mode 100644 index 0000000..5003f52 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_fr_zh_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:47:10.788Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Bonjour", + "wordSecond": "你好 (nǐ hǎo)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Salut", + "wordSecond": "嗨 (hāi)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Bonsoir", + "wordSecond": "晚上好 (wǎn shàng hǎo)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Bonne nuit", + "wordSecond": "晚安 (wǎn ān)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Au revoir", + "wordSecond": "再见 (zài jiàn)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "À bientôt", + "wordSecond": "回头见 (huí tóu jiàn)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "À demain", + "wordSecond": "明天见 (míng tiān jiàn)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "S'il vous plaît", + "wordSecond": "请 (qǐng)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Merci", + "wordSecond": "谢谢 (xiè xiè)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Merci beaucoup", + "wordSecond": "非常感谢 (fēi cháng gǎn xiè)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "De rien", + "wordSecond": "不客气 (bú kè qì)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Excusez-moi", + "wordSecond": "对不起 (duì bu qǐ)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Pardon", + "wordSecond": "抱歉 (bào qiàn)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Ça va ?", + "wordSecond": "你好吗? (nǐ hǎo ma?)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Ça va bien", + "wordSecond": "我很好 (wǒ hěn hǎo)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Et toi ?", + "wordSecond": "你呢? (nǐ ne?)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Comment allez-vous ?", + "wordSecond": "您好吗? (nín hǎo ma?)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Je m'appelle...", + "wordSecond": "我叫... (wǒ jiào...)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Mon nom est...", + "wordSecond": "我的名字是... (wǒ de míng zì shì...)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Quel est votre nom ?", + "wordSecond": "你叫什么名字? (nǐ jiào shén me míng zì?)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Enchanté(e)", + "wordSecond": "很高兴认识你 (hěn gāo xìng rèn shí nǐ)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Moi aussi", + "wordSecond": "我也是 (wǒ yě shì)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Oui", + "wordSecond": "是 (shì)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Non", + "wordSecond": "不 (bù)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Je", + "wordSecond": "我 (wǒ)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Tu", + "wordSecond": "你 (nǐ)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Vous", + "wordSecond": "您 (nín)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Il", + "wordSecond": "他 (tā)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Elle", + "wordSecond": "她 (tā)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Nous", + "wordSecond": "我们 (wǒ men)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Vous (pluriel)", + "wordSecond": "你们 (nǐ men)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Ils/Elles", + "wordSecond": "他们/她们 (tā men)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Bonjour (matin)", + "wordSecond": "早上好 (zǎo shàng hǎo)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Bonne après-midi", + "wordSecond": "下午好 (xià wǔ hǎo)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Salut (informel)", + "wordSecond": "拜拜 (bài bài)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "À plus tard", + "wordSecond": "待会儿见 (dāi huì er jiàn)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "S'il te plaît", + "wordSecond": "请 (qǐng)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Je vous en prie", + "wordSecond": "不用谢 (bú yòng xiè)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Désolé(e)", + "wordSecond": "对不起 (duì bu qǐ)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Pas de problème", + "wordSecond": "没问题 (méi wèn tí)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Comment ça va ?", + "wordSecond": "怎么样? (zěn me yàng?)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Très bien", + "wordSecond": "很好 (hěn hǎo)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Comme ci, comme ça", + "wordSecond": "马马虎虎 (mǎ mǎ hū hū)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Mal", + "wordSecond": "不好 (bù hǎo)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Qui ?", + "wordSecond": "谁? (shéi?)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Quoi ?", + "wordSecond": "什么? (shén me?)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Où ?", + "wordSecond": "哪里? (nǎ lǐ?)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Quand ?", + "wordSecond": "什么时候? (shén me shí hòu?)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Pourquoi ?", + "wordSecond": "为什么? (wèi shén me?)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Comment ?", + "wordSecond": "怎么? (zěn me?)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Je suis...", + "wordSecond": "我是... (wǒ shì...)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Je viens de...", + "wordSecond": "我来自... (wǒ lái zì...)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "J'ai ... ans", + "wordSecond": "我...岁 (wǒ ... suì)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Quel âge as-tu ?", + "wordSecond": "你几岁? (nǐ jǐ suì?)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Nationalité", + "wordSecond": "国籍 (guó jí)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Français(e)", + "wordSecond": "法国人 (fǎ guó rén)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Chinois(e)", + "wordSecond": "中国人 (zhōng guó rén)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Étudiant(e)", + "wordSecond": "学生 (xué shēng)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Professeur", + "wordSecond": "老师 (lǎo shī)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "Bienvenue", + "wordSecond": "欢迎 (huān yíng)", + "createdAt": "2026-02-19T12:47:10.788Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_it_ja_A1.json b/output/2026_02_19_greetings_introductions_it_ja_A1.json new file mode 100644 index 0000000..fbd181b --- /dev/null +++ b/output/2026_02_19_greetings_introductions_it_ja_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:48:17.287Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Ciao", + "wordSecond": "こんにちは (こんにちは, konnichiwa)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Buongiorno", + "wordSecond": "おはようございます (おはようございます, ohayō gozaimasu)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Buonasera", + "wordSecond": "こんばんは (こんばんは, konbanwa)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Buonanotte", + "wordSecond": "おやすみなさい (おやすみなさい, oyasumi nasai)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Arrivederci", + "wordSecond": "さようなら (さようなら, sayōnara)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Ciao (informale)", + "wordSecond": "じゃあね (じゃあね, jā ne)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Per favore", + "wordSecond": "おねがいします (おねがいします, onegaishimasu)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Grazie", + "wordSecond": "ありがとう (ありがとう, arigatō)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Grazie mille", + "wordSecond": "どうもありがとう (どうもありがとう, dōmo arigatō)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Prego", + "wordSecond": "どういたしまして (どういたしまして, dōitashimashite)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Scusa", + "wordSecond": "ごめんなさい (ごめんなさい, gomen nasai)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Mi dispiace", + "wordSecond": "すみません (すみません, sumimasen)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Sì", + "wordSecond": "はい (はい, hai)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "No", + "wordSecond": "いいえ (いいえ, iie)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Come stai?", + "wordSecond": "おげんきですか (おげんきですか, ogenki desu ka)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Sto bene", + "wordSecond": "げんきです (げんきです, genki desu)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "E tu?", + "wordSecond": "あなたは (あなたは, anata wa)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Piacere", + "wordSecond": "はじめまして (はじめまして, hajimemashite)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Il mio nome è", + "wordSecond": "わたしのなまえは (わたしのなまえは, watashi no namae wa)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Mi chiamo", + "wordSecond": "わたしは (わたしは, watashi wa)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Nome", + "wordSecond": "なまえ (なまえ, namae)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Età", + "wordSecond": "ねんれい (ねんれい, nenrei)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Ho ... anni", + "wordSecond": "わたしは ... さいです (わたしは ... さいです, watashi wa ... sai desu)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Nazionalità", + "wordSecond": "こくせき (こくせき, kokuseki)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Sono italiano", + "wordSecond": "わたしはイタリアじんです (わたしはイタリアじんです, watashi wa itariajin desu)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Sono italiana", + "wordSecond": "わたしはイタリアじんです (わたしはイタリアじんです, watashi wa itariajin desu)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Di dove sei?", + "wordSecond": "どこからきましたか (どこからきましたか, doko kara kimashita ka)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Vengo da", + "wordSecond": "わたしは ... からきました (わたしは ... からきました, watashi wa ... kara kimashita)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Italia", + "wordSecond": "イタリア (イタリア, itaria)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Piacere di conoscerti", + "wordSecond": "よろしくおねがいします (よろしくおねがいします, yoroshiku onegaishimasu)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Anch'io", + "wordSecond": "わたしも (わたしも, watashi mo)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Benvenuto", + "wordSecond": "ようこそ (ようこそ, yōkoso)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Come ti chiami?", + "wordSecond": "おなまえはなんですか (おなまえはなんですか, o-namae wa nan desu ka)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Lieto di conoscerti", + "wordSecond": "はじめまして (はじめまして, hajimemashite)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Grazie per l'aiuto", + "wordSecond": "てつだってくれてありがとう (てつだってくれてありがとう, tetsudatte kurete arigatō)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Prego (di niente)", + "wordSecond": "どういたしまして (どういたしまして, dōitashimashite)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Scusa il disturbo", + "wordSecond": "おじゃまします (おじゃまします, ojama shimasu)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Permesso", + "wordSecond": "しつれいします (しつれいします, shitsurei shimasu)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "A più tardi", + "wordSecond": "またあとで (またあとで, mata ato de)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "A domani", + "wordSecond": "またあした (またあした, mata ashita)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Buona giornata", + "wordSecond": "よいひを (よいひを, yoi hi o)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Buon lavoro", + "wordSecond": "おつかれさまです (おつかれさまです, otsukaresama desu)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Buon divertimento", + "wordSecond": "たのしんでください (たのしんでください, tanoshinde kudasai)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Buon viaggio", + "wordSecond": "いってらっしゃい (いってらっしゃい, itterasshai)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Buon appetito", + "wordSecond": "いただきます (いただきます, itadakimasu)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Grazie per il pasto", + "wordSecond": "ごちそうさまでした (ごちそうさまでした, gochisōsama deshita)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Come va?", + "wordSecond": "どうですか (どうですか, dō desu ka)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Non c'è di che", + "wordSecond": "どういたしまして (どういたしまして, dōitashimashite)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Mi scusi (formale)", + "wordSecond": "すみません (すみません, sumimasen)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Attento", + "wordSecond": "きをつけて (きをつけて, ki o tsukete)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Salve", + "wordSecond": "こんにちは (こんにちは, konnichiwa)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Addio", + "wordSecond": "さようなら (さようなら, sayōnara)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Ci vediamo", + "wordSecond": "またね (またね, mata ne)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "A presto", + "wordSecond": "じゃあまた (じゃあまた, jā mata)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Buona fortuna", + "wordSecond": "がんばって (がんばって, ganbatte)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Buona salute", + "wordSecond": "おだいじに (おだいじに, odaiji ni)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Buon compleanno", + "wordSecond": "おたんじょうびおめでとう (おたんじょうびおめでとう, otanjōbi omedetō)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Buon Natale", + "wordSecond": "メリークリスマス (メリークリスマス, merīkurisumasu)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Buon anno", + "wordSecond": "あけましておめでとう (あけましておめでとう, akemashite omedetō)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "Felice anno nuovo", + "wordSecond": "あけましておめでとう (あけましておめでとう, akemashite omedetō)", + "createdAt": "2026-02-19T12:48:17.287Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_it_ko_A1.json b/output/2026_02_19_greetings_introductions_it_ko_A1.json new file mode 100644 index 0000000..c04a301 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_it_ko_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:49:01.403Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Ciao", + "wordSecond": "안녕 (annyeong)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Buongiorno", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Buonasera", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Buonanotte", + "wordSecond": "안녕히 주무세요 (annyeonghi jumuseyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Arrivederci", + "wordSecond": "안녕히 가세요 (annyeonghi gaseyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Ciao (informale)", + "wordSecond": "안녕 (annyeong)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Per favore", + "wordSecond": "제발 (jebal)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Grazie", + "wordSecond": "감사합니다 (gamsahamnida)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Prego", + "wordSecond": "천만에요 (cheonmaneyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Scusa", + "wordSecond": "미안해요 (mianhaeyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Mi dispiace", + "wordSecond": "죄송합니다 (joesonghamnida)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Sì", + "wordSecond": "네 (ne)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "No", + "wordSecond": "아니요 (aniyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Come stai?", + "wordSecond": "어떻게 지내세요? (eotteoke jinaeseyo?)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Bene, grazie", + "wordSecond": "잘 지내요, 감사합니다 (jal jinaeyo, gamsahamnida)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Come ti chiami?", + "wordSecond": "이름이 뭐예요? (ireumi mwoyeyo?)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Mi chiamo...", + "wordSecond": "제 이름은...입니다 (je ireumeun...imnida)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Piacere di conoscerti", + "wordSecond": "만나서 반갑습니다 (mannaseo bangapseumnida)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Anch'io", + "wordSecond": "저도요 (jeodoyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Di dove sei?", + "wordSecond": "어디에서 왔어요? (eodieseo wasseoyo?)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Vengo da...", + "wordSecond": "...에서 왔어요 (...eseo wasseoyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Italia", + "wordSecond": "이탈리아 (itallia)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Corea", + "wordSecond": "한국 (hanguk)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Quanti anni hai?", + "wordSecond": "몇 살이에요? (myeot sarieyo?)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Ho ... anni", + "wordSecond": "...살이에요 (...sar-ieyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Studente", + "wordSecond": "학생 (haksaeng)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Lavoro", + "wordSecond": "일 (il)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Insegnante", + "wordSecond": "선생님 (seonsaengnim)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Dottore", + "wordSecond": "의사 (uisa)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Che lavoro fai?", + "wordSecond": "무슨 일 하세요? (museun il haseyo?)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Dove abiti?", + "wordSecond": "어디에 살아요? (eodie sarayo?)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Abito a...", + "wordSecond": "...에 살아요 (...e sarayo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Città", + "wordSecond": "도시 (dosi)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Casa", + "wordSecond": "집 (jip)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Scuola", + "wordSecond": "학교 (hakgyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Ufficio", + "wordSecond": "사무실 (samusil)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Buona giornata", + "wordSecond": "좋은 하루 되세요 (joeun haru doeseyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "A presto", + "wordSecond": "나중에 봐요 (najunge bwayo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Ci vediamo", + "wordSecond": "다음에 봐요 (daeume bwayo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Aspetta", + "wordSecond": "잠깐만요 (jamkkanmanyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Non capisco", + "wordSecond": "이해가 안 돼요 (ihaega an dwaeyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Puoi ripetere?", + "wordSecond": "다시 말해 주세요? (dasi malhae juseyo?)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Parla inglese?", + "wordSecond": "영어 할 줄 아세요? (yeongeo hal jul aseyo?)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Parla italiano?", + "wordSecond": "이탈리아어 할 줄 아세요? (itallia-eo hal jul aseyo?)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Parla coreano?", + "wordSecond": "한국어 할 줄 아세요? (hangugeo hal jul aseyo?)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Un po'", + "wordSecond": "조금 (jogeum)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Molto", + "wordSecond": "많이 (mani)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Bene", + "wordSecond": "잘 (jal)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Male", + "wordSecond": "안 좋아요 (an joayo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Così così", + "wordSecond": "그저 그래요 (geujeo geuraeyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Fame", + "wordSecond": "배고파요 (baegopayo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Sete", + "wordSecond": "목말라요 (mongmallyayo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Stanco", + "wordSecond": "피곤해요 (pigonhaeyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Felice", + "wordSecond": "행복해요 (haengbokhaeyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Triste", + "wordSecond": "슬퍼요 (seulpeoyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Caldo", + "wordSecond": "더워요 (deowoyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Freddo", + "wordSecond": "추워요 (chuwoyo)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Oggi", + "wordSecond": "오늘 (oneul)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Domani", + "wordSecond": "내일 (naeil)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "Ieri", + "wordSecond": "어제 (eoje)", + "createdAt": "2026-02-19T12:49:01.403Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_it_pl_A1.json b/output/2026_02_19_greetings_introductions_it_pl_A1.json new file mode 100644 index 0000000..37ccbe3 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_it_pl_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:49:16.287Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Ciao", + "wordSecond": "Cześć", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Buongiorno", + "wordSecond": "Dzień dobry", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Buonasera", + "wordSecond": "Dobry wieczór", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Buonanotte", + "wordSecond": "Dobranoc", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Arrivederci", + "wordSecond": "Do widzenia", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Addio", + "wordSecond": "Żegnaj", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "A presto", + "wordSecond": "Do zobaczenia", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Per favore", + "wordSecond": "Proszę", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Grazie", + "wordSecond": "Dziękuję", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Prego", + "wordSecond": "Proszę bardzo", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Scusa", + "wordSecond": "Przepraszam", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Mi dispiace", + "wordSecond": "Przykro mi", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Sì", + "wordSecond": "Tak", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "No", + "wordSecond": "Nie", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Salve", + "wordSecond": "Witaj", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Benvenuto", + "wordSecond": "Witamy", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Come stai?", + "wordSecond": "Jak się masz?", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Sto bene", + "wordSecond": "Dobrze", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Non c'è male", + "wordSecond": "Nieźle", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Come va?", + "wordSecond": "Jak leci?", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "E tu?", + "wordSecond": "A ty?", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Mi chiamo...", + "wordSecond": "Nazywam się...", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Il mio nome è...", + "wordSecond": "Moje imię to...", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Io sono...", + "wordSecond": "Jestem...", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Piacere", + "wordSecond": "Miło mi", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Anch'io", + "wordSecond": "Mnie też", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Di dove sei?", + "wordSecond": "Skąd jesteś?", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Sono di...", + "wordSecond": "Jestem z...", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Sono italiano", + "wordSecond": "Jestem Włochem", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Sono italiana", + "wordSecond": "Jestem Włoszką", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Quanti anni hai?", + "wordSecond": "Ile masz lat?", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Ho ... anni", + "wordSecond": "Mam ... lat", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Dove abiti?", + "wordSecond": "Gdzie mieszkasz?", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Abito a...", + "wordSecond": "Mieszkam w...", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Che lavoro fai?", + "wordSecond": "Czym się zajujesz?", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Sono studente", + "wordSecond": "Jestem studentem", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Sono studentessa", + "wordSecond": "Jestem studentką", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Parla inglese?", + "wordSecond": "Czy mówisz po angielsku?", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Parlo un po'", + "wordSecond": "Mówię trochę", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Non capisco", + "wordSecond": "Nie rozumiem", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Puoi ripetere?", + "wordSecond": "Możesz powtórzyć?", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Come si dice?", + "wordSecond": "Jak to się mówi?", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Aspetta", + "wordSecond": "Czekaj", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Un attimo", + "wordSecond": "Chwileczkę", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Va bene", + "wordSecond": "Dobrze", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Certamente", + "wordSecond": "Oczywiście", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Forse", + "wordSecond": "Może", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Non lo so", + "wordSecond": "Nie wiem", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Aiuto", + "wordSecond": "Pomocy", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Buona giornata", + "wordSecond": "Miłego dnia", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Buon fine settimana", + "wordSecond": "Miłego weekendu", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Buon viaggio", + "wordSecond": "Szczęśliwej podróży", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "In bocca al lupo", + "wordSecond": "Powodzenia", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Congratulazioni", + "wordSecond": "Gratulacje", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Felice anno nuovo", + "wordSecond": "Szczęśliwego Nowego Roku", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Buon compleanno", + "wordSecond": "Wszystkiego najlepszego", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Buon appetito", + "wordSecond": "Smacznego", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Salute", + "wordSecond": "Na zdrowie", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Scusi (formale)", + "wordSecond": "Przepraszam (formalnie)", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "Grazie mille", + "wordSecond": "Dziękuję bardzo", + "createdAt": "2026-02-19T12:49:16.287Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_it_zh_A1.json b/output/2026_02_19_greetings_introductions_it_zh_A1.json new file mode 100644 index 0000000..17c1f97 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_it_zh_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:48:40.009Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Ciao", + "wordSecond": "你好 (nǐ hǎo)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Buongiorno", + "wordSecond": "早上好 (zǎo shang hǎo)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Buonasera", + "wordSecond": "晚上好 (wǎn shang hǎo)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Buonanotte", + "wordSecond": "晚安 (wǎn ān)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Arrivederci", + "wordSecond": "再见 (zài jiàn)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Addio", + "wordSecond": "永别 (yǒng bié)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Per favore", + "wordSecond": "请 (qǐng)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Grazie", + "wordSecond": "谢谢 (xiè xie)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Prego", + "wordSecond": "不客气 (bú kè qì)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Scusa", + "wordSecond": "对不起 (duì bu qǐ)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Mi dispiace", + "wordSecond": "抱歉 (bào qiàn)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Sì", + "wordSecond": "是 (shì)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "No", + "wordSecond": "不 (bù)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Come stai?", + "wordSecond": "你好吗? (nǐ hǎo ma?)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Bene, grazie", + "wordSecond": "我很好,谢谢 (wǒ hěn hǎo, xiè xie)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "E tu?", + "wordSecond": "你呢? (nǐ ne?)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Come ti chiami?", + "wordSecond": "你叫什么名字? (nǐ jiào shén me míng zi?)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Mi chiamo...", + "wordSecond": "我叫... (wǒ jiào...)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Piacere di conoscerti", + "wordSecond": "很高兴认识你 (hěn gāo xìng rèn shi nǐ)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Anch'io", + "wordSecond": "我也是 (wǒ yě shì)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Di dove sei?", + "wordSecond": "你是哪国人? (nǐ shì nǎ guó rén?)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Sono italiano", + "wordSecond": "我是意大利人 (wǒ shì yì dà lì rén)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Sono italiana", + "wordSecond": "我是意大利人 (wǒ shì yì dà lì rén)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Quanti anni hai?", + "wordSecond": "你几岁? (nǐ jǐ suì?)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Ho vent'anni", + "wordSecond": "我二十岁 (wǒ èr shí suì)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Dove abiti?", + "wordSecond": "你住在哪里? (nǐ zhù zài nǎ lǐ?)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Abito a Roma", + "wordSecond": "我住在罗马 (wǒ zhù zài luó mǎ)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Che lavoro fai?", + "wordSecond": "你做什么工作? (nǐ zuò shén me gōng zuò?)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Sono studente", + "wordSecond": "我是学生 (wǒ shì xué sheng)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Sono studentessa", + "wordSecond": "我是学生 (wǒ shì xué sheng)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Buon pomeriggio", + "wordSecond": "下午好 (xià wǔ hǎo)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "A presto", + "wordSecond": "一会儿见 (yī huì er jiàn)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Ci vediamo", + "wordSecond": "再见 (zài jiàn)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Grazie mille", + "wordSecond": "非常感谢 (fēi cháng gǎn xiè)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Prego, figurati", + "wordSecond": "不用谢 (bú yòng xiè)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Non c'è problema", + "wordSecond": "没问题 (méi wèn tí)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Come va?", + "wordSecond": "怎么样? (zěn me yàng?)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Così così", + "wordSecond": "马马虎虎 (mǎ mǎ hǔ hǔ)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Male", + "wordSecond": "不好 (bù hǎo)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Molto bene", + "wordSecond": "很好 (hěn hǎo)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Parla inglese?", + "wordSecond": "你会说英语吗? (nǐ huì shuō yīng yǔ ma?)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Parlo un po' di cinese", + "wordSecond": "我会说一点中文 (wǒ huì shuō yī diǎn zhōng wén)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Non capisco", + "wordSecond": "我不懂 (wǒ bù dǒng)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Puoi ripetere?", + "wordSecond": "你可以重复吗? (nǐ kě yǐ chóng fù ma?)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Che significa?", + "wordSecond": "什么意思? (shén me yì si?)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Mi chiamo Marco", + "wordSecond": "我叫马可 (wǒ jiào mǎ kě)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Sono di Milano", + "wordSecond": "我来自米兰 (wǒ lái zì mǐ lán)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Ho trent'anni", + "wordSecond": "我三十岁 (wǒ sān shí suì)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Lavoro in un ufficio", + "wordSecond": "我在办公室工作 (wǒ zài bàn gōng shì gōng zuò)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Studio cinese", + "wordSecond": "我学中文 (wǒ xué zhōng wén)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Piacere", + "wordSecond": "幸会 (xìng huì)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Molto lieto", + "wordSecond": "很高兴 (hěn gāo xìng)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Come ti chiami?", + "wordSecond": "你叫什么? (nǐ jiào shén me?)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Il mio nome è...", + "wordSecond": "我的名字是... (wǒ de míng zi shì...)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Sono cinese", + "wordSecond": "我是中国人 (wǒ shì zhōng guó rén)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Sono americano", + "wordSecond": "我是美国人 (wǒ shì měi guó rén)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Sono americana", + "wordSecond": "我是美国人 (wǒ shì měi guó rén)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Ho venticinque anni", + "wordSecond": "我二十五岁 (wǒ èr shí wǔ suì)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Abito in Italia", + "wordSecond": "我住在意大利 (wǒ zhù zài yì dà lì)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "Sono insegnante", + "wordSecond": "我是老师 (wǒ shì lǎo shī)", + "createdAt": "2026-02-19T12:48:40.009Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_ja_ko_A1.json b/output/2026_02_19_greetings_introductions_ja_ko_A1.json new file mode 100644 index 0000000..746de80 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_ja_ko_A1.json @@ -0,0 +1,777 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:50:22.177Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "こんにちは (こんにちは, konnichiwa)", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "おはようございます (おはようございます, ohayō gozaimasu)", + "wordSecond": "안녕하세요 (annyeonghaseyo) / 좋은 아침 (joeun achim)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "こんばんは (こんばんは, konbanwa)", + "wordSecond": "안녕하세요 (annyeonghaseyo) / 좋은 저녁 (joeun jeonyeok)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "さようなら (さようなら, sayōnara)", + "wordSecond": "안녕히 가세요 (annyeonghi gaseyo) / 안녕히 계세요 (annyeonghi gyeseyo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "またね (またね, mata ne)", + "wordSecond": "다음에 봐요 (daeume bwayo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "じゃあね (じゃあね, jā ne)", + "wordSecond": "그럼 안녕 (geureom annyeong)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "おやすみなさい (おやすみなさい, oyasuminasai)", + "wordSecond": "안녕히 주무세요 (annyeonghi jumuseyo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "はじめまして (はじめまして, hajimemashite)", + "wordSecond": "처음 뵙겠습니다 (cheoeum boepgetseumnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "よろしくお願いします (よろしくおねがいします, yoroshiku onegaishimasu)", + "wordSecond": "잘 부탁드립니다 (jal butakdeurimnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ありがとう (ありがとう, arigatō)", + "wordSecond": "감사합니다 (gamsahamnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "どういたしまして (どういたしまして, dōitashimashite)", + "wordSecond": "천만에요 (cheonmaneyo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "すみません (すみません, sumimasen)", + "wordSecond": "죄송합니다 (joesonghamnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ごめんなさい (ごめんなさい, gomennasai)", + "wordSecond": "미안합니다 (mianhamnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "はい (はい, hai)", + "wordSecond": "네 (ne)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "いいえ (いいえ, iie)", + "wordSecond": "아니요 (aniyo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お願いします (おねがいします, onegaishimasu)", + "wordSecond": "부탁합니다 (butakhamnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "名前 (なまえ, namae)", + "wordSecond": "이름 (ireum)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "私 (わたし, watashi)", + "wordSecond": "저 (jeo) / 나 (na)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "あなた (あなた, anata)", + "wordSecond": "당신 (dangsin)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "歳 (さい, sai)", + "wordSecond": "살 (sal)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "年齢 (ねんれい, nenrei)", + "wordSecond": "나이 (nai)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "日本人 (にほんじん, nihonjin)", + "wordSecond": "일본인 (ilbonin)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "韓国人 (かんこくじん, kankokujin)", + "wordSecond": "한국인 (hangugin)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "アメリカ人 (アメリカじん, amerikajin)", + "wordSecond": "미국인 (migugin)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "中国人 (ちゅうごくじん, chūgokujin)", + "wordSecond": "중국인 (junggugin)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "学生 (がくせい, gakusei)", + "wordSecond": "학생 (haksaeng)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "先生 (せんせい, sensei)", + "wordSecond": "선생님 (seonsaengnim)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "会社員 (かいしゃいん, kaishain)", + "wordSecond": "회사원 (hoesawon)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "元気ですか (げんきですか, genki desu ka)", + "wordSecond": "안녕하세요? (annyeonghaseyo?) / 잘 지내세요? (jal jinaeseyo?)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "元気です (げんきです, genki desu)", + "wordSecond": "네, 잘 지내요 (ne, jal jinaeyo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お元気ですか (おげんきですか, ogenki desu ka)", + "wordSecond": "안녕하세요? (annyeonghaseyo?)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "はい、元気です (はい、げんきです, hai, genki desu)", + "wordSecond": "네, 잘 지내요 (ne, jal jinaeyo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "どうも (どうも, dōmo)", + "wordSecond": "안녕 (annyeong) / 고마워 (gomawo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "失礼します (しつれいします, shitsurei shimasu)", + "wordSecond": "실례합니다 (sillyehamnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "いらっしゃいませ (いらっしゃいませ, irasshaimase)", + "wordSecond": "어서 오세요 (eoseo oseyo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ただいま (ただいま, tadaima)", + "wordSecond": "다녀왔습니다 (danyeowatseumnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "おかえりなさい (おかえりなさい, okaerinasai)", + "wordSecond": "어서 오세요 (eoseo oseyo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "いただきます (いただきます, itadakimasu)", + "wordSecond": "잘 먹겠습니다 (jal meokgetseumnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ごちそうさまでした (ごちそうさまでした, gochisōsama deshita)", + "wordSecond": "잘 먹었습니다 (jal meogeotseumnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お疲れ様です (おつかれさまです, otsukaresama desu)", + "wordSecond": "수고하셨습니다 (sugohasyeotseumnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お久しぶりです (おひさしぶりです, ohisashiburi desu)", + "wordSecond": "오랜만입니다 (oraenmanimnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お会いできて嬉しいです (おあいできてうれしいです, oai dekite ureshii desu)", + "wordSecond": "만나서 반갑습니다 (mannaseo bangapseumnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "こちらこそ (こちらこそ, kochira koso)", + "wordSecond": "저야말로 (jeoyamallo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "どうぞ (どうぞ, dōzo)", + "wordSecond": "여기요 (yeogiyo) / 어서 (eoseo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お大事に (おだいじに, odaiji ni)", + "wordSecond": "몸 조심하세요 (mom josimhaseyo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "気をつけて (きをつけて, ki o tsukete)", + "wordSecond": "조심하세요 (josimhaseyo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "行ってきます (いってきます, ittekimasu)", + "wordSecond": "다녀오겠습니다 (danyeogetseumnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "行ってらっしゃい (いってらっしゃい, itterasshai)", + "wordSecond": "다녀오세요 (danyeooseyo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お先に失礼します (おさきにしつれいします, osaki ni shitsurei shimasu)", + "wordSecond": "먼저 실례하겠습니다 (meonjeo sillyehagetseumnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お邪魔します (おじゃまします, ojama shimasu)", + "wordSecond": "방해합니다 (banghaehamnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "おめでとうございます (おめでとうございます, omedetō gozaimasu)", + "wordSecond": "축하합니다 (chukahamnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お疲れ様でした (おつかれさまでした, otsukaresama deshita)", + "wordSecond": "수고하셨습니다 (sugohasyeotseumnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ご苦労様でした (ごくろうさまでした, gokurōsama deshita)", + "wordSecond": "수고하셨습니다 (sugohasyeotseumnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お世話になります (おせわになります, osewa ni narimasu)", + "wordSecond": "잘 부탁드립니다 (jal butakdeurimnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お世話様です (おせわさまです, osewasama desu)", + "wordSecond": "수고하셨습니다 (sugohasyeotseumnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お邪魔しました (おじゃましました, ojama shimashita)", + "wordSecond": "방해했습니다 (banghaehaetseumnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お先に (おさきに, osaki ni)", + "wordSecond": "먼저 (meonjeo)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お疲れ様 (おつかれさま, otsukaresama)", + "wordSecond": "수고하셨습니다 (sugohasyeotseumnida)", + "createdAt": "2026-02-19T12:50:22.177Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_ja_pl_A1.json b/output/2026_02_19_greetings_introductions_ja_pl_A1.json new file mode 100644 index 0000000..05a30e3 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_ja_pl_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:51:13.292Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "こんにちは (こんにちは, konnichiwa)", + "wordSecond": "dzień dobry", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おはようございます (おはようございます, ohayō gozaimasu)", + "wordSecond": "dzień dobry (rano)", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "こんばんは (こんばんは, konbanwa)", + "wordSecond": "dobry wieczór", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "さようなら (さようなら, sayōnara)", + "wordSecond": "do widzenia", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "じゃあね (じゃあね, jā ne)", + "wordSecond": "na razie", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "またね (またね, mata ne)", + "wordSecond": "do zobaczenia", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おやすみなさい (おやすみなさい, oyasuminasai)", + "wordSecond": "dobranoc", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "はじめまして (はじめまして, hajimemashite)", + "wordSecond": "miło mi cię poznać", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おげんきですか (おげんきですか, ogenki desu ka)", + "wordSecond": "jak się masz?", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "げんきです (げんきです, genki desu)", + "wordSecond": "mam się dobrze", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ありがとう (ありがとう, arigatō)", + "wordSecond": "dziękuję", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ありがとうございます (ありがとうございます, arigatō gozaimasu)", + "wordSecond": "dziękuję bardzo", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "どういたしまして (どういたしまして, dōitashimashite)", + "wordSecond": "proszę bardzo", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "すみません (すみません, sumimasen)", + "wordSecond": "przepraszam", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ごめんなさい (ごめんなさい, gomennasai)", + "wordSecond": "przepraszam", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "はい (はい, hai)", + "wordSecond": "tak", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "いいえ (いいえ, iie)", + "wordSecond": "nie", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おねがいします (おねがいします, onegaishimasu)", + "wordSecond": "proszę", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "はい、おねがいします (はい、おねがいします, hai, onegaishimasu)", + "wordSecond": "tak, proszę", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "いいえ、けっこうです (いいえ、けっこうです, iie, kekkō desu)", + "wordSecond": "nie, dziękuję", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おなまえは? (おなまえは?, o-namae wa?)", + "wordSecond": "jak masz na imię?", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "わたしのなまえは...です (わたしのなまえは...です, watashi no namae wa... desu)", + "wordSecond": "nazywam się...", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "なまえ (なまえ, namae)", + "wordSecond": "imię", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "わたし (わたし, watashi)", + "wordSecond": "ja", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "あなた (あなた, anata)", + "wordSecond": "ty", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "かれ (かれ, kare)", + "wordSecond": "on", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "かのじょ (かのじょ, kanojo)", + "wordSecond": "ona", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ともだち (ともだち, tomodachi)", + "wordSecond": "przyjaciel", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "せんせい (せんせい, sensei)", + "wordSecond": "nauczyciel", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "がくせい (がくせい, gakusei)", + "wordSecond": "student", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おとこのひと (おとこのひと, otoko no hito)", + "wordSecond": "mężczyzna", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おんなのひと (おんなのひと, onna no hito)", + "wordSecond": "kobieta", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "こども (こども, kodomo)", + "wordSecond": "dziecko", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おじいさん (おじいさん, ojīsan)", + "wordSecond": "dziadek", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おばあさん (おばあさん, obāsan)", + "wordSecond": "babcia", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おとうさん (おとうさん, otōsan)", + "wordSecond": "ojciec", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おかあさん (おかあさん, okāsan)", + "wordSecond": "matka", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おにいさん (おにいさん, onīsan)", + "wordSecond": "starszy brat", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おねえさん (おねえさん, onēsan)", + "wordSecond": "starsza siostra", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "おとうと (おとうと, otōto)", + "wordSecond": "młodszy brat", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "いもうと (いもうと, imōto)", + "wordSecond": "młodsza siostra", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "なんさいですか? (なんさいですか?, nansai desu ka?)", + "wordSecond": "ile masz lat?", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "...さいです (...さいです, ...sai desu)", + "wordSecond": "mam ... lat", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "とし (とし, toshi)", + "wordSecond": "wiek", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "くに (くに, kuni)", + "wordSecond": "kraj", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "どこのくにですか? (どこのくにですか?, doko no kuni desu ka?)", + "wordSecond": "z jakiego kraju jesteś?", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "にほん (にほん, nihon)", + "wordSecond": "Japonia", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ポーランド (ポーランド, pōrando)", + "wordSecond": "Polska", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "アメリカ (アメリカ, amerika)", + "wordSecond": "Ameryka", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "イギリス (イギリス, igirisu)", + "wordSecond": "Wielka Brytania", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ドイツ (ドイツ, doitsu)", + "wordSecond": "Niemcy", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "フランス (フランス, furansu)", + "wordSecond": "Francja", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ちゅうごく (ちゅうごく, chūgoku)", + "wordSecond": "Chiny", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "かんこく (かんこく, kankoku)", + "wordSecond": "Korea", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "にほんじん (にほんじん, nihonjin)", + "wordSecond": "Japończyk", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ポーランドじん (ポーランドじん, pōrando jin)", + "wordSecond": "Polak", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "アメリカじん (アメリカじん, amerika jin)", + "wordSecond": "Amerykanin", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "イギリスじん (イギリスじん, igirisu jin)", + "wordSecond": "Brytyjczyk", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ドイツじん (ドイツじん, doitsu jin)", + "wordSecond": "Niemiec", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "フランスじん (フランスじん, furansu jin)", + "wordSecond": "Francuz", + "createdAt": "2026-02-19T12:51:13.292Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_ja_zh_A1.json b/output/2026_02_19_greetings_introductions_ja_zh_A1.json new file mode 100644 index 0000000..a51ebe8 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_ja_zh_A1.json @@ -0,0 +1,786 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:49:46.894Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "こんにちは (こんにちは, konnichiwa)", + "wordSecond": "你好 (nǐ hǎo)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "おはようございます (おはようございます, ohayō gozaimasu)", + "wordSecond": "早上好 (zǎo shang hǎo)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "こんばんは (こんばんは, konbanwa)", + "wordSecond": "晚上好 (wǎn shang hǎo)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "さようなら (さようなら, sayōnara)", + "wordSecond": "再见 (zài jiàn)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "おやすみなさい (おやすみなさい, oyasuminasai)", + "wordSecond": "晚安 (wǎn ān)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ありがとう (ありがとう, arigatō)", + "wordSecond": "谢谢 (xiè xie)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "どういたしまして (どういたしまして, dōitashimashite)", + "wordSecond": "不客气 (bú kè qì)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "すみません (すみません, sumimasen)", + "wordSecond": "对不起 (duì bu qǐ)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ごめんなさい (ごめんなさい, gomennasai)", + "wordSecond": "抱歉 (bào qiàn)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "はい (はい, hai)", + "wordSecond": "是 (shì)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "いいえ (いいえ, iie)", + "wordSecond": "不 (bù)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お願いします (おねがいします, onegaishimasu)", + "wordSecond": "请 (qǐng)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "どうぞ (どうぞ, dōzo)", + "wordSecond": "请 (qǐng)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "私 (わたし, watashi)", + "wordSecond": "我 (wǒ)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "あなた (あなた, anata)", + "wordSecond": "你 (nǐ)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "名前 (なまえ, namae)", + "wordSecond": "名字 (míng zi)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "歳 (さい, sai)", + "wordSecond": "岁 (suì)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "年齢 (ねんれい, nenrei)", + "wordSecond": "年龄 (nián líng)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "国 (くに, kuni)", + "wordSecond": "国家 (guó jiā)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "出身 (しゅっしん, shusshin)", + "wordSecond": "来自 (lái zì)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "初めまして (はじめまして, hajimemashite)", + "wordSecond": "初次见面 (chū cì jiàn miàn)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "よろしくお願いします (よろしくおねがいします, yoroshiku onegaishimasu)", + "wordSecond": "请多关照 (qǐng duō guān zhào)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "元気ですか (げんきですか, genki desu ka)", + "wordSecond": "你好吗 (nǐ hǎo ma)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "元気です (げんきです, genki desu)", + "wordSecond": "我很好 (wǒ hěn hǎo)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お元気で (おげんきで, ogenki de)", + "wordSecond": "保重 (bǎo zhòng)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "またね (またね, mata ne)", + "wordSecond": "回头见 (huí tóu jiàn)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "じゃあね (じゃあね, jā ne)", + "wordSecond": "拜拜 (bài bài)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "失礼します (しつれいします, shitsurei shimasu)", + "wordSecond": "失陪了 (shī péi le)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "いらっしゃいませ (いらっしゃいませ, irasshaimase)", + "wordSecond": "欢迎光临 (huān yíng guāng lín)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "おかえりなさい (おかえりなさい, okaerinasai)", + "wordSecond": "欢迎回来 (huān yíng huí lái)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ただいま (ただいま, tadaima)", + "wordSecond": "我回来了 (wǒ huí lái le)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "おかえり (おかえり, okaeri)", + "wordSecond": "你回来了 (nǐ huí lái le)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "いただきます (いただきます, itadakimasu)", + "wordSecond": "我开动了 (wǒ kāi dòng le)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ごちそうさまでした (ごちそうさまでした, gochisōsama deshita)", + "wordSecond": "我吃饱了 (wǒ chī bǎo le)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お大事に (おだいじに, odaiji ni)", + "wordSecond": "请保重身体 (qǐng bǎo zhòng shēn tǐ)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お疲れ様でした (おつかれさまでした, otsukaresama deshita)", + "wordSecond": "辛苦了 (xīn kǔ le)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ご苦労様でした (ごくろうさまでした, gokurōsama deshita)", + "wordSecond": "辛苦了 (xīn kǔ le)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お久しぶりです (おひさしぶりです, ohisashiburi desu)", + "wordSecond": "好久不见 (hǎo jiǔ bú jiàn)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "おめでとうございます (おめでとうございます, omedetō gozaimasu)", + "wordSecond": "恭喜 (gōng xǐ)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "どうも (どうも, dōmo)", + "wordSecond": "谢谢 (xiè xie)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "こちらこそ (こちらこそ, kochira koso)", + "wordSecond": "彼此彼此 (bǐ cǐ bǐ cǐ)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お邪魔します (おじゃまします, ojama shimasu)", + "wordSecond": "打扰了 (dǎ rǎo le)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お先に失礼します (おさきにしつれいします, osaki ni shitsurei shimasu)", + "wordSecond": "我先告辞了 (wǒ xiān gào cí le)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お疲れ様です (おつかれさまです, otsukaresama desu)", + "wordSecond": "辛苦了 (xīn kǔ le)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ごめん (ごめん, gomen)", + "wordSecond": "对不起 (duì bu qǐ)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "どうしたの (どうしたの, dōshita no)", + "wordSecond": "怎么了 (zěn me le)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "大丈夫です (だいじょうぶです, daijōbu desu)", + "wordSecond": "没关系 (méi guān xi)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "分かりました (わかりました, wakarimashita)", + "wordSecond": "明白了 (míng bái le)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "分かりません (わかりません, wakarimasen)", + "wordSecond": "不明白 (bù míng bái)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "もう一度お願いします (もういちどおねがいします, mō ichido onegaishimasu)", + "wordSecond": "请再说一遍 (qǐng zài shuō yī biàn)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ゆっくり話してください (ゆっくりはなしてください, yukkuri hanashite kudasai)", + "wordSecond": "请说慢一点 (qǐng shuō màn yī diǎn)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "英語が話せますか (えいごがはなせますか, eigo ga hanasemasu ka)", + "wordSecond": "你会说英语吗 (nǐ huì shuō yīng yǔ ma)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "少し話せます (すこしはなせます, sukoshi hanasemasu)", + "wordSecond": "我会说一点 (wǒ huì shuō yī diǎn)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "日本語 (にほんご, nihongo)", + "wordSecond": "日语 (rì yǔ)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "中国語 (ちゅうごくご, chūgokugo)", + "wordSecond": "中文 (zhōng wén)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "学生 (がくせい, gakusei)", + "wordSecond": "学生 (xué sheng)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "先生 (せんせい, sensei)", + "wordSecond": "老师 (lǎo shī)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "友達 (ともだち, tomodachi)", + "wordSecond": "朋友 (péng you)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "家族 (かぞく, kazoku)", + "wordSecond": "家人 (jiā rén)", + "createdAt": "2026-02-19T12:49:46.894Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_ko_pl_A1.json b/output/2026_02_19_greetings_introductions_ko_pl_A1.json new file mode 100644 index 0000000..eacaa7a --- /dev/null +++ b/output/2026_02_19_greetings_introductions_ko_pl_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:52:24.141Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "안녕하세요 (annyeonghaseyo)", + "wordSecond": "Dzień dobry", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "안녕 (annyeong)", + "wordSecond": "Cześć", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "안녕히 가세요 (annyeonghi gaseyo)", + "wordSecond": "Do widzenia", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "안녕히 계세요 (annyeonghi gyeseyo)", + "wordSecond": "Do widzenia (gdy ty wychodzisz)", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "좋은 아침 (joeun achim)", + "wordSecond": "Dzień dobry (rano)", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "좋은 저녁 (joeun jeonyeok)", + "wordSecond": "Dobry wieczór", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "안녕히 주무세요 (annyeonghi jumuseyo)", + "wordSecond": "Dobranoc", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "감사합니다 (gamsahamnida)", + "wordSecond": "Dziękuję", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "고맙습니다 (gomapseumnida)", + "wordSecond": "Dziękuję", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "천만에요 (cheonmaneyo)", + "wordSecond": "Proszę (w odpowiedzi na dziękuję)", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "실례합니다 (sillyehamnida)", + "wordSecond": "Przepraszam (zwracając uwagę)", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "죄송합니다 (joesonghamnida)", + "wordSecond": "Przepraszam (za błąd)", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "네 (ne)", + "wordSecond": "Tak", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "아니요 (aniyo)", + "wordSecond": "Nie", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "네? (ne?)", + "wordSecond": "Słucham?", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "여보세요 (yeoboseyo)", + "wordSecond": "Halo (przez telefon)", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "만나서 반갑습니다 (mannaseo bangapseumnida)", + "wordSecond": "Miło mi pana/panią poznać", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "처음 뵙겠습니다 (cheoeum boepgetseumnida)", + "wordSecond": "Miło mi pana/panią poznać (pierwsze spotkanie)", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "이름 (ireum)", + "wordSecond": "Imię", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "제 이름은...입니다 (je ireumeun...imnida)", + "wordSecond": "Nazywam się...", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "나이 (nai)", + "wordSecond": "Wiek", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "저는 ...살입니다 (jeoneun ...salimnida)", + "wordSecond": "Mam ... lat", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "국적 (gukjeok)", + "wordSecond": "Narodowość", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "저는 한국 사람입니다 (jeoneun hanguk saramimnida)", + "wordSecond": "Jestem Koreańczykiem/Koreanką", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "저는 폴란드 사람입니다 (jeoneun pollandeu saramimnida)", + "wordSecond": "Jestem Polakiem/Polką", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "어디에서 왔어요? (eodieseo wasseoyo?)", + "wordSecond": "Skąd pan/pani pochodzi?", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "어디에 사세요? (eodie saseyo?)", + "wordSecond": "Gdzie pan/pani mieszka?", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "반갑습니다 (bangapseumnida)", + "wordSecond": "Miło mi", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "잘 지내세요? (jal jinaeseyo?)", + "wordSecond": "Jak się pan/pani miewa?", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "네, 잘 지냅니다 (ne, jal jinaemnida)", + "wordSecond": "Tak, dobrze", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "그저 그래요 (geujeo geuraeyo)", + "wordSecond": "Tak sobie", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "안녕하십니까? (annyeonghasimnikka?)", + "wordSecond": "Dzień dobry (bardzo formalnie)", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "수고하세요 (sugohaseyo)", + "wordSecond": "Do widzenia (w pracy/sklepie)", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "다음에 봐요 (daeume bwayo)", + "wordSecond": "Do zobaczenia", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "내일 봐요 (naeil bwayo)", + "wordSecond": "Do jutra", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "잘 가 (jal ga)", + "wordSecond": "Pa (nieformalnie, gdy ktoś odchodzi)", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "잘 있어 (jal isseo)", + "wordSecond": "Pa (nieformalnie, gdy ty odchodzisz)", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "고마워 (gomawo)", + "wordSecond": "Dzięki (nieformalnie)", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "미안해 (mianhae)", + "wordSecond": "Przepraszam (nieformalnie)", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "괜찮아요 (gwaenchanayo)", + "wordSecond": "W porządku", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "부탁합니다 (butakamnida)", + "wordSecond": "Proszę (o przysługę)", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "여기요 (yeogiyo)", + "wordSecond": "Przepraszam (w restauracji)", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "알겠습니다 (algetseumnida)", + "wordSecond": "Rozumiem", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "몰라요 (mollayo)", + "wordSecond": "Nie wiem", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "도와주세요 (dowajuseyo)", + "wordSecond": "Proszę mi pomóc", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "말씀하세요 (malsseumhaseyo)", + "wordSecond": "Proszę mówić", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "천천히 말씀해 주세요 (cheoncheonhi malsseumhae juseyo)", + "wordSecond": "Proszę mówić wolniej", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "다시 한 번 말씀해 주세요 (dasi han beon malsseumhae juseyo)", + "wordSecond": "Proszę powtórzyć", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "영어 할 줄 아세요? (yeongeo hal jul aseyo?)", + "wordSecond": "Czy mówi pan/pani po angielsku?", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "한국어 할 줄 아세요? (hangugeo hal jul aseyo?)", + "wordSecond": "Czy mówi pan/pani po koreańsku?", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "폴란드어 할 줄 아세요? (pollandeueo hal jul aseyo?)", + "wordSecond": "Czy mówi pan/pani po polsku?", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "네, 조금 합니다 (ne, jogeum hamnida)", + "wordSecond": "Tak, trochę", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "아니요, 못 합니다 (aniyo, mot hamnida)", + "wordSecond": "Nie, nie umiem", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "무슨 일을 하세요? (museun ireul haseyo?)", + "wordSecond": "Czym się pan/pani zajmuje?", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "학생입니다 (haksaengimnida)", + "wordSecond": "Jestem studentem/studentką", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "선생님입니다 (seonsaengnimimnida)", + "wordSecond": "Jestem nauczycielem/nauczycielką", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "회사원입니다 (hoesawonimnida)", + "wordSecond": "Pracuję w biurze", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "무직입니다 (mujigimnida)", + "wordSecond": "Nie pracuję", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "결혼했어요? (gyeolhonhaesseoyo?)", + "wordSecond": "Czy jest pan/pani żonaty/zamężna?", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "네, 결혼했어요 (ne, gyeolhonhaesseoyo)", + "wordSecond": "Tak, jestem żonaty/zamężna", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "아니요, 싱글이에요 (aniyo, singgeurieyo)", + "wordSecond": "Nie, jestem singlem", + "createdAt": "2026-02-19T12:52:24.141Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_pt_de_A1.json b/output/2026_02_19_greetings_introductions_pt_de_A1.json new file mode 100644 index 0000000..ff3a23a --- /dev/null +++ b/output/2026_02_19_greetings_introductions_pt_de_A1.json @@ -0,0 +1,759 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:42:30.159Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Olá", + "wordSecond": "Hallo", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Oi", + "wordSecond": "Hallo", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Bom dia", + "wordSecond": "Guten Morgen", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Boa tarde", + "wordSecond": "Guten Tag", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Boa noite", + "wordSecond": "Guten Abend", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Tchau", + "wordSecond": "Tschüss", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Adeus", + "wordSecond": "Auf Wiedersehen", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Até logo", + "wordSecond": "Bis bald", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Até mais", + "wordSecond": "Bis später", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Por favor", + "wordSecond": "Bitte", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Obrigado", + "wordSecond": "Danke", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Obrigada", + "wordSecond": "Danke", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "De nada", + "wordSecond": "Bitte schön", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Desculpe", + "wordSecond": "Entschuldigung", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Com licença", + "wordSecond": "Entschuldigung", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Meu nome é...", + "wordSecond": "Ich heiße...", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Eu sou...", + "wordSecond": "Ich bin...", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Como você está?", + "wordSecond": "Wie geht es Ihnen?", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Tudo bem?", + "wordSecond": "Wie geht's?", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Tudo bem", + "wordSecond": "Gut", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Muito bem", + "wordSecond": "Sehr gut", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Mais ou menos", + "wordSecond": "Es geht so", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Qual é o seu nome?", + "wordSecond": "Wie heißen Sie?", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Prazer em conhecê-lo", + "wordSecond": "Freut mich", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Prazer", + "wordSecond": "Freut mich", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Sim", + "wordSecond": "Ja", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Não", + "wordSecond": "Nein", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Eu", + "wordSecond": "Ich", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Você", + "wordSecond": "Sie", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Ele", + "wordSecond": "Er", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Ela", + "wordSecond": "Sie", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Nós", + "wordSecond": "Wir", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Chamo-me", + "wordSecond": "Ich heiße", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Idade", + "wordSecond": "Alter", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Anos", + "wordSecond": "Jahre", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Eu tenho ... anos", + "wordSecond": "Ich bin ... Jahre alt", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "De onde você é?", + "wordSecond": "Woher kommen Sie?", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Eu sou do Brasil", + "wordSecond": "Ich komme aus Brasilien", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Eu sou brasileiro", + "wordSecond": "Ich bin Brasilianer", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Eu sou brasileira", + "wordSecond": "Ich bin Brasilianerin", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Nacionalidade", + "wordSecond": "Nationalität", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Morada", + "wordSecond": "Adresse", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Telefone", + "wordSecond": "Telefon", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "E-mail", + "wordSecond": "E-Mail", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Obrigado pela ajuda", + "wordSecond": "Danke für die Hilfe", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Com certeza", + "wordSecond": "Natürlich", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Perdão", + "wordSecond": "Verzeihung", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Não há problema", + "wordSecond": "Kein Problem", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Até amanhã", + "wordSecond": "Bis morgen", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Boa noite (para dormir)", + "wordSecond": "Gute Nacht", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Como vai?", + "wordSecond": "Wie geht es dir?", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Muito obrigado", + "wordSecond": "Vielen Dank", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Muito obrigada", + "wordSecond": "Vielen Dank", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Desculpe-me", + "wordSecond": "Es tut mir leid", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Prazer em conhecê-la", + "wordSecond": "Freut mich", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "Até breve", + "wordSecond": "Auf Wiedersehen", + "createdAt": "2026-02-19T12:42:30.159Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_pt_fr_A1.json b/output/2026_02_19_greetings_introductions_pt_fr_A1.json new file mode 100644 index 0000000..dec97e2 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_pt_fr_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:42:45.161Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Olá", + "wordSecond": "Bonjour", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Oi", + "wordSecond": "Salut", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Bom dia", + "wordSecond": "Bonjour", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Boa tarde", + "wordSecond": "Bonsoir", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Boa noite", + "wordSecond": "Bonsoir", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Tchau", + "wordSecond": "Au revoir", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Até logo", + "wordSecond": "À bientôt", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Até mais", + "wordSecond": "À plus", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Por favor", + "wordSecond": "S'il vous plaît", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Obrigado", + "wordSecond": "Merci", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Obrigada", + "wordSecond": "Merci", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "De nada", + "wordSecond": "De rien", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Desculpe", + "wordSecond": "Pardon", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Com licença", + "wordSecond": "Excusez-moi", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Sim", + "wordSecond": "Oui", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Não", + "wordSecond": "Non", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Como vai?", + "wordSecond": "Comment ça va?", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Tudo bem?", + "wordSecond": "Ça va?", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Estou bem", + "wordSecond": "Ça va bien", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Estou mal", + "wordSecond": "Ça va mal", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Assim-assim", + "wordSecond": "Comme ci, comme ça", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Qual é o seu nome?", + "wordSecond": "Comment vous appelez-vous?", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Meu nome é...", + "wordSecond": "Je m'appelle...", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Prazer", + "wordSecond": "Enchanté", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Prazer em conhecê-lo", + "wordSecond": "Enchanté de vous rencontrer", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Eu sou...", + "wordSecond": "Je suis...", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Eu tenho... anos", + "wordSecond": "J'ai... ans", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Quantos anos você tem?", + "wordSecond": "Quel âge avez-vous?", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Eu sou brasileiro", + "wordSecond": "Je suis brésilien", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Eu sou brasileira", + "wordSecond": "Je suis brésilienne", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "De onde você é?", + "wordSecond": "D'où venez-vous?", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Eu sou do Brasil", + "wordSecond": "Je viens du Brésil", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Eu sou de Portugal", + "wordSecond": "Je viens du Portugal", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Eu moro no Brasil", + "wordSecond": "J'habite au Brésil", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Eu moro em Portugal", + "wordSecond": "J'habite au Portugal", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "O que você faz?", + "wordSecond": "Que faites-vous?", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Eu sou estudante", + "wordSecond": "Je suis étudiant", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Eu sou estudante", + "wordSecond": "Je suis étudiante", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Eu trabalho", + "wordSecond": "Je travaille", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Muito prazer", + "wordSecond": "Très enchanté", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Como está?", + "wordSecond": "Comment allez-vous?", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Estou bem, obrigado", + "wordSecond": "Je vais bien, merci", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Estou bem, obrigada", + "wordSecond": "Je vais bien, merci", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "E você?", + "wordSecond": "Et vous?", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Tudo bem", + "wordSecond": "Tout va bien", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Até amanhã", + "wordSecond": "À demain", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Boa semana", + "wordSecond": "Bonne semaine", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Bom fim de semana", + "wordSecond": "Bon week-end", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Feliz Natal", + "wordSecond": "Joyeux Noël", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Feliz Ano Novo", + "wordSecond": "Bonne année", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Parabéns", + "wordSecond": "Félicitations", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Saúde", + "wordSecond": "Santé", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Com certeza", + "wordSecond": "Bien sûr", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Claro", + "wordSecond": "Bien sûr", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Talvez", + "wordSecond": "Peut-être", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Desculpe-me", + "wordSecond": "Excusez-moi", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Perdão", + "wordSecond": "Pardon", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Não entendo", + "wordSecond": "Je ne comprends pas", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Fale devagar", + "wordSecond": "Parlez lentement", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "Repita, por favor", + "wordSecond": "Répétez, s'il vous plaît", + "createdAt": "2026-02-19T12:42:45.161Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_pt_it_A1.json b/output/2026_02_19_greetings_introductions_pt_it_A1.json new file mode 100644 index 0000000..b75df75 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_pt_it_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:42:58.131Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Olá", + "wordSecond": "Ciao", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Oi", + "wordSecond": "Salve", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Bom dia", + "wordSecond": "Buongiorno", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Boa tarde", + "wordSecond": "Buon pomeriggio", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Boa noite", + "wordSecond": "Buonasera", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Tchau", + "wordSecond": "Ciao", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Adeus", + "wordSecond": "Addio", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Até logo", + "wordSecond": "A più tardi", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Até amanhã", + "wordSecond": "A domani", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Por favor", + "wordSecond": "Per favore", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Se faz favor", + "wordSecond": "Per piacere", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Obrigado", + "wordSecond": "Grazie", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Obrigada", + "wordSecond": "Grazie", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "De nada", + "wordSecond": "Prego", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Desculpe", + "wordSecond": "Mi scusi", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Com licença", + "wordSecond": "Permesso", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Desculpa", + "wordSecond": "Scusa", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Tudo bem?", + "wordSecond": "Tutto bene?", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Como vai?", + "wordSecond": "Come stai?", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Estou bem", + "wordSecond": "Sto bene", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Estou mal", + "wordSecond": "Sto male", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Sim", + "wordSecond": "Sì", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Não", + "wordSecond": "No", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Talvez", + "wordSecond": "Forse", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Meu nome é...", + "wordSecond": "Mi chiamo...", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Eu sou...", + "wordSecond": "Io sono...", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Qual é o seu nome?", + "wordSecond": "Come ti chiami?", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Prazer", + "wordSecond": "Piacere", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Muito prazer", + "wordSecond": "Molto piacere", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Eu tenho... anos", + "wordSecond": "Ho... anni", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Quantos anos você tem?", + "wordSecond": "Quanti anni hai?", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Eu sou brasileiro", + "wordSecond": "Sono brasiliano", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Eu sou brasileira", + "wordSecond": "Sono brasiliana", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "De onde você é?", + "wordSecond": "Di dove sei?", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Eu sou de...", + "wordSecond": "Sono di...", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Brasil", + "wordSecond": "Brasile", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Portugal", + "wordSecond": "Portogallo", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Como se diz?", + "wordSecond": "Come si dice?", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Eu não entendo", + "wordSecond": "Non capisco", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Fale devagar", + "wordSecond": "Parla lentamente", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Repita, por favor", + "wordSecond": "Ripeti, per favore", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "O que é isso?", + "wordSecond": "Cos'è questo?", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Quem é você?", + "wordSecond": "Chi sei?", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Eu", + "wordSecond": "Io", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Você", + "wordSecond": "Tu", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Ele", + "wordSecond": "Lui", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Ela", + "wordSecond": "Lei", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Nós", + "wordSecond": "Noi", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Vocês", + "wordSecond": "Voi", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Eles", + "wordSecond": "Loro", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Homem", + "wordSecond": "Uomo", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Mulher", + "wordSecond": "Donna", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Menino", + "wordSecond": "Ragazzo", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Menina", + "wordSecond": "Ragazza", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Amigo", + "wordSecond": "Amico", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Amiga", + "wordSecond": "Amica", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Família", + "wordSecond": "Famiglia", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Mãe", + "wordSecond": "Madre", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Pai", + "wordSecond": "Padre", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Obrigado pela ajuda", + "wordSecond": "Grazie per l'aiuto", + "createdAt": "2026-02-19T12:42:58.131Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_pt_ja_A1.json b/output/2026_02_19_greetings_introductions_pt_ja_A1.json new file mode 100644 index 0000000..70a1cde --- /dev/null +++ b/output/2026_02_19_greetings_introductions_pt_ja_A1.json @@ -0,0 +1,790 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:43:24.937Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "olá", + "wordSecond": "こんにちは (こんにちは, konnichiwa)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "oi", + "wordSecond": "こんにちは (こんにちは, konnichiwa)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "bom dia", + "wordSecond": "おはようございます (おはようございます, ohayō gozaimasu)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "boa tarde", + "wordSecond": "こんにちは (こんにちは, konnichiwa)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "boa noite", + "wordSecond": "こんばんは (こんばんは, konbanwa)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tchau", + "wordSecond": "さようなら (さようなら, sayōnara)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "até logo", + "wordSecond": "またね (またね, mata ne)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "até mais", + "wordSecond": "じゃあね (じゃあね, jā ne)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "por favor", + "wordSecond": "おねがいします (おねがいします, onegaishimasu)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "obrigado ", + "wordSecond": "ありがとうございます (ありがとうございます, arigatō gozaimasu)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "obrigada ", + "wordSecond": "ありがとうございます (ありがとうございます, arigatō gozaimasu)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "desculpe", + "wordSecond": "すみません (すみません, sumimasen)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "com licença", + "wordSecond": "すみません (すみません, sumimasen)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "meu nome é", + "wordSecond": "わたしのなまえは (わたしのなまえは, watashi no namae wa)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "nome", + "wordSecond": "なまえ (なまえ, namae)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "eu", + "wordSecond": "わたし (わたし, watashi)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "você", + "wordSecond": "あなた (あなた, anata)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "prazer", + "wordSecond": "はじめまして (はじめまして, hajimemashite)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "idade", + "wordSecond": "とし (とし, toshi)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "anos", + "wordSecond": "さい (さい, sai)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "nacionalidade", + "wordSecond": "こくせき (こくせき, kokuseki)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "brasileiro ", + "wordSecond": "ブラジルじん (ブラジルじん, burajirujin)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "brasileira ", + "wordSecond": "ブラジルじん (ブラジルじん, burajirujin)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "como vai?", + "wordSecond": "おげんきですか (おげんきですか, ogenki desu ka)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "estou bem", + "wordSecond": "げんきです (げんきです, genki desu)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tudo bem?", + "wordSecond": "だいじょうぶですか (だいじょうぶですか, daijōbu desu ka)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sim", + "wordSecond": "はい (はい, hai)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "não", + "wordSecond": "いいえ (いいえ, iie)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "muito prazer", + "wordSecond": "どうぞよろしく (どうぞよろしく, dōzo yoroshiku)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "de onde você é?", + "wordSecond": "どこからきましたか (どこからきましたか, doko kara kimashita ka)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sou do Brasil", + "wordSecond": "ブラジルからきました (ブラジルからきました, burajiru kara kimashita)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "morador", + "wordSecond": "じゅうみん (じゅうみん, jūmin)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "profissão", + "wordSecond": "しょくぎょう (しょくぎょう, shokugyō)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "estudante", + "wordSecond": "がくせい (がくせい, gakusei)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "professor ", + "wordSecond": "せんせい (せんせい, sensei)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "professora ", + "wordSecond": "せんせい (せんせい, sensei)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "amigo ", + "wordSecond": "ともだち (ともだち, tomodachi)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "amiga ", + "wordSecond": "ともだち (ともだち, tomodachi)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "família", + "wordSecond": "かぞく (かぞく, kazoku)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "mãe", + "wordSecond": "はは (はは, haha)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pai", + "wordSecond": "ちち (ちち, chichi)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "irmão", + "wordSecond": "あに (あに, ani) / おとうと (おとうと, otōto)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "irmã", + "wordSecond": "あね (あね, ane) / いもうと (いもうと, imōto)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "bem-vindo", + "wordSecond": "ようこそ (ようこそ, yōkoso)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "desculpa ", + "wordSecond": "ごめんなさい (ごめんなさい, gomennasai)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "por favor ", + "wordSecond": "おねがい (おねがい, onegai)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "oi ", + "wordSecond": "やあ (やあ, yā)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tchau ", + "wordSecond": "バイバイ (ばいばい, baibai)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "até amanhã", + "wordSecond": "またあした (またあした, mata ashita)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "boa noite (dormir)", + "wordSecond": "おやすみなさい (おやすみなさい, oyasuminasai)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "como se chama?", + "wordSecond": "おなまえはなんですか (おなまえはなんですか, o-namae wa nan desu ka)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "qual é a sua idade?", + "wordSecond": "おいくつですか (おいくつですか, o-ikutsu desu ka)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "eu tenho ... anos", + "wordSecond": "わたしは ... さいです (わたしは ... さいです, watashi wa ... sai desu)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "muito obrigado", + "wordSecond": "どうもありがとうございます (どうもありがとうございます, dōmo arigatō gozaimasu)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "de nada", + "wordSecond": "どういたしまして (どういたしまして, dōitashimashite)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tudo bem", + "wordSecond": "だいじょうぶです (だいじょうぶです, daijōbu desu)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "não estou bem", + "wordSecond": "げんきじゃありません (げんきじゃありません, genki ja arimasen)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "até breve", + "wordSecond": "またすぐ (またすぐ, mata sugu)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "feliz em conhecê-lo", + "wordSecond": "おあいできてうれしいです (おあいできてうれしいです, o-ai dekite ureshii desu)", + "createdAt": "2026-02-19T12:43:24.937Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_pt_ko_A1.json b/output/2026_02_19_greetings_introductions_pt_ko_A1.json new file mode 100644 index 0000000..59a171e --- /dev/null +++ b/output/2026_02_19_greetings_introductions_pt_ko_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:44:07.684Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Olá", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Oi", + "wordSecond": "안녕 (annyeong)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Bom dia", + "wordSecond": "좋은 아침 (joeun achim)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Boa tarde", + "wordSecond": "좋은 오후 (joeun ohu)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Boa noite", + "wordSecond": "좋은 저녁 (joeun jeonyeok)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Tchau", + "wordSecond": "안녕히 가세요 (annyeonghi gaseyo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Até logo", + "wordSecond": "다음에 봐요 (daeume bwayo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Por favor", + "wordSecond": "제발 (jebal)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Por favor ", + "wordSecond": "부탁합니다 (butakhamnida)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Obrigado ", + "wordSecond": "감사합니다 (gamsahamnida)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Obrigada ", + "wordSecond": "감사합니다 (gamsahamnida)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "De nada", + "wordSecond": "천만에요 (cheonmaneyo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Desculpe", + "wordSecond": "미안합니다 (mianhamnida)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Com licença", + "wordSecond": "실례합니다 (sillyehamnida)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Sim", + "wordSecond": "네 (ne)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Não", + "wordSecond": "아니요 (aniyo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Meu nome é...", + "wordSecond": "제 이름은...입니다 (je ireumeun...imnida)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Eu sou...", + "wordSecond": "저는...입니다 (jeoneun...imnida)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Como você se chama?", + "wordSecond": "이름이 뭐예요? (ireumi mwoyeyo?)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Prazer em conhecê-lo", + "wordSecond": "만나서 반갑습니다 (mannaseo bangapseumnida)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Eu", + "wordSecond": "저 (jeo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Você", + "wordSecond": "당신 (dangsin)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Ele", + "wordSecond": "그 (geu)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Ela", + "wordSecond": "그녀 (geunyeo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Nós", + "wordSecond": "우리 (uri)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Nome", + "wordSecond": "이름 (ireum)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Idade", + "wordSecond": "나이 (nai)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Anos", + "wordSecond": "살 (sal)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Eu tenho ... anos", + "wordSecond": "저는 ...살입니다 (jeoneun ...salimnida)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Nacionalidade", + "wordSecond": "국적 (gukjeok)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Brasileiro ", + "wordSecond": "브라질 사람 (beurajil saram)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Brasileira ", + "wordSecond": "브라질 사람 (beurajil saram)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "De onde você é?", + "wordSecond": "어디에서 왔어요? (eodieseo wasseoyo?)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Eu sou do Brasil", + "wordSecond": "저는 브라질에서 왔어요 (jeoneun beurajireseo wasseoyo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Como vai?", + "wordSecond": "어떻게 지내세요? (eotteoke jinaeseyo?)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Tudo bem?", + "wordSecond": "잘 지내요? (jal jinaeyo?)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Estou bem", + "wordSecond": "잘 지내요 (jal jinaeyo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Mais ou menos", + "wordSecond": "그저 그래요 (geujeo geuraeyo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Obrigado, e você?", + "wordSecond": "감사합니다, 당신은요? (gamsahamnida, dangsineunyo?)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Adeus", + "wordSecond": "안녕히 계세요 (annyeonghi gyeseyo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Até amanhã", + "wordSecond": "내일 봐요 (naeil bwayo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Boa sorte", + "wordSecond": "행운을 빕니다 (haenguneul bimnida)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Coma bem", + "wordSecond": "잘 먹겠습니다 (jal meokgetseumnida)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Saúde (brinde)", + "wordSecond": "건배 (geonbae)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Desculpe-me", + "wordSecond": "죄송합니다 (joesonghamnida)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Não tem problema", + "wordSecond": "괜찮아요 (gwaenchanayo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Eu não entendo", + "wordSecond": "이해하지 못해요 (ihaehaji mothaeyo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Fale mais devagar", + "wordSecond": "천천히 말해 주세요 (cheoncheonhi malhae juseyo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Repita, por favor", + "wordSecond": "다시 말해 주세요 (dasi malhae juseyo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "O que é isso?", + "wordSecond": "이게 뭐예요? (ige mwoyeyo?)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Quem?", + "wordSecond": "누구? (nugu?)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Onde?", + "wordSecond": "어디? (eodi?)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Quando?", + "wordSecond": "언제? (eonje?)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Por quê?", + "wordSecond": "왜? (wae?)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Como?", + "wordSecond": "어떻게? (eotteoke?)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Sim, por favor", + "wordSecond": "네, 부탁합니다 (ne, butakhamnida)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Não, obrigado", + "wordSecond": "아니요, 괜찮아요 (aniyo, gwaenchanayo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Muito obrigado", + "wordSecond": "대단히 감사합니다 (daedanhi gamsahamnida)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Muito prazer", + "wordSecond": "정말 반갑습니다 (jeongmal bangapseumnida)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Até mais", + "wordSecond": "또 봐요 (tto bwayo)", + "createdAt": "2026-02-19T12:44:07.684Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_pt_pl_A1.json b/output/2026_02_19_greetings_introductions_pt_pl_A1.json new file mode 100644 index 0000000..b7bd679 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_pt_pl_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:44:23.090Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Olá", + "wordSecond": "Cześć", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Oi", + "wordSecond": "Hej", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Bom dia", + "wordSecond": "Dzień dobry", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Boa tarde", + "wordSecond": "Dobry wieczór", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Boa noite", + "wordSecond": "Dobranoc", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Tchau", + "wordSecond": "Pa", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Adeus", + "wordSecond": "Do widzenia", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Até logo", + "wordSecond": "Do zobaczenia", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Até amanhã", + "wordSecond": "Do jutra", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Por favor", + "wordSecond": "Proszę", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Obrigado", + "wordSecond": "Dziękuję", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Obrigada", + "wordSecond": "Dziękuję", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "De nada", + "wordSecond": "Nie ma za co", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Desculpe", + "wordSecond": "Przepraszam", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Com licença", + "wordSecond": "Przepraszam", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Sim", + "wordSecond": "Tak", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Não", + "wordSecond": "Nie", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Meu nome é...", + "wordSecond": "Nazywam się...", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Eu sou...", + "wordSecond": "Jestem...", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Como você se chama?", + "wordSecond": "Jak się nazywasz?", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Muito prazer", + "wordSecond": "Miło mi", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Prazer", + "wordSecond": "Miło mi", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Eu tenho ... anos", + "wordSecond": "Mam ... lat", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Quantos anos você tem?", + "wordSecond": "Ile masz lat?", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Eu sou brasileiro", + "wordSecond": "Jestem Brazylijczykiem", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Eu sou brasileira", + "wordSecond": "Jestem Brazylijką", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "De onde você é?", + "wordSecond": "Skąd jesteś?", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Eu sou de...", + "wordSecond": "Jestem z...", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Brasil", + "wordSecond": "Brazylia", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Portugal", + "wordSecond": "Portugalia", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Como vai?", + "wordSecond": "Jak się masz?", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Tudo bem?", + "wordSecond": "Wszystko w porządku?", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Tudo bem", + "wordSecond": "W porządku", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Estou bem", + "wordSecond": "Jestem dobrze", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Estou mal", + "wordSecond": "Jestem źle", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Assim-assim", + "wordSecond": "Tak sobie", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Obrigado, e você?", + "wordSecond": "Dziękuję, a ty?", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Obrigada, e você?", + "wordSecond": "Dziękuję, a ty?", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Sim, por favor", + "wordSecond": "Tak, proszę", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Não, obrigado", + "wordSecond": "Nie, dziękuję", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Não, obrigada", + "wordSecond": "Nie, dziękuję", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Com certeza", + "wordSecond": "Oczywiście", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Claro", + "wordSecond": "Jasne", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Talvez", + "wordSecond": "Może", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Desculpe, não entendi", + "wordSecond": "Przepraszam, nie zrozumiałem", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Pode repetir?", + "wordSecond": "Możesz powtórzyć?", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Fala inglês?", + "wordSecond": "Mówisz po angielsku?", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Um pouco", + "wordSecond": "Trochę", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Sim, falo", + "wordSecond": "Tak, mówię", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Não, não falo", + "wordSecond": "Nie, nie mówię", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Adeus, tenha um bom dia", + "wordSecond": "Do widzenia, miłego dnia", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Até mais", + "wordSecond": "Na razie", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Boa sorte", + "wordSecond": "Powodzenia", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Com saúde", + "wordSecond": "Na zdrowie", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Parabéns", + "wordSecond": "Gratulacje", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Feliz aniversário", + "wordSecond": "Wszystkiego najlepszego", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Feliz Natal", + "wordSecond": "Wesołych Świąt", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Feliz Ano Novo", + "wordSecond": "Szczęśliwego Nowego Roku", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Bem-vindo", + "wordSecond": "Witamy", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "Bem-vinda", + "wordSecond": "Witamy", + "createdAt": "2026-02-19T12:44:23.090Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_pt_zh_A1.json b/output/2026_02_19_greetings_introductions_pt_zh_A1.json new file mode 100644 index 0000000..9e70a50 --- /dev/null +++ b/output/2026_02_19_greetings_introductions_pt_zh_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:43:45.095Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Olá", + "wordSecond": "你好 (nǐ hǎo)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Oi", + "wordSecond": "嗨 (hāi)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Bom dia", + "wordSecond": "早上好 (zǎo shang hǎo)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Boa tarde", + "wordSecond": "下午好 (xià wǔ hǎo)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Boa noite", + "wordSecond": "晚上好 (wǎn shang hǎo)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Tchau", + "wordSecond": "再见 (zài jiàn)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Até logo", + "wordSecond": "一会儿见 (yī huìr jiàn)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Até amanhã", + "wordSecond": "明天见 (míng tiān jiàn)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Por favor", + "wordSecond": "请 (qǐng)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Obrigado ", + "wordSecond": "谢谢 (xiè xie)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Obrigada ", + "wordSecond": "谢谢 (xiè xie)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "De nada", + "wordSecond": "不客气 (bú kè qì)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Desculpe", + "wordSecond": "对不起 (duì bu qǐ)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Não tem problema", + "wordSecond": "没关系 (méi guān xi)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Sim", + "wordSecond": "是 (shì)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Não", + "wordSecond": "不 (bù)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Meu nome é...", + "wordSecond": "我叫... (wǒ jiào...)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Eu sou...", + "wordSecond": "我是... (wǒ shì...)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Como você se chama?", + "wordSecond": "你叫什么名字? (nǐ jiào shén me míng zi?)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Prazer em conhecê-lo", + "wordSecond": "很高兴认识你 (hěn gāo xìng rèn shi nǐ)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Eu", + "wordSecond": "我 (wǒ)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Você", + "wordSecond": "你 (nǐ)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Ele", + "wordSecond": "他 (tā)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Ela", + "wordSecond": "她 (tā)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Nós", + "wordSecond": "我们 (wǒ men)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Como vai?", + "wordSecond": "你好吗? (nǐ hǎo ma?)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Estou bem", + "wordSecond": "我很好 (wǒ hěn hǎo)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "E você?", + "wordSecond": "你呢? (nǐ ne?)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Obrigado, estou bem", + "wordSecond": "谢谢,我很好 (xiè xie, wǒ hěn hǎo)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Mais ou menos", + "wordSecond": "马马虎虎 (mǎ mǎ hū hū)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Idade", + "wordSecond": "年龄 (nián líng)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Quantos anos você tem?", + "wordSecond": "你多大? (nǐ duō dà?)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Eu tenho ... anos", + "wordSecond": "我...岁 (wǒ ... suì)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Nacionalidade", + "wordSecond": "国籍 (guó jí)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "De onde você é?", + "wordSecond": "你是哪国人? (nǐ shì nǎ guó rén?)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Eu sou brasileiro ", + "wordSecond": "我是巴西人 (wǒ shì bā xī rén)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Eu sou brasileira ", + "wordSecond": "我是巴西人 (wǒ shì bā xī rén)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Eu sou de...", + "wordSecond": "我来自... (wǒ lái zì...)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Brasil", + "wordSecond": "巴西 (bā xī)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "China", + "wordSecond": "中国 (zhōng guó)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Profissão", + "wordSecond": "职业 (zhí yè)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "O que você faz?", + "wordSecond": "你做什么工作? (nǐ zuò shén me gōng zuò?)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Estudante", + "wordSecond": "学生 (xué sheng)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Professor ", + "wordSecond": "老师 (lǎo shī)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Professora ", + "wordSecond": "老师 (lǎo shī)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Muito prazer", + "wordSecond": "幸会 (xìng huì)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Com licença", + "wordSecond": "劳驾 (láo jià)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Perdão", + "wordSecond": "抱歉 (bào qiàn)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Tudo bem?", + "wordSecond": "好吗? (hǎo ma?)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Tudo bem", + "wordSecond": "好的 (hǎo de)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Obrigado pela ajuda", + "wordSecond": "谢谢你的帮助 (xiè xie nǐ de bāng zhù)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "De nada (em resposta a obrigado)", + "wordSecond": "不用谢 (bú yòng xiè)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Como está a sua família?", + "wordSecond": "你的家人好吗? (nǐ de jiā rén hǎo ma?)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Minha família está bem", + "wordSecond": "我的家人都很好 (wǒ de jiā rén dōu hěn hǎo)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Amigo ", + "wordSecond": "朋友 (péng you)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Amiga ", + "wordSecond": "朋友 (péng you)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Muito", + "wordSecond": "很 (hěn)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Pouco", + "wordSecond": "一点 (yī diǎn)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Bem-vindo ", + "wordSecond": "欢迎 (huān yíng)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "Bem-vinda ", + "wordSecond": "欢迎 (huān yíng)", + "createdAt": "2026-02-19T12:43:45.095Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_zh_ko_A1.json b/output/2026_02_19_greetings_introductions_zh_ko_A1.json new file mode 100644 index 0000000..b9cbdae --- /dev/null +++ b/output/2026_02_19_greetings_introductions_zh_ko_A1.json @@ -0,0 +1,691 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:51:36.713Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "你好 (nǐ hǎo)", + "wordSecond": "안녕하세요 (annyeonghaseyo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "早上好 (zǎo shang hǎo)", + "wordSecond": "좋은 아침 (joeun achim)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "下午好 (xià wǔ hǎo)", + "wordSecond": "좋은 오후 (joeun ohu)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "晚上好 (wǎn shang hǎo)", + "wordSecond": "좋은 저녁 (joeun jeonyeok)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "再见 (zài jiàn)", + "wordSecond": "안녕히 가세요 (annyeonghi gaseyo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "请 (qǐng)", + "wordSecond": "제발 (jebal)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "谢谢 (xiè xie)", + "wordSecond": "감사합니다 (gamsahamnida)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "对不起 (duì bu qǐ)", + "wordSecond": "죄송합니다 (joesonghamnida)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "没关系 (méi guān xi)", + "wordSecond": "괜찮아요 (gwaenchanayo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "是 (shì)", + "wordSecond": "네 (ne)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "不是 (bú shì)", + "wordSecond": "아니요 (aniyo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "我 (wǒ)", + "wordSecond": "저 (jeo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "你 (nǐ)", + "wordSecond": "당신 (dangsin)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "他 (tā)", + "wordSecond": "그 (geu)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "她 (tā)", + "wordSecond": "그녀 (geunyeo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "名字 (míng zi)", + "wordSecond": "이름 (ireum)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "年龄 (nián líng)", + "wordSecond": "나이 (nai)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "国家 (guó jiā)", + "wordSecond": "나라 (nara)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "中国 (Zhōng guó)", + "wordSecond": "중국 (Jungguk)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "韩国 (Hán guó)", + "wordSecond": "한국 (Hanguk)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "美国 (Měi guó)", + "wordSecond": "미국 (Miguk)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "日本 (Rì běn)", + "wordSecond": "일본 (Ilbon)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "学生 (xué sheng)", + "wordSecond": "학생 (haksaeng)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "老师 (lǎo shī)", + "wordSecond": "선생님 (seonsaengnim)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "朋友 (péng you)", + "wordSecond": "친구 (chingu)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "家 (jiā)", + "wordSecond": "집 (jip)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "学校 (xué xiào)", + "wordSecond": "학교 (hakgyo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "工作 (gōng zuò)", + "wordSecond": "일 (il)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "好 (hǎo)", + "wordSecond": "좋아요 (joayo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "不好 (bù hǎo)", + "wordSecond": "안 좋아요 (an joayo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "不客气 (bú kè qì)", + "wordSecond": "천만에요 (cheonmaneyo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "你好吗? (nǐ hǎo ma?)", + "wordSecond": "안녕하세요? (annyeonghaseyo?)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "我很好 (wǒ hěn hǎo)", + "wordSecond": "저는 잘 지내요 (jeoneun jal jinaeyo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "你呢? (nǐ ne?)", + "wordSecond": "당신은요? (dangsineunyo?)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "我叫... (wǒ jiào...)", + "wordSecond": "저는 ...입니다 (jeoneun ...imnida)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "你叫什么名字? (nǐ jiào shén me míng zi?)", + "wordSecond": "이름이 뭐예요? (ireumi mwoyeyo?)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "我来自... (wǒ lái zì...)", + "wordSecond": "저는 ...에서 왔어요 (jeoneun ...eseo wasseoyo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "你来自哪里? (nǐ lái zì nǎ lǐ?)", + "wordSecond": "어디에서 왔어요? (edieseo wasseoyo?)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "很高兴认识你 (hěn gāo xìng rèn shi nǐ)", + "wordSecond": "만나서 반가워요 (mannaseo bangawoyo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "我也是 (wǒ yě shì)", + "wordSecond": "저도요 (jeodoyo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "请坐 (qǐng zuò)", + "wordSecond": "앉으세요 (anjeuseyo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "请进 (qǐng jìn)", + "wordSecond": "들어오세요 (deureooseyo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "等一下 (děng yī xià)", + "wordSecond": "잠시만요 (jamsimanyo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "明天见 (míng tiān jiàn)", + "wordSecond": "내일 봐요 (naeil bwayo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "晚安 (wǎn ān)", + "wordSecond": "잘 자요 (jal jayo)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "什么? (shén me?)", + "wordSecond": "뭐? (mwo?)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "哪里? (nǎ lǐ?)", + "wordSecond": "어디? (eodi?)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "谁? (shéi?)", + "wordSecond": "누구? (nugu?)", + "createdAt": "2026-02-19T12:51:36.713Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_greetings_introductions_zh_pl_A1.json b/output/2026_02_19_greetings_introductions_zh_pl_A1.json new file mode 100644 index 0000000..39c583a --- /dev/null +++ b/output/2026_02_19_greetings_introductions_zh_pl_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:51:55.366Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Greetings & Introductions" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Greetings & Introductions" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "你好 (nǐ hǎo)", + "wordSecond": "cześć", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "早上好 (zǎo shang hǎo)", + "wordSecond": "dzień dobry (rano)", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "晚上好 (wǎn shang hǎo)", + "wordSecond": "dobry wieczór", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "再见 (zài jiàn)", + "wordSecond": "do widzenia", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "拜拜 (bài bài)", + "wordSecond": "pa", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "晚安 (wǎn ān)", + "wordSecond": "dobranoc", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "请 (qǐng)", + "wordSecond": "proszę", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "谢谢 (xiè xie)", + "wordSecond": "dziękuję", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "不客气 (bù kè qì)", + "wordSecond": "proszę bardzo", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "对不起 (duì bu qǐ)", + "wordSecond": "przepraszam", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "没关系 (méi guān xi)", + "wordSecond": "nie ma sprawy", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "是的 (shì de)", + "wordSecond": "tak", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "不是 (bù shì)", + "wordSecond": "nie", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "我的名字是... (wǒ de míng zì shì...)", + "wordSecond": "nazywam się...", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "我叫... (wǒ jiào...)", + "wordSecond": "mam na imię...", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "你叫什么名字? (nǐ jiào shén me míng zì?)", + "wordSecond": "Jak masz na imię?", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "我 (wǒ)", + "wordSecond": "ja", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "你 (nǐ)", + "wordSecond": "ty", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "他 (tā)", + "wordSecond": "on", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "她 (tā)", + "wordSecond": "ona", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "我们 (wǒ men)", + "wordSecond": "my", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "你们 (nǐ men)", + "wordSecond": "wy", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "他们 (tā men)", + "wordSecond": "oni", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "她们 (tā men)", + "wordSecond": "one", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "先生 (xiān sheng)", + "wordSecond": "pan", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "女士 (nǚ shì)", + "wordSecond": "pani", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "朋友 (péng you)", + "wordSecond": "przyjaciel", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "很高兴认识你 (hěn gāo xìng rèn shi nǐ)", + "wordSecond": "miło cię poznać", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "你好吗? (nǐ hǎo ma?)", + "wordSecond": "Jak się masz?", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "我很好 (wǒ hěn hǎo)", + "wordSecond": "mam się dobrze", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "谢谢,你呢? (xiè xie, nǐ ne?)", + "wordSecond": "dziękuję, a ty?", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "不太好 (bù tài hǎo)", + "wordSecond": "niezbyt dobrze", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "我来自... (wǒ lái zì...)", + "wordSecond": "pochodzę z...", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "我是中国人 (wǒ shì zhōng guó rén)", + "wordSecond": "jestem Chińczykiem/Chinką", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "我是波兰人 (wǒ shì bō lán rén)", + "wordSecond": "jestem Polakiem/Polką", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "国家 (guó jiā)", + "wordSecond": "kraj", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "中国 (zhōng guó)", + "wordSecond": "Chiny", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "波兰 (bō lán)", + "wordSecond": "Polska", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "年龄 (nián líng)", + "wordSecond": "wiek", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "我...岁 (wǒ ... suì)", + "wordSecond": "mam ... lat", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "几岁? (jǐ suì?)", + "wordSecond": "ile masz lat?", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "什么? (shén me?)", + "wordSecond": "co?", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "谁? (shéi?)", + "wordSecond": "kto?", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "哪里? (nǎ lǐ?)", + "wordSecond": "gdzie?", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "什么时候? (shén me shí hou?)", + "wordSecond": "kiedy?", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "为什么? (wèi shén me?)", + "wordSecond": "dlaczego?", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "怎么样? (zěn me yàng?)", + "wordSecond": "jak?", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "这个 (zhè ge)", + "wordSecond": "to", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "那个 (nà ge)", + "wordSecond": "tamto", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "这里 (zhè lǐ)", + "wordSecond": "tutaj", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "那里 (nà lǐ)", + "wordSecond": "tam", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "现在 (xiàn zài)", + "wordSecond": "teraz", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "今天 (jīn tiān)", + "wordSecond": "dzisiaj", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "明天 (míng tiān)", + "wordSecond": "jutro", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "昨天 (zuó tiān)", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "好 (hǎo)", + "wordSecond": "dobrze", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "坏 (huài)", + "wordSecond": "źle", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "对 (duì)", + "wordSecond": "tak (zgadza się)", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "错 (cuò)", + "wordSecond": "źle (błędnie)", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "再见,明天见 (zài jiàn, míng tiān jiàn)", + "wordSecond": "do widzenia, do jutra", + "createdAt": "2026-02-19T12:51:55.366Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_home_furniture_rooms_de_fr_A1.json b/output/2026_02_19_home_furniture_rooms_de_fr_A1.json new file mode 100644 index 0000000..bcd1629 --- /dev/null +++ b/output/2026_02_19_home_furniture_rooms_de_fr_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:46:02.310Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Home Furniture & Rooms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Home Furniture & Rooms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Haus", + "wordSecond": "la maison", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Wohnung", + "wordSecond": "l'appartement", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Zimmer", + "wordSecond": "la pièce", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Schlafzimmer", + "wordSecond": "la chambre", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Badezimmer", + "wordSecond": "la salle de bain", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Küche", + "wordSecond": "la cuisine", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Wohnzimmer", + "wordSecond": "le salon", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Garten", + "wordSecond": "le jardin", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Garage", + "wordSecond": "le garage", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Flur", + "wordSecond": "le couloir", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Tür", + "wordSecond": "la porte", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Fenster", + "wordSecond": "la fenêtre", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Wand", + "wordSecond": "le mur", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Decke", + "wordSecond": "le plafond", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Boden", + "wordSecond": "le sol", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Treppe", + "wordSecond": "l'escalier", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Bett", + "wordSecond": "le lit", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Schrank", + "wordSecond": "l'armoire", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Tisch", + "wordSecond": "la table", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Stuhl", + "wordSecond": "la chaise", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Sessel", + "wordSecond": "le fauteuil", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Sofa", + "wordSecond": "le canapé", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Schreibtisch", + "wordSecond": "le bureau", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Regal", + "wordSecond": "l'étagère", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Spiegel", + "wordSecond": "le miroir", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Vorhang", + "wordSecond": "le rideau", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Teppich", + "wordSecond": "le tapis", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Lampe", + "wordSecond": "la lampe", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Kommode", + "wordSecond": "la commode", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Nachttisch", + "wordSecond": "la table de nuit", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Matratze", + "wordSecond": "le matelas", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Kissen", + "wordSecond": "l'oreiller", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Decke", + "wordSecond": "la couverture", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Badewanne", + "wordSecond": "la baignoire", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Dusche", + "wordSecond": "la douche", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Toilette", + "wordSecond": "les toilettes", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Waschbecken", + "wordSecond": "le lavabo", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Herd", + "wordSecond": "la cuisinière", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Ofen", + "wordSecond": "le four", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Kühlschrank", + "wordSecond": "le réfrigérateur", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Spüle", + "wordSecond": "l'évier", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Schrank", + "wordSecond": "le placard", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Mikrowelle", + "wordSecond": "le micro-ondes", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Waschmaschine", + "wordSecond": "la machine à laver", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Staubsauger", + "wordSecond": "l'aspirateur", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Fernseher", + "wordSecond": "la télévision", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Computer", + "wordSecond": "l'ordinateur", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Buch", + "wordSecond": "le livre", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Bild", + "wordSecond": "le tableau", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Pflanze", + "wordSecond": "la plante", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Uhr", + "wordSecond": "l'horloge", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Schlüssel", + "wordSecond": "la clé", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Licht", + "wordSecond": "la lumière", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Stuhl", + "wordSecond": "le siège", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Couch", + "wordSecond": "le divan", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Hocker", + "wordSecond": "le tabouret", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Leiter", + "wordSecond": "l'échelle", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Besen", + "wordSecond": "le balai", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Mülleimer", + "wordSecond": "la poubelle", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Schublade", + "wordSecond": "le tiroir", + "createdAt": "2026-02-19T15:46:02.310Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_home_furniture_rooms_de_it_A1.json b/output/2026_02_19_home_furniture_rooms_de_it_A1.json new file mode 100644 index 0000000..3b2d36c --- /dev/null +++ b/output/2026_02_19_home_furniture_rooms_de_it_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:46:16.019Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Home Furniture & Rooms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Home Furniture & Rooms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Haus", + "wordSecond": "la casa", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Wohnung", + "wordSecond": "l'appartamento", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Zimmer", + "wordSecond": "la stanza", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Schlafzimmer", + "wordSecond": "la camera da letto", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Badezimmer", + "wordSecond": "il bagno", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Küche", + "wordSecond": "la cucina", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Wohnzimmer", + "wordSecond": "il soggiorno", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Garten", + "wordSecond": "il giardino", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Garage", + "wordSecond": "il garage", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Tür", + "wordSecond": "la porta", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Fenster", + "wordSecond": "la finestra", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Wand", + "wordSecond": "il muro", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Boden", + "wordSecond": "il pavimento", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Decke", + "wordSecond": "il soffitto", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Bett", + "wordSecond": "il letto", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Tisch", + "wordSecond": "il tavolo", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Stuhl", + "wordSecond": "la sedia", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Schrank", + "wordSecond": "l'armadio", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Sofa", + "wordSecond": "il divano", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Sessel", + "wordSecond": "la poltrona", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Schreibtisch", + "wordSecond": "la scrivania", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Regal", + "wordSecond": "la scaffalatura", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Spiegel", + "wordSecond": "lo specchio", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Vorhang", + "wordSecond": "la tenda", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Teppich", + "wordSecond": "il tappeto", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Licht", + "wordSecond": "la luce", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Lampe", + "wordSecond": "la lampada", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Kissen", + "wordSecond": "il cuscino", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Decke", + "wordSecond": "la coperta", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Kühlschrank", + "wordSecond": "il frigorifero", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Herd", + "wordSecond": "il fornello", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Ofen", + "wordSecond": "il forno", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Mikrowelle", + "wordSecond": "il microonde", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Spüle", + "wordSecond": "il lavandino", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Waschmaschine", + "wordSecond": "la lavatrice", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Staubsauger", + "wordSecond": "l'aspirapolvere", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Fernseher", + "wordSecond": "la televisione", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Radio", + "wordSecond": "la radio", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Uhr", + "wordSecond": "l'orologio", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Bild", + "wordSecond": "il quadro", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Blume", + "wordSecond": "il fiore", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Buch", + "wordSecond": "il libro", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Zeitung", + "wordSecond": "il giornale", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Schlüssel", + "wordSecond": "la chiave", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Treppe", + "wordSecond": "la scala", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Flur", + "wordSecond": "il corridoio", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Balkon", + "wordSecond": "il balcone", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Dusche", + "wordSecond": "la doccia", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Badewanne", + "wordSecond": "la vasca da bagno", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Waschbecken", + "wordSecond": "il lavandino", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Toilette", + "wordSecond": "il gabinetto", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Schrank", + "wordSecond": "la credenza", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Kommode", + "wordSecond": "il comò", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Nachttisch", + "wordSecond": "il comodino", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Matratze", + "wordSecond": "il materasso", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "das Kopfkissen", + "wordSecond": "il guanciale", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Garderobe", + "wordSecond": "il guardaroba", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Hocker", + "wordSecond": "lo sgabello", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "die Vitrine", + "wordSecond": "la vetrina", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "der Teppich", + "wordSecond": "il tappeto", + "createdAt": "2026-02-19T15:46:16.019Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_home_furniture_rooms_en_de_A1.json b/output/2026_02_19_home_furniture_rooms_en_de_A1.json new file mode 100644 index 0000000..2d55ffd --- /dev/null +++ b/output/2026_02_19_home_furniture_rooms_en_de_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:43:55.204Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Home Furniture & Rooms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Home Furniture & Rooms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bedroom", + "wordSecond": "Schlafzimmer", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bathroom", + "wordSecond": "Badezimmer", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "kitchen", + "wordSecond": "Küche", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "living room", + "wordSecond": "Wohnzimmer", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "garden", + "wordSecond": "Garten", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "garage", + "wordSecond": "Garage", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sofa", + "wordSecond": "Sofa", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wardrobe", + "wordSecond": "Schrank", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "desk", + "wordSecond": "Schreibtisch", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shelf", + "wordSecond": "Regal", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "mirror", + "wordSecond": "Spiegel", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "curtain", + "wordSecond": "Vorhang", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fridge", + "wordSecond": "Kühlschrank", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "oven", + "wordSecond": "Ofen", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "microwave", + "wordSecond": "Mikrowelle", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "washing machine", + "wordSecond": "Waschmaschine", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "vacuum cleaner", + "wordSecond": "Staubsauger", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "table", + "wordSecond": "Tisch", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "chair", + "wordSecond": "Stuhl", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bed", + "wordSecond": "Bett", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lamp", + "wordSecond": "Lampe", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "window", + "wordSecond": "Fenster", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "door", + "wordSecond": "Tür", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "floor", + "wordSecond": "Boden", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wall", + "wordSecond": "Wand", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ceiling", + "wordSecond": "Decke", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "light", + "wordSecond": "Licht", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "key", + "wordSecond": "Schlüssel", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "clock", + "wordSecond": "Uhr", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "picture", + "wordSecond": "Bild", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "carpet", + "wordSecond": "Teppich", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pillow", + "wordSecond": "Kissen", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "blanket", + "wordSecond": "Decke", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cupboard", + "wordSecond": "Schrank", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "drawer", + "wordSecond": "Schublade", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "toilet", + "wordSecond": "Toilette", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shower", + "wordSecond": "Dusche", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bathtub", + "wordSecond": "Badewanne", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sink", + "wordSecond": "Waschbecken", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tap", + "wordSecond": "Wasserhahn", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "soap", + "wordSecond": "Seife", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "towel", + "wordSecond": "Handtuch", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stove", + "wordSecond": "Herd", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "plate", + "wordSecond": "Teller", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cup", + "wordSecond": "Tasse", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "glass", + "wordSecond": "Glas", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "knife", + "wordSecond": "Messer", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fork", + "wordSecond": "Gabel", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "spoon", + "wordSecond": "Löffel", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bowl", + "wordSecond": "Schüssel", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "television", + "wordSecond": "Fernseher", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "radio", + "wordSecond": "Radio", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bookcase", + "wordSecond": "Bücherregal", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "armchair", + "wordSecond": "Sessel", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "rug", + "wordSecond": "Teppich", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "plant", + "wordSecond": "Pflanze", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stairs", + "wordSecond": "Treppe", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hall", + "wordSecond": "Flur", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "basement", + "wordSecond": "Keller", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "attic", + "wordSecond": "Dachboden", + "createdAt": "2026-02-19T15:43:55.204Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_home_furniture_rooms_en_es_A1.json b/output/2026_02_19_home_furniture_rooms_en_es_A1.json new file mode 100644 index 0000000..3e7a7f4 --- /dev/null +++ b/output/2026_02_19_home_furniture_rooms_en_es_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:43:31.841Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Home Furniture & Rooms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Home Furniture & Rooms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bedroom", + "wordSecond": "dormitorio", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bathroom", + "wordSecond": "baño", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "kitchen", + "wordSecond": "cocina", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "living room", + "wordSecond": "sala", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "garden", + "wordSecond": "jardín", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "garage", + "wordSecond": "garaje", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sofa", + "wordSecond": "sofá", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wardrobe", + "wordSecond": "armario", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "desk", + "wordSecond": "escritorio", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shelf", + "wordSecond": "estante", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mirror", + "wordSecond": "espejo", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "curtain", + "wordSecond": "cortina", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fridge", + "wordSecond": "nevera", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "oven", + "wordSecond": "horno", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "microwave", + "wordSecond": "microondas", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "washing machine", + "wordSecond": "lavadora", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "vacuum cleaner", + "wordSecond": "aspiradora", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "table", + "wordSecond": "mesa", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "chair", + "wordSecond": "silla", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bed", + "wordSecond": "cama", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lamp", + "wordSecond": "lámpara", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "window", + "wordSecond": "ventana", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "door", + "wordSecond": "puerta", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "floor", + "wordSecond": "suelo", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wall", + "wordSecond": "pared", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ceiling", + "wordSecond": "techo", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "light", + "wordSecond": "luz", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "key", + "wordSecond": "llave", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "clock", + "wordSecond": "reloj", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "picture", + "wordSecond": "cuadro", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bookcase", + "wordSecond": "librería", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rug", + "wordSecond": "alfombra", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pillow", + "wordSecond": "almohada", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "blanket", + "wordSecond": "manta", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sheet", + "wordSecond": "sábana", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "toilet", + "wordSecond": "inodoro", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sink", + "wordSecond": "lavabo", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shower", + "wordSecond": "ducha", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bathtub", + "wordSecond": "bañera", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "towel", + "wordSecond": "toalla", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cupboard", + "wordSecond": "armario", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "drawer", + "wordSecond": "cajón", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "stove", + "wordSecond": "estufa", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pan", + "wordSecond": "sartén", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "plate", + "wordSecond": "plato", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cup", + "wordSecond": "taza", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "glass", + "wordSecond": "vaso", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "knife", + "wordSecond": "cuchillo", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fork", + "wordSecond": "tenedor", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "spoon", + "wordSecond": "cuchara", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "television", + "wordSecond": "televisión", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "radio", + "wordSecond": "radio", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "telephone", + "wordSecond": "teléfono", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "computer", + "wordSecond": "ordenador", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fan", + "wordSecond": "ventilador", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "heater", + "wordSecond": "calentador", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "iron", + "wordSecond": "plancha", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "broom", + "wordSecond": "escoba", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mop", + "wordSecond": "fregona", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bucket", + "wordSecond": "cubo", + "createdAt": "2026-02-19T15:43:31.841Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_home_furniture_rooms_en_fr_A1.json b/output/2026_02_19_home_furniture_rooms_en_fr_A1.json new file mode 100644 index 0000000..39bcdc3 --- /dev/null +++ b/output/2026_02_19_home_furniture_rooms_en_fr_A1.json @@ -0,0 +1,786 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:44:06.213Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Home Furniture & Rooms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Home Furniture & Rooms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bedroom", + "wordSecond": "chambre", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bathroom", + "wordSecond": "salle de bain", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "kitchen", + "wordSecond": "cuisine", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "living room", + "wordSecond": "salon", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "garden", + "wordSecond": "jardin", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "garage", + "wordSecond": "garage", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sofa", + "wordSecond": "canapé", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wardrobe", + "wordSecond": "armoire", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "desk", + "wordSecond": "bureau", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shelf", + "wordSecond": "étagère", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "mirror", + "wordSecond": "miroir", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "curtain", + "wordSecond": "rideau", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fridge", + "wordSecond": "réfrigérateur", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "oven", + "wordSecond": "four", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "microwave", + "wordSecond": "micro-ondes", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "washing machine", + "wordSecond": "machine à laver", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "vacuum cleaner", + "wordSecond": "aspirateur", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "table", + "wordSecond": "table", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "chair", + "wordSecond": "chaise", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bed", + "wordSecond": "lit", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lamp", + "wordSecond": "lampe", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "window", + "wordSecond": "fenêtre", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "door", + "wordSecond": "porte", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "floor", + "wordSecond": "sol", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wall", + "wordSecond": "mur", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ceiling", + "wordSecond": "plafond", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "carpet", + "wordSecond": "tapis", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pillow", + "wordSecond": "oreiller", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "blanket", + "wordSecond": "couverture", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sheet", + "wordSecond": "drap", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "toilet", + "wordSecond": "toilettes", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sink", + "wordSecond": "évier", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shower", + "wordSecond": "douche", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bathtub", + "wordSecond": "baignoire", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "towel", + "wordSecond": "serviette", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cupboard", + "wordSecond": "placard", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "stove", + "wordSecond": "cuisinière", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "plate", + "wordSecond": "assiette", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cup", + "wordSecond": "tasse", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "glass", + "wordSecond": "verre", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "knife", + "wordSecond": "couteau", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fork", + "wordSecond": "fourchette", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "spoon", + "wordSecond": "cuillère", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pan", + "wordSecond": "poêle", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pot", + "wordSecond": "casserole", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "clock", + "wordSecond": "horloge", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "picture", + "wordSecond": "image", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bookcase", + "wordSecond": "bibliothèque", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "television", + "wordSecond": "télévision", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "radio", + "wordSecond": "radio", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "telephone", + "wordSecond": "téléphone", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "key", + "wordSecond": "clé", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "light", + "wordSecond": "lumière", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "switch", + "wordSecond": "interrupteur", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "plug", + "wordSecond": "prise", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bottle", + "wordSecond": "bouteille", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "box", + "wordSecond": "boîte", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bag", + "wordSecond": "sac", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "flower", + "wordSecond": "fleur", + "createdAt": "2026-02-19T15:44:06.213Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_home_furniture_rooms_en_it_A1.json b/output/2026_02_19_home_furniture_rooms_en_it_A1.json new file mode 100644 index 0000000..575348f --- /dev/null +++ b/output/2026_02_19_home_furniture_rooms_en_it_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:44:18.143Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Home Furniture & Rooms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Home Furniture & Rooms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bedroom", + "wordSecond": "camera da letto", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bathroom", + "wordSecond": "bagno", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "kitchen", + "wordSecond": "cucina", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "living room", + "wordSecond": "soggiorno", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "garden", + "wordSecond": "giardino", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "garage", + "wordSecond": "garage", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sofa", + "wordSecond": "divano", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wardrobe", + "wordSecond": "armadio", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "desk", + "wordSecond": "scrivania", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shelf", + "wordSecond": "scaffale", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "mirror", + "wordSecond": "specchio", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "curtain", + "wordSecond": "tenda", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fridge", + "wordSecond": "frigorifero", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "oven", + "wordSecond": "forno", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "microwave", + "wordSecond": "microonde", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "washing machine", + "wordSecond": "lavatrice", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "vacuum cleaner", + "wordSecond": "aspirapolvere", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bed", + "wordSecond": "letto", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "table", + "wordSecond": "tavolo", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "chair", + "wordSecond": "sedia", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "window", + "wordSecond": "finestra", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "door", + "wordSecond": "porta", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "floor", + "wordSecond": "pavimento", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wall", + "wordSecond": "muro", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ceiling", + "wordSecond": "soffitto", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lamp", + "wordSecond": "lampada", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "light", + "wordSecond": "luce", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "clock", + "wordSecond": "orologio", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "picture", + "wordSecond": "quadro", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "carpet", + "wordSecond": "tappeto", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pillow", + "wordSecond": "cuscino", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "blanket", + "wordSecond": "coperta", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sheet", + "wordSecond": "lenzuolo", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "toilet", + "wordSecond": "toilette", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sink", + "wordSecond": "lavandino", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shower", + "wordSecond": "doccia", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bathtub", + "wordSecond": "vasca da bagno", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "towel", + "wordSecond": "asciugamano", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cupboard", + "wordSecond": "mobile", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "drawer", + "wordSecond": "cassetto", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "stove", + "wordSecond": "fornello", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pan", + "wordSecond": "pentola", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "plate", + "wordSecond": "piatto", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cup", + "wordSecond": "tazza", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "glass", + "wordSecond": "bicchiere", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "knife", + "wordSecond": "coltello", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fork", + "wordSecond": "forchetta", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "spoon", + "wordSecond": "cucchiaio", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "television", + "wordSecond": "televisione", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "radio", + "wordSecond": "radio", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bookcase", + "wordSecond": "libreria", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "plant", + "wordSecond": "pianta", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "key", + "wordSecond": "chiave", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lock", + "wordSecond": "serratura", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "stairs", + "wordSecond": "scale", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hall", + "wordSecond": "ingresso", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "balcony", + "wordSecond": "balcone", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "basement", + "wordSecond": "seminterrato", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "attic", + "wordSecond": "soffitta", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dining room", + "wordSecond": "sala da pranzo", + "createdAt": "2026-02-19T15:44:18.143Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_home_furniture_rooms_en_pt_A1.json b/output/2026_02_19_home_furniture_rooms_en_pt_A1.json new file mode 100644 index 0000000..9d361a4 --- /dev/null +++ b/output/2026_02_19_home_furniture_rooms_en_pt_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:43:43.792Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Home Furniture & Rooms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Home Furniture & Rooms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bedroom", + "wordSecond": "quarto", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bathroom", + "wordSecond": "banheiro", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "kitchen", + "wordSecond": "cozinha", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "living room", + "wordSecond": "sala", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "garden", + "wordSecond": "jardim", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "garage", + "wordSecond": "garagem", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sofa", + "wordSecond": "sofá", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wardrobe", + "wordSecond": "guarda-roupa", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "desk", + "wordSecond": "escritório", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shelf", + "wordSecond": "prateleira", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mirror", + "wordSecond": "espelho", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "curtain", + "wordSecond": "cortina", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fridge", + "wordSecond": "geladeira", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "oven", + "wordSecond": "forno", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "microwave", + "wordSecond": "micro-ondas", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "washing machine", + "wordSecond": "máquina de lavar", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "vacuum cleaner", + "wordSecond": "aspirador de pó", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "table", + "wordSecond": "mesa", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chair", + "wordSecond": "cadeira", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bed", + "wordSecond": "cama", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lamp", + "wordSecond": "lâmpada", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "window", + "wordSecond": "janela", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "door", + "wordSecond": "porta", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "floor", + "wordSecond": "chão", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wall", + "wordSecond": "parede", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ceiling", + "wordSecond": "teto", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "roof", + "wordSecond": "telhado", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stairs", + "wordSecond": "escada", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "closet", + "wordSecond": "armário", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "drawer", + "wordSecond": "gaveta", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cupboard", + "wordSecond": "armário de cozinha", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sink", + "wordSecond": "pia", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "toilet", + "wordSecond": "vaso sanitário", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shower", + "wordSecond": "chuveiro", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bathtub", + "wordSecond": "banheira", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "towel", + "wordSecond": "toalha", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rug", + "wordSecond": "tapete", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "carpet", + "wordSecond": "carpete", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pillow", + "wordSecond": "travesseiro", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "blanket", + "wordSecond": "cobertor", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sheet", + "wordSecond": "lençol", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "clock", + "wordSecond": "relógio", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "picture", + "wordSecond": "quadro", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "painting", + "wordSecond": "pintura", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "television", + "wordSecond": "televisão", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "radio", + "wordSecond": "rádio", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "telephone", + "wordSecond": "telefone", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "computer", + "wordSecond": "computador", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bookcase", + "wordSecond": "estante de livros", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bookshelf", + "wordSecond": "prateleira de livros", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stove", + "wordSecond": "fogão", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dishwasher", + "wordSecond": "lava-louças", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "blender", + "wordSecond": "liquidificador", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "toaster", + "wordSecond": "torradeira", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fan", + "wordSecond": "ventilador", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "heater", + "wordSecond": "aquecedor", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "air conditioner", + "wordSecond": "ar-condicionado", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "light", + "wordSecond": "luz", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "switch", + "wordSecond": "interruptor", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "key", + "wordSecond": "chave", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lock", + "wordSecond": "fechadura", + "createdAt": "2026-02-19T15:43:43.792Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_home_furniture_rooms_es_de_A1.json b/output/2026_02_19_home_furniture_rooms_es_de_A1.json new file mode 100644 index 0000000..23aeb68 --- /dev/null +++ b/output/2026_02_19_home_furniture_rooms_es_de_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:44:44.665Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Home Furniture & Rooms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Home Furniture & Rooms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la casa", + "wordSecond": "das Haus", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el cuarto", + "wordSecond": "das Zimmer", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la habitación", + "wordSecond": "der Raum", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el dormitorio", + "wordSecond": "das Schlafzimmer", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cama", + "wordSecond": "das Bett", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la almohada", + "wordSecond": "das Kissen", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la manta", + "wordSecond": "die Decke", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el armario", + "wordSecond": "der Schrank", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el baño", + "wordSecond": "das Badezimmer", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el inodoro", + "wordSecond": "die Toilette", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el lavabo", + "wordSecond": "das Waschbecken", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la ducha", + "wordSecond": "die Dusche", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la bañera", + "wordSecond": "die Badewanne", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cocina", + "wordSecond": "die Küche", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la mesa", + "wordSecond": "der Tisch", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la silla", + "wordSecond": "der Stuhl", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el plato", + "wordSecond": "der Teller", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el vaso", + "wordSecond": "das Glas", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el tenedor", + "wordSecond": "die Gabel", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el cuchillo", + "wordSecond": "das Messer", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cuchara", + "wordSecond": "der Löffel", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el salón", + "wordSecond": "das Wohnzimmer", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el sofá", + "wordSecond": "das Sofa", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la silla", + "wordSecond": "der Stuhl", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la televisión", + "wordSecond": "der Fernseher", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la lámpara", + "wordSecond": "die Lampe", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el jardín", + "wordSecond": "der Garten", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la flor", + "wordSecond": "die Blume", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el árbol", + "wordSecond": "der Baum", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el garaje", + "wordSecond": "die Garage", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el coche", + "wordSecond": "das Auto", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la puerta", + "wordSecond": "die Tür", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la ventana", + "wordSecond": "das Fenster", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la pared", + "wordSecond": "die Wand", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el suelo", + "wordSecond": "der Boden", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el techo", + "wordSecond": "die Decke", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la escalera", + "wordSecond": "die Treppe", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el escritorio", + "wordSecond": "der Schreibtisch", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la silla de escritorio", + "wordSecond": "der Schreibtischstuhl", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la estantería", + "wordSecond": "das Regal", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el espejo", + "wordSecond": "der Spiegel", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cortina", + "wordSecond": "der Vorhang", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la alfombra", + "wordSecond": "der Teppich", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la nevera", + "wordSecond": "der Kühlschrank", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el horno", + "wordSecond": "der Ofen", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el microondas", + "wordSecond": "die Mikrowelle", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la lavadora", + "wordSecond": "die Waschmaschine", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la secadora", + "wordSecond": "der Trockner", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la aspiradora", + "wordSecond": "der Staubsauger", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cafetera", + "wordSecond": "die Kaffeemaschine", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la tostadora", + "wordSecond": "der Toaster", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cama individual", + "wordSecond": "das Einzelbett", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cama doble", + "wordSecond": "das Doppelbett", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el colchón", + "wordSecond": "die Matratze", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cómoda", + "wordSecond": "die Kommode", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el lavabo", + "wordSecond": "das Waschbecken", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el grifo", + "wordSecond": "der Wasserhahn", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el fregadero", + "wordSecond": "das Spülbecken", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la estufa", + "wordSecond": "der Herd", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el lavavajillas", + "wordSecond": "die Spülmaschine", + "createdAt": "2026-02-19T15:44:44.665Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_home_furniture_rooms_es_fr_A1.json b/output/2026_02_19_home_furniture_rooms_es_fr_A1.json new file mode 100644 index 0000000..8799f88 --- /dev/null +++ b/output/2026_02_19_home_furniture_rooms_es_fr_A1.json @@ -0,0 +1,786 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:44:58.385Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Home Furniture & Rooms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Home Furniture & Rooms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la casa", + "wordSecond": "la maison", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la habitación", + "wordSecond": "la chambre", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el dormitorio", + "wordSecond": "la chambre à coucher", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el baño", + "wordSecond": "la salle de bain", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la cocina", + "wordSecond": "la cuisine", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el salón", + "wordSecond": "le salon", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el jardín", + "wordSecond": "le jardin", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el garaje", + "wordSecond": "le garage", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la puerta", + "wordSecond": "la porte", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la ventana", + "wordSecond": "la fenêtre", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la pared", + "wordSecond": "le mur", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el suelo", + "wordSecond": "le sol", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el techo", + "wordSecond": "le plafond", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la cama", + "wordSecond": "le lit", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la almohada", + "wordSecond": "l'oreiller", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la manta", + "wordSecond": "la couverture", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el armario", + "wordSecond": "l'armoire", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el sofá", + "wordSecond": "le canapé", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la silla", + "wordSecond": "la chaise", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la mesa", + "wordSecond": "la table", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el escritorio", + "wordSecond": "le bureau", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la estantería", + "wordSecond": "l'étagère", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el espejo", + "wordSecond": "le miroir", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la cortina", + "wordSecond": "le rideau", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la lámpara", + "wordSecond": "la lampe", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el reloj", + "wordSecond": "l'horloge", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el cuadro", + "wordSecond": "le tableau", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la alfombra", + "wordSecond": "le tapis", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la nevera", + "wordSecond": "le réfrigérateur", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el frigorífico", + "wordSecond": "le frigo", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el horno", + "wordSecond": "le four", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el microondas", + "wordSecond": "le micro-ondes", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el fregadero", + "wordSecond": "l'évier", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la lavadora", + "wordSecond": "la machine à laver", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la secadora", + "wordSecond": "le sèche-linge", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el lavavajillas", + "wordSecond": "le lave-vaisselle", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la aspiradora", + "wordSecond": "l'aspirateur", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la plancha", + "wordSecond": "le fer à repasser", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la tostadora", + "wordSecond": "le grille-pain", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la cafetera", + "wordSecond": "la cafetière", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la bañera", + "wordSecond": "la baignoire", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la ducha", + "wordSecond": "la douche", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el inodoro", + "wordSecond": "les toilettes", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el lavabo", + "wordSecond": "le lavabo", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el espejo del baño", + "wordSecond": "le miroir de la salle de bain", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la toalla", + "wordSecond": "la serviette", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el jabón", + "wordSecond": "le savon", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el cepillo de dientes", + "wordSecond": "la brosse à dents", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la pasta de dientes", + "wordSecond": "le dentifrice", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el sillón", + "wordSecond": "le fauteuil", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la televisión", + "wordSecond": "la télévision", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la estufa", + "wordSecond": "le poêle", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "la chimenea", + "wordSecond": "la cheminée", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el comedor", + "wordSecond": "la salle à manger", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el pasillo", + "wordSecond": "le couloir", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "las escaleras", + "wordSecond": "l'escalier", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el sótano", + "wordSecond": "la cave", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el ático", + "wordSecond": "le grenier", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "el balcón", + "wordSecond": "le balcon", + "createdAt": "2026-02-19T15:44:58.385Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_home_furniture_rooms_es_it_A1.json b/output/2026_02_19_home_furniture_rooms_es_it_A1.json new file mode 100644 index 0000000..4c0c7e0 --- /dev/null +++ b/output/2026_02_19_home_furniture_rooms_es_it_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:45:10.741Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Home Furniture & Rooms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Home Furniture & Rooms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "casa", + "wordSecond": "casa", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "habitación", + "wordSecond": "stanza", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dormitorio", + "wordSecond": "camera da letto", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "baño", + "wordSecond": "bagno", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cocina", + "wordSecond": "cucina", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "salón", + "wordSecond": "soggiorno", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "comedor", + "wordSecond": "sala da pranzo", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "jardín", + "wordSecond": "giardino", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "garaje", + "wordSecond": "garage", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sótano", + "wordSecond": "cantina", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ático", + "wordSecond": "attico", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "puerta", + "wordSecond": "porta", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ventana", + "wordSecond": "finestra", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pared", + "wordSecond": "parete", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "suelo", + "wordSecond": "pavimento", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "techo", + "wordSecond": "soffitto", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "escalera", + "wordSecond": "scala", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cama", + "wordSecond": "letto", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mesa", + "wordSecond": "tavolo", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "silla", + "wordSecond": "sedia", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sofá", + "wordSecond": "divano", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "armario", + "wordSecond": "armadio", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "escritorio", + "wordSecond": "scrivania", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estantería", + "wordSecond": "scaffale", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lámpara", + "wordSecond": "lampada", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "espejo", + "wordSecond": "specchio", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cortina", + "wordSecond": "tenda", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "alfombra", + "wordSecond": "tappeto", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cojín", + "wordSecond": "cuscino", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "manta", + "wordSecond": "coperta", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "almohada", + "wordSecond": "cuscino", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mesita", + "wordSecond": "tavolino", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sillón", + "wordSecond": "poltrona", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "butaca", + "wordSecond": "poltrona", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cómoda", + "wordSecond": "comò", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "perchero", + "wordSecond": "attaccapanni", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "reloj", + "wordSecond": "orologio", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cuadro", + "wordSecond": "quadro", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "florero", + "wordSecond": "vaso", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "frigorífico", + "wordSecond": "frigorifero", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "horno", + "wordSecond": "forno", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "microondas", + "wordSecond": "forno a microonde", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lavadora", + "wordSecond": "lavatrice", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "secadora", + "wordSecond": "asciugatrice", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lavavajillas", + "wordSecond": "lavastoviglie", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cafetera", + "wordSecond": "caffettiera", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tostadora", + "wordSecond": "tostapane", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "batidora", + "wordSecond": "frullatore", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "licuadora", + "wordSecond": "frullatore", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "aspiradora", + "wordSecond": "aspirapolvere", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "plancha", + "wordSecond": "ferro da stiro", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "teléfono", + "wordSecond": "telefono", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "televisión", + "wordSecond": "televisione", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "radio", + "wordSecond": "radio", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ordenador", + "wordSecond": "computer", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "libro", + "wordSecond": "libro", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "revista", + "wordSecond": "rivista", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "periódico", + "wordSecond": "giornale", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "planta", + "wordSecond": "pianta", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "flor", + "wordSecond": "fiore", + "createdAt": "2026-02-19T15:45:10.741Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_home_furniture_rooms_es_pt_A1.json b/output/2026_02_19_home_furniture_rooms_es_pt_A1.json new file mode 100644 index 0000000..b6666f2 --- /dev/null +++ b/output/2026_02_19_home_furniture_rooms_es_pt_A1.json @@ -0,0 +1,786 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:44:30.912Z", + "metadata": { + "itemCount": 59, + "categoryCount": 1, + "exportScope": "Category: Home Furniture & Rooms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Home Furniture & Rooms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cama", + "wordSecond": "cama", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mesa", + "wordSecond": "mesa", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "silla", + "wordSecond": "cadeira", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sofá", + "wordSecond": "sofá", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "armario", + "wordSecond": "armário", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cómoda", + "wordSecond": "cômoda", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estantería", + "wordSecond": "estante", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "espejo", + "wordSecond": "espelho", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lámpara", + "wordSecond": "lâmpada", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alfombra", + "wordSecond": "tapete", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cortina", + "wordSecond": "cortina", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "puerta", + "wordSecond": "porta", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ventana", + "wordSecond": "janela", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pared", + "wordSecond": "parede", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "techo", + "wordSecond": "teto", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "suelo", + "wordSecond": "chão", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dormitorio", + "wordSecond": "quarto", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "baño", + "wordSecond": "banheiro", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cocina", + "wordSecond": "cozinha", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "salón", + "wordSecond": "sala de estar", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "comedor", + "wordSecond": "sala de jantar", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pasillo", + "wordSecond": "corredor", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sótano", + "wordSecond": "porão", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ático", + "wordSecond": "sótão", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "garaje", + "wordSecond": "garagem", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "jardín", + "wordSecond": "jardim", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "terraza", + "wordSecond": "terraço", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "balcón", + "wordSecond": "varanda", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escalera", + "wordSecond": "escada", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nevera", + "wordSecond": "geladeira", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "congelador", + "wordSecond": "freezer", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "horno", + "wordSecond": "forno", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "microondas", + "wordSecond": "micro-ondas", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lavadora", + "wordSecond": "máquina de lavar", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "secadora", + "wordSecond": "secadora", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lavavajillas", + "wordSecond": "lava-louças", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cafetera", + "wordSecond": "cafeteira", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tostadora", + "wordSecond": "torradeira", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "licuadora", + "wordSecond": "liquidificador", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aspiradora", + "wordSecond": "aspirador de pó", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escritorio", + "wordSecond": "escritório", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sillón", + "wordSecond": "poltrona", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "butaca", + "wordSecond": "cadeira de braço", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "taburete", + "wordSecond": "banquinho", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuna", + "wordSecond": "berço", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "colchón", + "wordSecond": "colchão", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "almohada", + "wordSecond": "travesseiro", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "manta", + "wordSecond": "cobertor", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "edredón", + "wordSecond": "edredom", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "toalla", + "wordSecond": "toalha", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ducha", + "wordSecond": "chuveiro", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bañera", + "wordSecond": "banheira", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "inodoro", + "wordSecond": "vaso sanitário", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lavabo", + "wordSecond": "pia", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "grifo", + "wordSecond": "torneira", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fregadero", + "wordSecond": "pia da cozinha", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "encimera", + "wordSecond": "bancada", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alacena", + "wordSecond": "armário de cozinha", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "chimenea", + "wordSecond": "lareira", + "createdAt": "2026-02-19T15:44:30.912Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_home_furniture_rooms_fr_it_A1.json b/output/2026_02_19_home_furniture_rooms_fr_it_A1.json new file mode 100644 index 0000000..80df8fb --- /dev/null +++ b/output/2026_02_19_home_furniture_rooms_fr_it_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:46:29.823Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Home Furniture & Rooms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Home Furniture & Rooms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la maison", + "wordSecond": "la casa", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la chambre", + "wordSecond": "la camera", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la salle de bain", + "wordSecond": "il bagno", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la cuisine", + "wordSecond": "la cucina", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le salon", + "wordSecond": "il soggiorno", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le jardin", + "wordSecond": "il giardino", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le garage", + "wordSecond": "il garage", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la porte", + "wordSecond": "la porta", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la fenêtre", + "wordSecond": "la finestra", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le mur", + "wordSecond": "il muro", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le plafond", + "wordSecond": "il soffitto", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le sol", + "wordSecond": "il pavimento", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'escalier", + "wordSecond": "la scala", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le lit", + "wordSecond": "il letto", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la table", + "wordSecond": "il tavolo", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la chaise", + "wordSecond": "la sedia", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le canapé", + "wordSecond": "il divano", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'armoire", + "wordSecond": "l'armadio", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le bureau", + "wordSecond": "la scrivania", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'étagère", + "wordSecond": "la mensola", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le miroir", + "wordSecond": "lo specchio", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le rideau", + "wordSecond": "la tenda", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le tapis", + "wordSecond": "il tappeto", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'oreiller", + "wordSecond": "il cuscino", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la couverture", + "wordSecond": "la coperta", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le matelas", + "wordSecond": "il materasso", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la lampe", + "wordSecond": "la lampada", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'horloge", + "wordSecond": "l'orologio", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le tableau", + "wordSecond": "il quadro", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le réfrigérateur", + "wordSecond": "il frigorifero", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le four", + "wordSecond": "il forno", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le micro-ondes", + "wordSecond": "il microonde", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la machine à laver", + "wordSecond": "la lavatrice", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'aspirateur", + "wordSecond": "l'aspirapolvere", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la cuisinière", + "wordSecond": "il fornello", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'évier", + "wordSecond": "il lavandino", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le placard", + "wordSecond": "la credenza", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le tiroir", + "wordSecond": "il cassetto", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le lavabo", + "wordSecond": "il lavandino", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la douche", + "wordSecond": "la doccia", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la baignoire", + "wordSecond": "la vasca", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le WC", + "wordSecond": "il gabinetto", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le savon", + "wordSecond": "il sapone", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la serviette", + "wordSecond": "l'asciugamano", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le placard de cuisine", + "wordSecond": "la dispensa", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la poubelle", + "wordSecond": "il cestino", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la télévision", + "wordSecond": "la televisione", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le fauteuil", + "wordSecond": "la poltrona", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la bibliothèque", + "wordSecond": "la libreria", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le coussin", + "wordSecond": "il cuscino", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le balcon", + "wordSecond": "il balcone", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le couloir", + "wordSecond": "il corridoio", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le sous-sol", + "wordSecond": "la cantina", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le grenier", + "wordSecond": "la soffitta", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la clé", + "wordSecond": "la chiave", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la serrure", + "wordSecond": "la serratura", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la prise", + "wordSecond": "la presa", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'interrupteur", + "wordSecond": "l'interruttore", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le radiateur", + "wordSecond": "il termosifone", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la cheminée", + "wordSecond": "il camino", + "createdAt": "2026-02-19T15:46:29.823Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_home_furniture_rooms_pt_de_A1.json b/output/2026_02_19_home_furniture_rooms_pt_de_A1.json new file mode 100644 index 0000000..31bd1f4 --- /dev/null +++ b/output/2026_02_19_home_furniture_rooms_pt_de_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:45:24.106Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Home Furniture & Rooms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Home Furniture & Rooms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "casa", + "wordSecond": "Haus", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "apartamento", + "wordSecond": "Wohnung", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quarto", + "wordSecond": "Zimmer", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sala de estar", + "wordSecond": "Wohnzimmer", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cozinha", + "wordSecond": "Küche", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "banheiro", + "wordSecond": "Badezimmer", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quarto de dormir", + "wordSecond": "Schlafzimmer", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "jardim", + "wordSecond": "Garten", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "garagem", + "wordSecond": "Garage", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "porão", + "wordSecond": "Keller", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sótão", + "wordSecond": "Dachboden", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "corredor", + "wordSecond": "Flur", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escada", + "wordSecond": "Treppe", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "porta", + "wordSecond": "Tür", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "janela", + "wordSecond": "Fenster", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "parede", + "wordSecond": "Wand", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chão", + "wordSecond": "Boden", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "teto", + "wordSecond": "Decke", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cama", + "wordSecond": "Bett", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "travesseiro", + "wordSecond": "Kissen", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cobertor", + "wordSecond": "Decke", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lençol", + "wordSecond": "Bettlaken", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "guarda-roupa", + "wordSecond": "Kleiderschrank", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cômoda", + "wordSecond": "Kommode", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "espelho", + "wordSecond": "Spiegel", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cadeira", + "wordSecond": "Stuhl", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mesa", + "wordSecond": "Tisch", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escritório", + "wordSecond": "Schreibtisch", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sofá", + "wordSecond": "Sofa", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "poltrona", + "wordSecond": "Sessel", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "estante", + "wordSecond": "Bücherregal", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "prateleira", + "wordSecond": "Regal", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "luminária", + "wordSecond": "Lampe", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cortina", + "wordSecond": "Vorhang", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tapete", + "wordSecond": "Teppich", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quadro", + "wordSecond": "Bild", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "relógio", + "wordSecond": "Uhr", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "geladeira", + "wordSecond": "Kühlschrank", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fogão", + "wordSecond": "Herd", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "forno", + "wordSecond": "Ofen", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "micro-ondas", + "wordSecond": "Mikrowelle", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pia", + "wordSecond": "Spüle", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "armário de cozinha", + "wordSecond": "Küchenschrank", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "máquina de lavar", + "wordSecond": "Waschmaschine", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "secadora", + "wordSecond": "Trockner", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "aspirador de pó", + "wordSecond": "Staubsauger", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ferro de passar", + "wordSecond": "Bügeleisen", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "televisão", + "wordSecond": "Fernseher", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "rádio", + "wordSecond": "Radio", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "computador", + "wordSecond": "Computer", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "telefone", + "wordSecond": "Telefon", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cadeira de balanço", + "wordSecond": "Schaukelstuhl", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "berço", + "wordSecond": "Kinderbett", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "banheira", + "wordSecond": "Badewanne", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chuveiro", + "wordSecond": "Dusche", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vaso sanitário", + "wordSecond": "Toilette", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pia do banheiro", + "wordSecond": "Waschbecken", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "toalha", + "wordSecond": "Handtuch", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tapete de banheiro", + "wordSecond": "Badvorleger", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lixeira", + "wordSecond": "Mülleimer", + "createdAt": "2026-02-19T15:45:24.106Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_home_furniture_rooms_pt_fr_A1.json b/output/2026_02_19_home_furniture_rooms_pt_fr_A1.json new file mode 100644 index 0000000..7fe2a46 --- /dev/null +++ b/output/2026_02_19_home_furniture_rooms_pt_fr_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:45:36.355Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Home Furniture & Rooms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Home Furniture & Rooms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "casa", + "wordSecond": "maison", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quarto", + "wordSecond": "chambre", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "banheiro", + "wordSecond": "salle de bain", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cozinha", + "wordSecond": "cuisine", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sala", + "wordSecond": "salon", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "jardim", + "wordSecond": "jardin", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "garagem", + "wordSecond": "garage", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sofá", + "wordSecond": "canapé", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cama", + "wordSecond": "lit", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mesa", + "wordSecond": "table", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cadeira", + "wordSecond": "chaise", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "armário", + "wordSecond": "armoire", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "guarda-roupa", + "wordSecond": "garde-robe", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "escritório", + "wordSecond": "bureau", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "prateleira", + "wordSecond": "étagère", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "espelho", + "wordSecond": "miroir", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cortina", + "wordSecond": "rideau", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "janela", + "wordSecond": "fenêtre", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "porta", + "wordSecond": "porte", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lâmpada", + "wordSecond": "lampe", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tapete", + "wordSecond": "tapis", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quadro", + "wordSecond": "tableau", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "geladeira", + "wordSecond": "réfrigérateur", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fogão", + "wordSecond": "cuisinière", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "forno", + "wordSecond": "four", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "micro-ondas", + "wordSecond": "micro-ondes", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "máquina de lavar", + "wordSecond": "machine à laver", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "aspirador de pó", + "wordSecond": "aspirateur", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pia", + "wordSecond": "évier", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chuveiro", + "wordSecond": "douche", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vaso sanitário", + "wordSecond": "toilettes", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pia do banheiro", + "wordSecond": "lavabo", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "toalha", + "wordSecond": "serviette", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cômoda", + "wordSecond": "commode", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "criado-mudo", + "wordSecond": "table de nuit", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "poltrona", + "wordSecond": "fauteuil", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estante", + "wordSecond": "bibliothèque", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "televisão", + "wordSecond": "télévision", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "rádio", + "wordSecond": "radio", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "telefone", + "wordSecond": "téléphone", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "computador", + "wordSecond": "ordinateur", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ventilador", + "wordSecond": "ventilateur", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ar-condicionado", + "wordSecond": "climatiseur", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "aquecedor", + "wordSecond": "chauffage", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lareira", + "wordSecond": "cheminée", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "varanda", + "wordSecond": "balcon", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "porão", + "wordSecond": "cave", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sótão", + "wordSecond": "grenier", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "escada", + "wordSecond": "escalier", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "corredor", + "wordSecond": "couloir", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lavanderia", + "wordSecond": "buanderie", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pátio", + "wordSecond": "cour", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cerca", + "wordSecond": "clôture", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "portão", + "wordSecond": "portail", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sofá-cama", + "wordSecond": "canapé-lit", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "colchão", + "wordSecond": "matelas", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "travesseiro", + "wordSecond": "oreiller", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cobertor", + "wordSecond": "couverture", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lençol", + "wordSecond": "drap", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "almofada", + "wordSecond": "coussin", + "createdAt": "2026-02-19T15:45:36.355Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_home_furniture_rooms_pt_it_A1.json b/output/2026_02_19_home_furniture_rooms_pt_it_A1.json new file mode 100644 index 0000000..d3a87d0 --- /dev/null +++ b/output/2026_02_19_home_furniture_rooms_pt_it_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:45:48.852Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Home Furniture & Rooms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Home Furniture & Rooms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "casa", + "wordSecond": "casa", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quarto", + "wordSecond": "camera", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cozinha", + "wordSecond": "cucina", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "banheiro", + "wordSecond": "bagno", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sala", + "wordSecond": "soggiorno", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "jardim", + "wordSecond": "giardino", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "garagem", + "wordSecond": "garage", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sofá", + "wordSecond": "divano", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cama", + "wordSecond": "letto", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mesa", + "wordSecond": "tavolo", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cadeira", + "wordSecond": "sedia", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "armário", + "wordSecond": "armadio", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "guarda-roupa", + "wordSecond": "guardaroba", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estante", + "wordSecond": "libreria", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "prateleira", + "wordSecond": "scaffale", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "espelho", + "wordSecond": "specchio", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cortina", + "wordSecond": "tenda", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tapete", + "wordSecond": "tappeto", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lâmpada", + "wordSecond": "lampada", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "janela", + "wordSecond": "finestra", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "porta", + "wordSecond": "porta", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chão", + "wordSecond": "pavimento", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "parede", + "wordSecond": "parete", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "teto", + "wordSecond": "soffitto", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "geladeira", + "wordSecond": "frigorifero", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fogão", + "wordSecond": "fornello", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "forno", + "wordSecond": "forno", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "micro-ondas", + "wordSecond": "microonde", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "máquina de lavar", + "wordSecond": "lavatrice", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "aspirador de pó", + "wordSecond": "aspirapolvere", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pia", + "wordSecond": "lavandino", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chuveiro", + "wordSecond": "doccia", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "banheira", + "wordSecond": "vasca", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vaso sanitário", + "wordSecond": "water", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pia do banheiro", + "wordSecond": "lavabo", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "toalha", + "wordSecond": "asciugamano", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "escada", + "wordSecond": "scala", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "corredor", + "wordSecond": "corridoio", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "porão", + "wordSecond": "cantina", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sótão", + "wordSecond": "soffitta", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quarto de hóspedes", + "wordSecond": "camera degli ospiti", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lavanderia", + "wordSecond": "lavanderia", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "varanda", + "wordSecond": "balcone", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "terraço", + "wordSecond": "terrazza", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "piscina", + "wordSecond": "piscina", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cerca", + "wordSecond": "recinto", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "portão", + "wordSecond": "cancello", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lareira", + "wordSecond": "camino", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "televisão", + "wordSecond": "televisione", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "rádio", + "wordSecond": "radio", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "computador", + "wordSecond": "computer", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "telefone", + "wordSecond": "telefono", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "relógio", + "wordSecond": "orologio", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quadro", + "wordSecond": "quadro", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "almofada", + "wordSecond": "cuscino", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cobertor", + "wordSecond": "coperta", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lençol", + "wordSecond": "lenzuolo", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "travesseiro", + "wordSecond": "cuscino", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "colcha", + "wordSecond": "copriletto", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cortina de chuveiro", + "wordSecond": "tenda da doccia", + "createdAt": "2026-02-19T15:45:48.852Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_law_justice_en_es_B2.json b/output/2026_02_19_law_justice_en_es_B2.json new file mode 100644 index 0000000..4270e47 --- /dev/null +++ b/output/2026_02_19_law_justice_en_es_B2.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T16:13:45.387Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Law & Justice" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Law & Justice" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "theft", + "wordSecond": "robo", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fraud", + "wordSecond": "fraude", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "assault", + "wordSecond": "agresión", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "murder", + "wordSecond": "asesinato", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "corruption", + "wordSecond": "corrupción", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lawyer", + "wordSecond": "abogado", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "judge", + "wordSecond": "juez", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "prosecutor", + "wordSecond": "fiscal", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "witness", + "wordSecond": "testigo", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "jury", + "wordSecond": "jurado", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "trial", + "wordSecond": "juicio", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "verdict", + "wordSecond": "veredicto", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sentence", + "wordSecond": "sentencia", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "appeal", + "wordSecond": "apelación", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "evidence", + "wordSecond": "prueba", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "right", + "wordSecond": "derecho", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "duty", + "wordSecond": "deber", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "contract", + "wordSecond": "contrato", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "liability", + "wordSecond": "responsabilidad", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "innocence", + "wordSecond": "inocencia", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "guilt", + "wordSecond": "culpa", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "burglary", + "wordSecond": "allanamiento de morada", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "robbery", + "wordSecond": "atraco", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "kidnapping", + "wordSecond": "secuestro", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bribery", + "wordSecond": "soborno", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "embezzlement", + "wordSecond": "malversación", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "defendant", + "wordSecond": "acusado", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "plaintiff", + "wordSecond": "demandante", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "attorney", + "wordSecond": "abogado", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "solicitor", + "wordSecond": "procurador", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "barrister", + "wordSecond": "abogado litigante", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "magistrate", + "wordSecond": "magistrado", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "clerk", + "wordSecond": "secretario judicial", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bailiff", + "wordSecond": "alguacil", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "expert witness", + "wordSecond": "testigo pericial", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hearing", + "wordSecond": "audiencia", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "arraignment", + "wordSecond": "lectura de cargos", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "indictment", + "wordSecond": "acusación formal", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "plea", + "wordSecond": "declaración", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "testimony", + "wordSecond": "testimonio", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cross-examination", + "wordSecond": "contrainterrogatorio", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "objection", + "wordSecond": "objeción", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ruling", + "wordSecond": "fallo", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "conviction", + "wordSecond": "condena", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "acquittal", + "wordSecond": "absolución", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "parole", + "wordSecond": "libertad condicional", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "probation", + "wordSecond": "libertad vigilada", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fine", + "wordSecond": "multa", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "community service", + "wordSecond": "servicio comunitario", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "capital punishment", + "wordSecond": "pena de muerte", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "due process", + "wordSecond": "debido proceso", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "habeas corpus", + "wordSecond": "hábeas corpus", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "precedent", + "wordSecond": "precedente", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "statute", + "wordSecond": "estatuto", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "regulation", + "wordSecond": "reglamento", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "constitution", + "wordSecond": "constitución", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "amendment", + "wordSecond": "enmienda", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "jurisdiction", + "wordSecond": "jurisdicción", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lawsuit", + "wordSecond": "demanda", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "settlement", + "wordSecond": "acuerdo extrajudicial", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "arbitration", + "wordSecond": "arbitraje", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mediation", + "wordSecond": "mediación", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "injunction", + "wordSecond": "mandamiento judicial", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "subpoena", + "wordSecond": "citación judicial", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "affidavit", + "wordSecond": "declaración jurada", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "perjury", + "wordSecond": "perjurio", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "contempt of court", + "wordSecond": "desacato al tribunal", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "misdemeanor", + "wordSecond": "delito menor", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "felony", + "wordSecond": "delito grave", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "manslaughter", + "wordSecond": "homicidio involuntario", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "homicide", + "wordSecond": "homicidio", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "extortion", + "wordSecond": "extorsión", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "forgery", + "wordSecond": "falsificación", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "vandalism", + "wordSecond": "vandalismo", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "trespassing", + "wordSecond": "allanamiento", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "harassment", + "wordSecond": "acoso", + "createdAt": "2026-02-19T16:13:45.387Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_law_justice_en_pt_B2.json b/output/2026_02_19_law_justice_en_pt_B2.json new file mode 100644 index 0000000..1b146af --- /dev/null +++ b/output/2026_02_19_law_justice_en_pt_B2.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T16:13:59.471Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Law & Justice" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Law & Justice" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "theft", + "wordSecond": "furto", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fraud", + "wordSecond": "fraude", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "assault", + "wordSecond": "agressão", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "murder", + "wordSecond": "assassinato", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "corruption", + "wordSecond": "corrupção", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lawyer", + "wordSecond": "advogado", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "judge", + "wordSecond": "juiz", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "prosecutor", + "wordSecond": "promotor", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "witness", + "wordSecond": "testemunha", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "jury", + "wordSecond": "júri", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "trial", + "wordSecond": "julgamento", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "verdict", + "wordSecond": "veredito", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sentence", + "wordSecond": "sentença", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "appeal", + "wordSecond": "recurso", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "evidence", + "wordSecond": "prova", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "right", + "wordSecond": "direito", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "duty", + "wordSecond": "dever", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "contract", + "wordSecond": "contrato", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "liability", + "wordSecond": "responsabilidade", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "innocence", + "wordSecond": "inocência", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "guilt", + "wordSecond": "culpa", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "crime", + "wordSecond": "crime", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "defendant", + "wordSecond": "réu", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "plaintiff", + "wordSecond": "autor", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "defense", + "wordSecond": "defesa", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "prosecution", + "wordSecond": "acusação", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "court", + "wordSecond": "tribunal", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "law", + "wordSecond": "lei", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "justice", + "wordSecond": "justiça", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "legal", + "wordSecond": "legal", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "illegal", + "wordSecond": "ilegal", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "arrest", + "wordSecond": "prisão", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "charge", + "wordSecond": "acusação", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "conviction", + "wordSecond": "condenação", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "acquittal", + "wordSecond": "absolvição", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bail", + "wordSecond": "fiança", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "parole", + "wordSecond": "liberdade condicional", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "probation", + "wordSecond": "sursis", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fine", + "wordSecond": "multa", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "penalty", + "wordSecond": "penalidade", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "testimony", + "wordSecond": "depoimento", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "testify", + "wordSecond": "testemunhar", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cross-examination", + "wordSecond": "interrogatório", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "objection", + "wordSecond": "objeção", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ruling", + "wordSecond": "decisão", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "precedent", + "wordSecond": "precedente", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "statute", + "wordSecond": "estatuto", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "regulation", + "wordSecond": "regulamento", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "constitution", + "wordSecond": "constituição", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "amendment", + "wordSecond": "emenda", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lawsuit", + "wordSecond": "processo", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "litigation", + "wordSecond": "litígio", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "settlement", + "wordSecond": "acordo", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "arbitration", + "wordSecond": "arbitragem", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mediation", + "wordSecond": "mediação", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "injunction", + "wordSecond": "injunção", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "subpoena", + "wordSecond": "intimação", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "affidavit", + "wordSecond": "declaração", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "perjury", + "wordSecond": "perjúrio", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "contempt", + "wordSecond": "desacato", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "homicide", + "wordSecond": "homicídio", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "manslaughter", + "wordSecond": "homicídio culposo", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "robbery", + "wordSecond": "roubo", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "burglary", + "wordSecond": "arrombamento", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "forgery", + "wordSecond": "falsificação", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "embezzlement", + "wordSecond": "desvio", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "extortion", + "wordSecond": "extorsão", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "kidnapping", + "wordSecond": "sequestro", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "vandalism", + "wordSecond": "vandalismo", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "trespassing", + "wordSecond": "invasão", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "harassment", + "wordSecond": "assédio", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "defamation", + "wordSecond": "difamação", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "negligence", + "wordSecond": "negligência", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "breach", + "wordSecond": "violação", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "enforcement", + "wordSecond": "aplicação", + "createdAt": "2026-02-19T16:13:59.471Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_law_justice_es_pt_B2.json b/output/2026_02_19_law_justice_es_pt_B2.json new file mode 100644 index 0000000..afe9deb --- /dev/null +++ b/output/2026_02_19_law_justice_es_pt_B2.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T16:14:13.732Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Law & Justice" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Law & Justice" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "robo", + "wordSecond": "roubo", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fraude", + "wordSecond": "fraude", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "asalto", + "wordSecond": "assalto", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "asesinato", + "wordSecond": "assassinato", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "corrupción", + "wordSecond": "corrupção", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "abogado", + "wordSecond": "advogado", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "juez", + "wordSecond": "juiz", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fiscal", + "wordSecond": "promotor", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "testigo", + "wordSecond": "testemunha", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "jurado", + "wordSecond": "jurado", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "juicio", + "wordSecond": "julgamento", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "veredicto", + "wordSecond": "veredicto", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sentencia", + "wordSecond": "sentença", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "apelación", + "wordSecond": "apelação", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "evidencia", + "wordSecond": "evidência", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "derecho", + "wordSecond": "direito", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "deber", + "wordSecond": "dever", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "contrato", + "wordSecond": "contrato", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "responsabilidad", + "wordSecond": "responsabilidade", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "inocencia", + "wordSecond": "inocência", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "culpa", + "wordSecond": "culpa", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "delito", + "wordSecond": "delito", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "crimen", + "wordSecond": "crime", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "acusación", + "wordSecond": "acusação", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "defensa", + "wordSecond": "defesa", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tribunal", + "wordSecond": "tribunal", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ley", + "wordSecond": "lei", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "justicia", + "wordSecond": "justiça", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cárcel", + "wordSecond": "cadeia", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "prisión", + "wordSecond": "prisão", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "condena", + "wordSecond": "condena", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "absolución", + "wordSecond": "absolvição", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "testimonio", + "wordSecond": "testemunho", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "prueba", + "wordSecond": "prova", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "declaración", + "wordSecond": "declaração", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "interrogatorio", + "wordSecond": "interrogatório", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "investigación", + "wordSecond": "investigação", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "policía", + "wordSecond": "polícia", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "detención", + "wordSecond": "detenção", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "arresto", + "wordSecond": "arresto", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sospechoso", + "wordSecond": "suspeito", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "víctima", + "wordSecond": "vítima", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "culpable", + "wordSecond": "culpado", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "inocente", + "wordSecond": "inocente", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pena", + "wordSecond": "pena", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "multa", + "wordSecond": "multa", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "libertad condicional", + "wordSecond": "liberdade condicional", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reclusión", + "wordSecond": "reclusão", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "violación", + "wordSecond": "violação", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "secuestro", + "wordSecond": "sequestro", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "extorsión", + "wordSecond": "extorsão", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "soborno", + "wordSecond": "suborno", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tráfico", + "wordSecond": "tráfico", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "homicidio", + "wordSecond": "homicídio", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "violencia", + "wordSecond": "violência", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "amenaza", + "wordSecond": "ameaça", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "allanamiento", + "wordSecond": "invasão", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hurto", + "wordSecond": "furto", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estafa", + "wordSecond": "estelionato", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "chantaje", + "wordSecond": "chantagem", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cohecho", + "wordSecond": "corrupção ativa", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "perjurio", + "wordSecond": "perjúrio", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "falsificación", + "wordSecond": "falsificação", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "conspiración", + "wordSecond": "conspiração", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tortura", + "wordSecond": "tortura", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "terrorismo", + "wordSecond": "terrorismo", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vandalismo", + "wordSecond": "vandalismo", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "piratería", + "wordSecond": "pirataria", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "contrabando", + "wordSecond": "contrabando", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lavado de dinero", + "wordSecond": "lavagem de dinheiro", + "createdAt": "2026-02-19T16:14:13.732Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_medical_terms_de_fr_B1.json b/output/2026_02_19_medical_terms_de_fr_B1.json new file mode 100644 index 0000000..4634188 --- /dev/null +++ b/output/2026_02_19_medical_terms_de_fr_B1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:21:55.981Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Medical Terms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Medical Terms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kopfschmerzen", + "wordSecond": "maux de tête", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Übelkeit", + "wordSecond": "nausée", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schwellung", + "wordSecond": "gonflement", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fieber", + "wordSecond": "fièvre", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Husten", + "wordSecond": "toux", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schnupfen", + "wordSecond": "rhume", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Halsschmerzen", + "wordSecond": "maux de gorge", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schwindel", + "wordSecond": "vertige", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Müdigkeit", + "wordSecond": "fatigue", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schmerzen", + "wordSecond": "douleur", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Blutdruck", + "wordSecond": "tension artérielle", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Herz", + "wordSecond": "cœur", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Lunge", + "wordSecond": "poumon", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Magen", + "wordSecond": "estomac", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Leber", + "wordSecond": "foie", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Niere", + "wordSecond": "rein", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Haut", + "wordSecond": "peau", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Knochen", + "wordSecond": "os", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Muskel", + "wordSecond": "muscle", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gelenk", + "wordSecond": "articulation", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Diabetes", + "wordSecond": "diabète", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Allergie", + "wordSecond": "allergie", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Infektion", + "wordSecond": "infection", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Entzündung", + "wordSecond": "inflammation", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Blutung", + "wordSecond": "hémorragie", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Verstopfung", + "wordSecond": "constipation", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Durchfall", + "wordSecond": "diarrhée", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Erbrechen", + "wordSecond": "vomissement", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Atemnot", + "wordSecond": "essoufflement", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Brustschmerzen", + "wordSecond": "douleur thoracique", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Rückenschmerzen", + "wordSecond": "mal de dos", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bauchschmerzen", + "wordSecond": "douleur abdominale", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Krampf", + "wordSecond": "crampe", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Juckreiz", + "wordSecond": "démangeaison", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ausschlag", + "wordSecond": "éruption", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wunde", + "wordSecond": "plaie", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Narbe", + "wordSecond": "cicatrice", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bruch", + "wordSecond": "fracture", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Verstauchung", + "wordSecond": "entorse", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Prellung", + "wordSecond": "contusion", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Operation", + "wordSecond": "opération", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Untersuchung", + "wordSecond": "examen", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bluttest", + "wordSecond": "analyse de sang", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Röntgen", + "wordSecond": "radiographie", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ultraschall", + "wordSecond": "échographie", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Impfung", + "wordSecond": "vaccination", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tablette", + "wordSecond": "comprimé", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Medikament", + "wordSecond": "médicament", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Antibiotikum", + "wordSecond": "antibiotique", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schmerzmittel", + "wordSecond": "analgésique", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fiebersenker", + "wordSecond": "antipyrétique", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hustensaft", + "wordSecond": "sirop pour la toux", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Salbe", + "wordSecond": "pommade", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pflaster", + "wordSecond": "pansement", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Krankenhaus", + "wordSecond": "hôpital", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Arzt", + "wordSecond": "médecin", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ärztin", + "wordSecond": "médecin", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Krankenschwester", + "wordSecond": "infirmière", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pfleger", + "wordSecond": "infirmier", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Patient", + "wordSecond": "patient", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Patientin", + "wordSecond": "patiente", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Notfall", + "wordSecond": "urgence", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Rezept", + "wordSecond": "ordonnance", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Diagnose", + "wordSecond": "diagnostic", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Behandlung", + "wordSecond": "traitement", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Therapie", + "wordSecond": "thérapie", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Rehabilitation", + "wordSecond": "rééducation", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Krankheit", + "wordSecond": "maladie", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gesundheit", + "wordSecond": "santé", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schlaf", + "wordSecond": "sommeil", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ernährung", + "wordSecond": "alimentation", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bewegung", + "wordSecond": "exercice", + "createdAt": "2026-02-19T15:21:55.981Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_medical_terms_de_it_B1.json b/output/2026_02_19_medical_terms_de_it_B1.json new file mode 100644 index 0000000..b0ff44c --- /dev/null +++ b/output/2026_02_19_medical_terms_de_it_B1.json @@ -0,0 +1,1020 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:22:11.843Z", + "metadata": { + "itemCount": 77, + "categoryCount": 1, + "exportScope": "Category: Medical Terms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Medical Terms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kopfschmerzen", + "wordSecond": "mal di testa", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Übelkeit", + "wordSecond": "nausea", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schwellung", + "wordSecond": "gonfiore", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fieber", + "wordSecond": "febbre", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Husten", + "wordSecond": "tosse", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schnupfen", + "wordSecond": "raffreddore", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Halsschmerzen", + "wordSecond": "mal di gola", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schwindel", + "wordSecond": "vertigini", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Müdigkeit", + "wordSecond": "stanchezza", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schmerzen", + "wordSecond": "dolore", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Blutung", + "wordSecond": "emorragia", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Verstopfung", + "wordSecond": "stitichezza", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Durchfall", + "wordSecond": "diarrea", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Erbrechen", + "wordSecond": "vomito", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ausschlag", + "wordSecond": "eruzione", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Juckreiz", + "wordSecond": "prurito", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Atemnot", + "wordSecond": "dispnea", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Brustschmerzen", + "wordSecond": "dolore al petto", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Herz", + "wordSecond": "cuore", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Lunge", + "wordSecond": "polmone", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Magen", + "wordSecond": "stomaco", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Darm", + "wordSecond": "intestino", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Leber", + "wordSecond": "fegato", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Niere", + "wordSecond": "rene", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Blase", + "wordSecond": "vescica", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Haut", + "wordSecond": "pelle", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Knochen", + "wordSecond": "osso", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Muskel", + "wordSecond": "muscolo", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gelenk", + "wordSecond": "articolazione", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Blut", + "wordSecond": "sangue", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nerv", + "wordSecond": "nervo", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gehirn", + "wordSecond": "cervello", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Auge", + "wordSecond": "occhio", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ohr", + "wordSecond": "orecchio", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nase", + "wordSecond": "naso", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zahn", + "wordSecond": "dente", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zahnschmerzen", + "wordSecond": "mal di denti", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rücken", + "wordSecond": "schiena", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Arm", + "wordSecond": "braccio", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bein", + "wordSecond": "gamba", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hand", + "wordSecond": "mano", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fuß", + "wordSecond": "piede", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Diabetes", + "wordSecond": "diabete", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Allergie", + "wordSecond": "allergia", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Infektion", + "wordSecond": "infezione", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Entzündung", + "wordSecond": "infiammazione", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Grippe", + "wordSecond": "influenza", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Asthma", + "wordSecond": "asma", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bluthochdruck", + "wordSecond": "ipertensione", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Krebs", + "wordSecond": "cancro", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Arthritis", + "wordSecond": "artrite", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Migräne", + "wordSecond": "emicrania", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Anämie", + "wordSecond": "anemia", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tablette", + "wordSecond": "compressa", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pille", + "wordSecond": "pillola", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sirup", + "wordSecond": "sciroppo", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Salbe", + "wordSecond": "pomata", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Injektion", + "wordSecond": "iniezione", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Impfung", + "wordSecond": "vaccinazione", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Operation", + "wordSecond": "operazione", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Untersuchung", + "wordSecond": "visita", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bluttest", + "wordSecond": "esame del sangue", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Röntgen", + "wordSecond": "radiografia", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ultraschall", + "wordSecond": "ecografia", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Krankenhaus", + "wordSecond": "ospedale", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Arzt", + "wordSecond": "medico", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Krankenschwester", + "wordSecond": "infermiera", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Apotheke", + "wordSecond": "farmacia", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rezept", + "wordSecond": "ricetta", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Notfall", + "wordSecond": "emergenza", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schmerzmittel", + "wordSecond": "antidolorifico", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Antibiotikum", + "wordSecond": "antibiotico", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fieberthermometer", + "wordSecond": "termometro", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Verband", + "wordSecond": "benda", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pflaster", + "wordSecond": "cerotto", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Krücke", + "wordSecond": "stampella", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rollstuhl", + "wordSecond": "sedia a rotelle", + "createdAt": "2026-02-19T15:22:11.843Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_medical_terms_en_de_B1.json b/output/2026_02_19_medical_terms_en_de_B1.json new file mode 100644 index 0000000..2b0b4fc --- /dev/null +++ b/output/2026_02_19_medical_terms_en_de_B1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:19:23.462Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Medical Terms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Medical Terms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hospital", + "wordSecond": "Krankenhaus", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "doctor", + "wordSecond": "Arzt", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "nurse", + "wordSecond": "Krankenschwester", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "patient", + "wordSecond": "Patient", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pain", + "wordSecond": "Schmerz", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "headache", + "wordSecond": "Kopfschmerz", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fever", + "wordSecond": "Fieber", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cough", + "wordSecond": "Husten", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cold", + "wordSecond": "Erkältung", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "flu", + "wordSecond": "Grippe", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "infection", + "wordSecond": "Infektion", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "allergy", + "wordSecond": "Allergie", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "asthma", + "wordSecond": "Asthma", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "diabetes", + "wordSecond": "Diabetes", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hypertension", + "wordSecond": "Hypertonie", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "heart", + "wordSecond": "Herz", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lung", + "wordSecond": "Lunge", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stomach", + "wordSecond": "Magen", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "liver", + "wordSecond": "Leber", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "kidney", + "wordSecond": "Niere", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bone", + "wordSecond": "Knochen", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "muscle", + "wordSecond": "Muskel", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "skin", + "wordSecond": "Haut", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "blood", + "wordSecond": "Blut", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "vein", + "wordSecond": "Vene", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "artery", + "wordSecond": "Arterie", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "brain", + "wordSecond": "Gehirn", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "nerve", + "wordSecond": "Nerv", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "eye", + "wordSecond": "Auge", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ear", + "wordSecond": "Ohr", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "nose", + "wordSecond": "Nase", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "throat", + "wordSecond": "Hals", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tooth", + "wordSecond": "Zahn", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "chest", + "wordSecond": "Brust", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "back", + "wordSecond": "Rücken", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "arm", + "wordSecond": "Arm", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "leg", + "wordSecond": "Bein", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hand", + "wordSecond": "Hand", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "foot", + "wordSecond": "Fuß", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "joint", + "wordSecond": "Gelenk", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "swelling", + "wordSecond": "Schwellung", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bruise", + "wordSecond": "Bluterguss", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cut", + "wordSecond": "Schnitt", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "burn", + "wordSecond": "Verbrennung", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fracture", + "wordSecond": "Fraktur", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bleeding", + "wordSecond": "Blutung", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "nausea", + "wordSecond": "Übelkeit", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "vomiting", + "wordSecond": "Erbrechen", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "diarrhea", + "wordSecond": "Durchfall", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "constipation", + "wordSecond": "Verstopfung", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "rash", + "wordSecond": "Ausschlag", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "itch", + "wordSecond": "Juckreiz", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "dizziness", + "wordSecond": "Schwindel", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fatigue", + "wordSecond": "Müdigkeit", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "weakness", + "wordSecond": "Schwäche", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "inflammation", + "wordSecond": "Entzündung", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "antibiotic", + "wordSecond": "Antibiotikum", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "painkiller", + "wordSecond": "Schmerzmittel", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tablet", + "wordSecond": "Tablette", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pill", + "wordSecond": "Pille", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "syrup", + "wordSecond": "Sirup", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "injection", + "wordSecond": "Spritze", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "vaccine", + "wordSecond": "Impfstoff", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "surgery", + "wordSecond": "Operation", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "x-ray", + "wordSecond": "Röntgen", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "scan", + "wordSecond": "Scan", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "test", + "wordSecond": "Test", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "diagnosis", + "wordSecond": "Diagnose", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "treatment", + "wordSecond": "Behandlung", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "prescription", + "wordSecond": "Rezept", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "emergency", + "wordSecond": "Notfall", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ambulance", + "wordSecond": "Krankenwagen", + "createdAt": "2026-02-19T15:19:23.462Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_medical_terms_en_es_B1.json b/output/2026_02_19_medical_terms_en_es_B1.json new file mode 100644 index 0000000..496aa35 --- /dev/null +++ b/output/2026_02_19_medical_terms_en_es_B1.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:18:56.058Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Medical Terms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Medical Terms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "headache", + "wordSecond": "dolor de cabeza", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fever", + "wordSecond": "fiebre", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cough", + "wordSecond": "tos", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pain", + "wordSecond": "dolor", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nausea", + "wordSecond": "náusea", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "vomit", + "wordSecond": "vómito", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "swelling", + "wordSecond": "hinchazón", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rash", + "wordSecond": "erupción", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fatigue", + "wordSecond": "fatiga", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dizziness", + "wordSecond": "mareo", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bleeding", + "wordSecond": "sangrado", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bruise", + "wordSecond": "moretón", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "infection", + "wordSecond": "infección", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "allergy", + "wordSecond": "alergia", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "asthma", + "wordSecond": "asma", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "diabetes", + "wordSecond": "diabetes", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hypertension", + "wordSecond": "hipertensión", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "arthritis", + "wordSecond": "artritis", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "flu", + "wordSecond": "gripe", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cold", + "wordSecond": "resfriado", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "heart", + "wordSecond": "corazón", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lung", + "wordSecond": "pulmón", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "stomach", + "wordSecond": "estómago", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "liver", + "wordSecond": "hígado", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "kidney", + "wordSecond": "riñón", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "intestine", + "wordSecond": "intestino", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bladder", + "wordSecond": "vejiga", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bone", + "wordSecond": "hueso", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "muscle", + "wordSecond": "músculo", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nerve", + "wordSecond": "nervio", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "blood", + "wordSecond": "sangre", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "skin", + "wordSecond": "piel", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "eye", + "wordSecond": "ojo", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ear", + "wordSecond": "oído", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nose", + "wordSecond": "nariz", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "throat", + "wordSecond": "garganta", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tooth", + "wordSecond": "diente", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "back", + "wordSecond": "espalda", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "chest", + "wordSecond": "pecho", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "abdomen", + "wordSecond": "abdomen", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "arm", + "wordSecond": "brazo", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "leg", + "wordSecond": "pierna", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "joint", + "wordSecond": "articulación", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "vein", + "wordSecond": "vena", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "artery", + "wordSecond": "arteria", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "antibiotic", + "wordSecond": "antibiótico", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "painkiller", + "wordSecond": "analgésico", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pill", + "wordSecond": "pastilla", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tablet", + "wordSecond": "tableta", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "syrup", + "wordSecond": "jarabe", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "injection", + "wordSecond": "inyección", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cream", + "wordSecond": "crema", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ointment", + "wordSecond": "pomada", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dose", + "wordSecond": "dosis", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "prescription", + "wordSecond": "receta", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "surgery", + "wordSecond": "cirugía", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "operation", + "wordSecond": "operación", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "x-ray", + "wordSecond": "radiografía", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "scan", + "wordSecond": "escáner", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "test", + "wordSecond": "prueba", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "diagnosis", + "wordSecond": "diagnóstico", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "treatment", + "wordSecond": "tratamiento", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "recovery", + "wordSecond": "recuperación", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "emergency", + "wordSecond": "emergencia", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ambulance", + "wordSecond": "ambulancia", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hospital", + "wordSecond": "hospital", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "clinic", + "wordSecond": "clínica", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pharmacy", + "wordSecond": "farmacia", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "doctor", + "wordSecond": "médico", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nurse", + "wordSecond": "enfermero", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "patient", + "wordSecond": "paciente", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "appointment", + "wordSecond": "cita", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "symptom", + "wordSecond": "síntoma", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "condition", + "wordSecond": "afección", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wound", + "wordSecond": "herida", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fracture", + "wordSecond": "fractura", + "createdAt": "2026-02-19T15:18:56.058Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_medical_terms_en_fr_B1.json b/output/2026_02_19_medical_terms_en_fr_B1.json new file mode 100644 index 0000000..38ebb64 --- /dev/null +++ b/output/2026_02_19_medical_terms_en_fr_B1.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:19:36.959Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Medical Terms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Medical Terms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "head", + "wordSecond": "tête", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "heart", + "wordSecond": "cœur", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lung", + "wordSecond": "poumon", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "stomach", + "wordSecond": "estomac", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "liver", + "wordSecond": "foie", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "kidney", + "wordSecond": "rein", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bone", + "wordSecond": "os", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "muscle", + "wordSecond": "muscle", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "skin", + "wordSecond": "peau", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "blood", + "wordSecond": "sang", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pain", + "wordSecond": "douleur", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "headache", + "wordSecond": "mal de tête", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fever", + "wordSecond": "fièvre", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cough", + "wordSecond": "toux", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "nausea", + "wordSecond": "nausée", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "vomiting", + "wordSecond": "vomissement", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fatigue", + "wordSecond": "fatigue", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "dizziness", + "wordSecond": "vertige", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "swelling", + "wordSecond": "gonflement", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "rash", + "wordSecond": "éruption", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bleeding", + "wordSecond": "saignement", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bruise", + "wordSecond": "ecchymose", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "infection", + "wordSecond": "infection", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "virus", + "wordSecond": "virus", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bacteria", + "wordSecond": "bactérie", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "allergy", + "wordSecond": "allergie", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "asthma", + "wordSecond": "asthme", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "diabetes", + "wordSecond": "diabète", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hypertension", + "wordSecond": "hypertension", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "arthritis", + "wordSecond": "arthrite", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "flu", + "wordSecond": "grippe", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cold", + "wordSecond": "rhume", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pneumonia", + "wordSecond": "pneumonie", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bronchitis", + "wordSecond": "bronchite", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ulcer", + "wordSecond": "ulcère", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fracture", + "wordSecond": "fracture", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sprain", + "wordSecond": "entorse", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "burn", + "wordSecond": "brûlure", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cut", + "wordSecond": "coupure", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wound", + "wordSecond": "plaie", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "surgery", + "wordSecond": "chirurgie", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "operation", + "wordSecond": "opération", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "stitches", + "wordSecond": "points de suture", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cast", + "wordSecond": "plâtre", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bandage", + "wordSecond": "bandage", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ointment", + "wordSecond": "pommade", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pill", + "wordSecond": "comprimé", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tablet", + "wordSecond": "comprimé", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "capsule", + "wordSecond": "capsule", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "syrup", + "wordSecond": "sirop", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "injection", + "wordSecond": "injection", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "vaccine", + "wordSecond": "vaccin", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "antibiotic", + "wordSecond": "antibiotique", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "painkiller", + "wordSecond": "antidouleur", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "antihistamine", + "wordSecond": "antihistaminique", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "insulin", + "wordSecond": "insuline", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "prescription", + "wordSecond": "ordonnance", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "dosage", + "wordSecond": "posologie", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "side effect", + "wordSecond": "effet secondaire", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "doctor", + "wordSecond": "médecin", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "nurse", + "wordSecond": "infirmier", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "surgeon", + "wordSecond": "chirurgien", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "dentist", + "wordSecond": "dentiste", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pharmacist", + "wordSecond": "pharmacien", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "patient", + "wordSecond": "patient", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "appointment", + "wordSecond": "rendez-vous", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "emergency", + "wordSecond": "urgence", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hospital", + "wordSecond": "hôpital", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "clinic", + "wordSecond": "clinique", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pharmacy", + "wordSecond": "pharmacie", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ambulance", + "wordSecond": "ambulance", + "createdAt": "2026-02-19T15:19:36.959Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_medical_terms_en_it_B1.json b/output/2026_02_19_medical_terms_en_it_B1.json new file mode 100644 index 0000000..3ec7c37 --- /dev/null +++ b/output/2026_02_19_medical_terms_en_it_B1.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:19:50.389Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Medical Terms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Medical Terms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "head", + "wordSecond": "testa", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "heart", + "wordSecond": "cuore", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lung", + "wordSecond": "polmone", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "stomach", + "wordSecond": "stomaco", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "liver", + "wordSecond": "fegato", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "kidney", + "wordSecond": "rene", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bone", + "wordSecond": "osso", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "muscle", + "wordSecond": "muscolo", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "skin", + "wordSecond": "pelle", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "blood", + "wordSecond": "sangue", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pain", + "wordSecond": "dolore", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fever", + "wordSecond": "febbre", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cough", + "wordSecond": "tosse", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "headache", + "wordSecond": "mal di testa", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "nausea", + "wordSecond": "nausea", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "vomit", + "wordSecond": "vomito", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "diarrhea", + "wordSecond": "diarrea", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "constipation", + "wordSecond": "stipsi", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fatigue", + "wordSecond": "affaticamento", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dizziness", + "wordSecond": "vertigini", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "swelling", + "wordSecond": "gonfiore", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "rash", + "wordSecond": "eruzione", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bruise", + "wordSecond": "livido", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bleeding", + "wordSecond": "sanguinamento", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "infection", + "wordSecond": "infezione", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "virus", + "wordSecond": "virus", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bacteria", + "wordSecond": "batteri", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "allergy", + "wordSecond": "allergia", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "asthma", + "wordSecond": "asma", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "diabetes", + "wordSecond": "diabete", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hypertension", + "wordSecond": "ipertensione", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "arthritis", + "wordSecond": "artrite", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "flu", + "wordSecond": "influenza", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cold", + "wordSecond": "raffreddore", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fracture", + "wordSecond": "frattura", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sprain", + "wordSecond": "distorsione", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "burn", + "wordSecond": "ustione", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cut", + "wordSecond": "taglio", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wound", + "wordSecond": "ferita", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "surgery", + "wordSecond": "chirurgia", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "operation", + "wordSecond": "operazione", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "injection", + "wordSecond": "iniezione", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "vaccine", + "wordSecond": "vaccino", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pill", + "wordSecond": "pillola", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tablet", + "wordSecond": "compressa", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "capsule", + "wordSecond": "capsula", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "syrup", + "wordSecond": "sciroppo", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ointment", + "wordSecond": "unguento", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cream", + "wordSecond": "crema", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bandage", + "wordSecond": "benda", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "plaster", + "wordSecond": "cerotto", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cast", + "wordSecond": "gesso", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "crutch", + "wordSecond": "stampella", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wheelchair", + "wordSecond": "sedia a rotelle", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hospital", + "wordSecond": "ospedale", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "clinic", + "wordSecond": "clinica", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pharmacy", + "wordSecond": "farmacia", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "doctor", + "wordSecond": "medico", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "nurse", + "wordSecond": "infermiere", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "surgeon", + "wordSecond": "chirurgo", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dentist", + "wordSecond": "dentista", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "patient", + "wordSecond": "paziente", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "appointment", + "wordSecond": "appuntamento", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "prescription", + "wordSecond": "ricetta", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "diagnosis", + "wordSecond": "diagnosi", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "treatment", + "wordSecond": "trattamento", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "therapy", + "wordSecond": "terapia", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "recovery", + "wordSecond": "guarigione", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "emergency", + "wordSecond": "emergenza", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ambulance", + "wordSecond": "ambulanza", + "createdAt": "2026-02-19T15:19:50.389Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_medical_terms_en_pt_B1.json b/output/2026_02_19_medical_terms_en_pt_B1.json new file mode 100644 index 0000000..955e80f --- /dev/null +++ b/output/2026_02_19_medical_terms_en_pt_B1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:19:10.064Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Medical Terms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Medical Terms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "headache", + "wordSecond": "dor de cabeça", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "nausea", + "wordSecond": "náusea", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fever", + "wordSecond": "febre", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pain", + "wordSecond": "dor", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "swelling", + "wordSecond": "inchaço", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cough", + "wordSecond": "tosse", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rash", + "wordSecond": "erupção cutânea", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fatigue", + "wordSecond": "fadiga", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dizziness", + "wordSecond": "tontura", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bleeding", + "wordSecond": "sangramento", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "infection", + "wordSecond": "infecção", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "allergy", + "wordSecond": "alergia", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "diabetes", + "wordSecond": "diabetes", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "asthma", + "wordSecond": "asma", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hypertension", + "wordSecond": "hipertensão", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "arthritis", + "wordSecond": "artrite", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "flu", + "wordSecond": "gripe", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cold", + "wordSecond": "resfriado", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "injury", + "wordSecond": "lesão", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fracture", + "wordSecond": "fratura", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sprain", + "wordSecond": "entorse", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "burn", + "wordSecond": "queimadura", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stitches", + "wordSecond": "pontos", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bandage", + "wordSecond": "bandagem", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cast", + "wordSecond": "gesso", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "crutches", + "wordSecond": "muletas", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wheelchair", + "wordSecond": "cadeira de rodas", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "prescription", + "wordSecond": "receita", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pill", + "wordSecond": "comprimido", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tablet", + "wordSecond": "comprimido", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "capsule", + "wordSecond": "cápsula", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "syrup", + "wordSecond": "xarope", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ointment", + "wordSecond": "pomada", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "injection", + "wordSecond": "injeção", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "vaccine", + "wordSecond": "vacina", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "antibiotic", + "wordSecond": "antibiótico", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "painkiller", + "wordSecond": "analgésico", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "antihistamine", + "wordSecond": "anti-histamínico", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "doctor", + "wordSecond": "médico", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "nurse", + "wordSecond": "enfermeiro", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "patient", + "wordSecond": "paciente", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "surgeon", + "wordSecond": "cirurgião", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dentist", + "wordSecond": "dentista", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pharmacist", + "wordSecond": "farmacêutico", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hospital", + "wordSecond": "hospital", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "clinic", + "wordSecond": "clínica", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "emergency room", + "wordSecond": "pronto-socorro", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "appointment", + "wordSecond": "consulta", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "surgery", + "wordSecond": "cirurgia", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "x-ray", + "wordSecond": "raio-X", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "scan", + "wordSecond": "tomografia", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "blood test", + "wordSecond": "exame de sangue", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "urine test", + "wordSecond": "exame de urina", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "blood pressure", + "wordSecond": "pressão arterial", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "heart rate", + "wordSecond": "frequência cardíaca", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "temperature", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pulse", + "wordSecond": "pulso", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "breathing", + "wordSecond": "respiração", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "heart", + "wordSecond": "coração", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lungs", + "wordSecond": "pulmões", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stomach", + "wordSecond": "estômago", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "liver", + "wordSecond": "fígado", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "kidneys", + "wordSecond": "rins", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bones", + "wordSecond": "ossos", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "muscles", + "wordSecond": "músculos", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "skin", + "wordSecond": "pele", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "eyes", + "wordSecond": "olhos", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ears", + "wordSecond": "ouvidos", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "throat", + "wordSecond": "garganta", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "nose", + "wordSecond": "nariz", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mouth", + "wordSecond": "boca", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "teeth", + "wordSecond": "dentes", + "createdAt": "2026-02-19T15:19:10.064Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_medical_terms_es_de_B1.json b/output/2026_02_19_medical_terms_es_de_B1.json new file mode 100644 index 0000000..903a3fc --- /dev/null +++ b/output/2026_02_19_medical_terms_es_de_B1.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:20:23.621Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Medical Terms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Medical Terms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el dolor", + "wordSecond": "der Schmerz", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la fiebre", + "wordSecond": "das Fieber", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la tos", + "wordSecond": "el Husten", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el resfriado", + "wordSecond": "die Erkältung", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la gripe", + "wordSecond": "die Grippe", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la alergia", + "wordSecond": "die Allergie", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la infección", + "wordSecond": "die Infektion", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la inflamación", + "wordSecond": "die Entzündung", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la diabetes", + "wordSecond": "der Diabetes", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la presión arterial", + "wordSecond": "der Blutdruck", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el corazón", + "wordSecond": "das Herz", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "los pulmones", + "wordSecond": "die Lungen", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el estómago", + "wordSecond": "der Magen", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el hígado", + "wordSecond": "die Leber", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "los riñones", + "wordSecond": "die Nieren", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la sangre", + "wordSecond": "das Blut", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el hueso", + "wordSecond": "der Knochen", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el músculo", + "wordSecond": "der Muskel", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la piel", + "wordSecond": "die Haut", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cabeza", + "wordSecond": "der Kopf", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la garganta", + "wordSecond": "der Hals", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el oído", + "wordSecond": "das Ohr", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el ojo", + "wordSecond": "das Auge", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la nariz", + "wordSecond": "die Nase", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la boca", + "wordSecond": "der Mund", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el brazo", + "wordSecond": "der Arm", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la pierna", + "wordSecond": "das Bein", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la mano", + "wordSecond": "die Hand", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el pie", + "wordSecond": "der Fuß", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el médico", + "wordSecond": "der Arzt", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la médica", + "wordSecond": "die Ärztin", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el paciente", + "wordSecond": "der Patient", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la paciente", + "wordSecond": "die Patientin", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el hospital", + "wordSecond": "das Krankenhaus", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la clínica", + "wordSecond": "die Klinik", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la consulta", + "wordSecond": "die Sprechstunde", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la receta", + "wordSecond": "das Rezept", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la medicina", + "wordSecond": "die Medizin", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la pastilla", + "wordSecond": "die Tablette", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la inyección", + "wordSecond": "die Spritze", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la vacuna", + "wordSecond": "die Impfung", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la cirugía", + "wordSecond": "die Operation", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la radiografía", + "wordSecond": "das Röntgenbild", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el análisis de sangre", + "wordSecond": "der Bluttest", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la urgencia", + "wordSecond": "der Notfall", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la ambulancia", + "wordSecond": "der Krankenwagen", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el dolor de cabeza", + "wordSecond": "die Kopfschmerzen", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el dolor de garganta", + "wordSecond": "die Halsschmerzen", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el dolor de estómago", + "wordSecond": "die Magenschmerzen", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el dolor de espalda", + "wordSecond": "die Rückenschmerzen", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la náusea", + "wordSecond": "die Übelkeit", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el vómito", + "wordSecond": "das Erbrechen", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la diarrea", + "wordSecond": "der Durchfall", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el estreñimiento", + "wordSecond": "die Verstopfung", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la fatiga", + "wordSecond": "die Müdigkeit", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el mareo", + "wordSecond": "der Schwindel", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la hinchazón", + "wordSecond": "die Schwellung", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el moretón", + "wordSecond": "der Bluterguss", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la herida", + "wordSecond": "die Wunde", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la fractura", + "wordSecond": "der Bruch", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el esguince", + "wordSecond": "die Verstauchung", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la quemadura", + "wordSecond": "die Verbrennung", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la picadura", + "wordSecond": "der Stich", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la asma", + "wordSecond": "das Asthma", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la artritis", + "wordSecond": "die Arthritis", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la úlcera", + "wordSecond": "das Geschwür", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el cáncer", + "wordSecond": "der Krebs", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el ataque al corazón", + "wordSecond": "der Herzinfarkt", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "el derrame cerebral", + "wordSecond": "der Schlaganfall", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la ansiedad", + "wordSecond": "die Angst", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "la depresión", + "wordSecond": "die Depression", + "createdAt": "2026-02-19T15:20:23.621Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_medical_terms_es_fr_B1.json b/output/2026_02_19_medical_terms_es_fr_B1.json new file mode 100644 index 0000000..e38f937 --- /dev/null +++ b/output/2026_02_19_medical_terms_es_fr_B1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:20:38.723Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Medical Terms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Medical Terms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cabeza", + "wordSecond": "tête", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "corazón", + "wordSecond": "cœur", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pulmón", + "wordSecond": "poumon", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "estómago", + "wordSecond": "estomac", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hígado", + "wordSecond": "foie", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "riñón", + "wordSecond": "rein", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sangre", + "wordSecond": "sang", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hueso", + "wordSecond": "os", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "músculo", + "wordSecond": "muscle", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "piel", + "wordSecond": "peau", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ojo", + "wordSecond": "œil", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "oído", + "wordSecond": "oreille", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nariz", + "wordSecond": "nez", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "boca", + "wordSecond": "bouche", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "garganta", + "wordSecond": "gorge", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "brazo", + "wordSecond": "bras", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pierna", + "wordSecond": "jambe", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "rodilla", + "wordSecond": "genou", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "espalda", + "wordSecond": "dos", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pecho", + "wordSecond": "poitrine", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dolor", + "wordSecond": "douleur", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fiebre", + "wordSecond": "fièvre", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tos", + "wordSecond": "toux", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "náusea", + "wordSecond": "nausée", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vómito", + "wordSecond": "vomissement", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mareo", + "wordSecond": "vertige", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fatiga", + "wordSecond": "fatigue", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hinchazón", + "wordSecond": "gonflement", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sarpullido", + "wordSecond": "éruption", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "picazón", + "wordSecond": "démangeaison", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "herida", + "wordSecond": "blessure", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fractura", + "wordSecond": "fracture", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hemorragia", + "wordSecond": "hémorragie", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "infección", + "wordSecond": "infection", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "inflamación", + "wordSecond": "inflammation", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "alergia", + "wordSecond": "allergie", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "asma", + "wordSecond": "asthme", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "diabetes", + "wordSecond": "diabète", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "presión arterial", + "wordSecond": "tension artérielle", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "colesterol", + "wordSecond": "cholestérol", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gripe", + "wordSecond": "grippe", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "resfriado", + "wordSecond": "rhume", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dolor de cabeza", + "wordSecond": "mal de tête", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dolor de garganta", + "wordSecond": "mal de gorge", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dolor de estómago", + "wordSecond": "mal d'estomac", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dolor de espalda", + "wordSecond": "mal de dos", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "antibiótico", + "wordSecond": "antibiotique", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "analgésico", + "wordSecond": "analgésique", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "antiinflamatorio", + "wordSecond": "anti-inflammatoire", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "antihistamínico", + "wordSecond": "antihistaminique", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "insulina", + "wordSecond": "insuline", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vacuna", + "wordSecond": "vaccin", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pastilla", + "wordSecond": "comprimé", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "jarabe", + "wordSecond": "sirop", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "inyección", + "wordSecond": "injection", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cirugía", + "wordSecond": "chirurgie", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "radiografía", + "wordSecond": "radiographie", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "análisis de sangre", + "wordSecond": "analyse de sang", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "operación", + "wordSecond": "opération", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sutura", + "wordSecond": "suture", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "yeso", + "wordSecond": "plâtre", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "muleta", + "wordSecond": "béquille", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ambulancia", + "wordSecond": "ambulance", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hospital", + "wordSecond": "hôpital", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "clínica", + "wordSecond": "clinique", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "consultorio", + "wordSecond": "cabinet", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "médico", + "wordSecond": "médecin", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "enfermero", + "wordSecond": "infirmier", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "paciente", + "wordSecond": "patient", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "urgencias", + "wordSecond": "urgences", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "receta", + "wordSecond": "ordonnance", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "diagnóstico", + "wordSecond": "diagnostic", + "createdAt": "2026-02-19T15:20:38.723Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_medical_terms_es_it_B1.json b/output/2026_02_19_medical_terms_es_it_B1.json new file mode 100644 index 0000000..ad6819a --- /dev/null +++ b/output/2026_02_19_medical_terms_es_it_B1.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:20:53.621Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Medical Terms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Medical Terms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cabeza", + "wordSecond": "testa", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "corazón", + "wordSecond": "cuore", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pulmón", + "wordSecond": "polmone", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estómago", + "wordSecond": "stomaco", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hígado", + "wordSecond": "fegato", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "riñón", + "wordSecond": "rene", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sangre", + "wordSecond": "sangue", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hueso", + "wordSecond": "osso", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "músculo", + "wordSecond": "muscolo", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "piel", + "wordSecond": "pelle", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ojo", + "wordSecond": "occhio", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "oído", + "wordSecond": "orecchio", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nariz", + "wordSecond": "naso", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "boca", + "wordSecond": "bocca", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "garganta", + "wordSecond": "gola", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "brazo", + "wordSecond": "braccio", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pierna", + "wordSecond": "gamba", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mano", + "wordSecond": "mano", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pie", + "wordSecond": "piede", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "espalda", + "wordSecond": "schiena", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pecho", + "wordSecond": "petto", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dolor", + "wordSecond": "dolore", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "fiebre", + "wordSecond": "febbre", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tos", + "wordSecond": "tosse", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "náusea", + "wordSecond": "nausea", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vómito", + "wordSecond": "vomito", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mareo", + "wordSecond": "vertigine", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "fatiga", + "wordSecond": "fatica", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hinchazón", + "wordSecond": "gonfiore", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sarpullido", + "wordSecond": "eruzione", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "picazón", + "wordSecond": "prurito", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "herida", + "wordSecond": "ferita", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "quemadura", + "wordSecond": "ustione", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "fractura", + "wordSecond": "frattura", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sangrado", + "wordSecond": "sanguinamento", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "infección", + "wordSecond": "infezione", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "alergia", + "wordSecond": "allergia", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "asma", + "wordSecond": "asma", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "diabetes", + "wordSecond": "diabete", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "presión arterial", + "wordSecond": "pressione", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "colesterol", + "wordSecond": "colesterolo", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gripe", + "wordSecond": "influenza", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "resfriado", + "wordSecond": "raffreddore", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dolor de cabeza", + "wordSecond": "mal di testa", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dolor de estómago", + "wordSecond": "mal di stomaco", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dolor de garganta", + "wordSecond": "mal di gola", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dolor de espalda", + "wordSecond": "mal di schiena", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "antibiótico", + "wordSecond": "antibiotico", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "analgésico", + "wordSecond": "antidolorifico", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "antiinflamatorio", + "wordSecond": "antinfiammatorio", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "antihistamínico", + "wordSecond": "antistaminico", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vacuna", + "wordSecond": "vaccino", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "inyección", + "wordSecond": "iniezione", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pastilla", + "wordSecond": "pillola", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "jarabe", + "wordSecond": "sciroppo", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "crema", + "wordSecond": "crema", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hospital", + "wordSecond": "ospedale", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "clínica", + "wordSecond": "clinica", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "consultorio", + "wordSecond": "ambulatorio", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "médico", + "wordSecond": "medico", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "enfermero", + "wordSecond": "infermiere", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "paciente", + "wordSecond": "paziente", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "urgencias", + "wordSecond": "pronto soccorso", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cirugía", + "wordSecond": "chirurgia", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "radiografía", + "wordSecond": "radiografia", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "análisis de sangre", + "wordSecond": "analisi del sangue", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "receta", + "wordSecond": "ricetta", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tratamiento", + "wordSecond": "trattamento", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "diagnóstico", + "wordSecond": "diagnosi", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "síntoma", + "wordSecond": "sintomo", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "recuperación", + "wordSecond": "recupero", + "createdAt": "2026-02-19T15:20:53.621Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_medical_terms_es_pt_B1.json b/output/2026_02_19_medical_terms_es_pt_B1.json new file mode 100644 index 0000000..3b054b3 --- /dev/null +++ b/output/2026_02_19_medical_terms_es_pt_B1.json @@ -0,0 +1,1072 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:20:07.095Z", + "metadata": { + "itemCount": 81, + "categoryCount": 1, + "exportScope": "Category: Medical Terms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Medical Terms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dolor", + "wordSecond": "dor", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fiebre", + "wordSecond": "febre", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tos", + "wordSecond": "tosse", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "náusea", + "wordSecond": "náusea", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vómito", + "wordSecond": "vômito", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mareo", + "wordSecond": "tontura", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fatiga", + "wordSecond": "fadiga", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hinchazón", + "wordSecond": "inchaço", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sangrado", + "wordSecond": "sangramento", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "moretón", + "wordSecond": "hematoma", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "erupción", + "wordSecond": "erupção", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "picazón", + "wordSecond": "coceira", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estornudo", + "wordSecond": "espirro", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "congestión", + "wordSecond": "congestão", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dolor de cabeza", + "wordSecond": "dor de cabeça", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dolor de garganta", + "wordSecond": "dor de garganta", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dolor de estómago", + "wordSecond": "dor de estômago", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dolor de espalda", + "wordSecond": "dor nas costas", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "presión arterial", + "wordSecond": "pressão arterial", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "latido", + "wordSecond": "batimento", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "respiración", + "wordSecond": "respiração", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pulso", + "wordSecond": "pulso", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "temperatura", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "corazón", + "wordSecond": "coração", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pulmón", + "wordSecond": "pulmão", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hígado", + "wordSecond": "fígado", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "riñón", + "wordSecond": "rim", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estómago", + "wordSecond": "estômago", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "intestino", + "wordSecond": "intestino", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vejiga", + "wordSecond": "bexiga", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hueso", + "wordSecond": "osso", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "músculo", + "wordSecond": "músculo", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "piel", + "wordSecond": "pele", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sangre", + "wordSecond": "sangue", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nervio", + "wordSecond": "nervo", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cerebro", + "wordSecond": "cérebro", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ojo", + "wordSecond": "olho", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "oído", + "wordSecond": "ouvido", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nariz", + "wordSecond": "nariz", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "boca", + "wordSecond": "boca", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "garganta", + "wordSecond": "garganta", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "brazo", + "wordSecond": "braço", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pierna", + "wordSecond": "perna", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mano", + "wordSecond": "mão", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pie", + "wordSecond": "pé", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dedo", + "wordSecond": "dedo", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "diabetes", + "wordSecond": "diabetes", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alergia", + "wordSecond": "alergia", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "infección", + "wordSecond": "infecção", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gripe", + "wordSecond": "gripe", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "resfriado", + "wordSecond": "resfriado", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "asma", + "wordSecond": "asma", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "artritis", + "wordSecond": "artrite", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "úlcera", + "wordSecond": "úlcera", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cáncer", + "wordSecond": "câncer", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hipertensión", + "wordSecond": "hipertensão", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "colesterol", + "wordSecond": "colesterol", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "asma", + "wordSecond": "asma", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fractura", + "wordSecond": "fratura", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "esguince", + "wordSecond": "entorse", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cirugía", + "wordSecond": "cirurgia", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "inyección", + "wordSecond": "injeção", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vacuna", + "wordSecond": "vacina", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "anestesia", + "wordSecond": "anestesia", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sutura", + "wordSecond": "sutura", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "radiografía", + "wordSecond": "radiografia", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "análisis", + "wordSecond": "análise", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "medicamento", + "wordSecond": "medicamento", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "antibiótico", + "wordSecond": "antibiótico", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "analgésico", + "wordSecond": "analgésico", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "antiinflamatorio", + "wordSecond": "anti-inflamatório", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "receta", + "wordSecond": "receita", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dosis", + "wordSecond": "dose", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pastilla", + "wordSecond": "comprimido", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "jarabe", + "wordSecond": "xarope", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hospital", + "wordSecond": "hospital", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "clínica", + "wordSecond": "clínica", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "consultorio", + "wordSecond": "consultório", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "urgencias", + "wordSecond": "emergência", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "enfermera", + "wordSecond": "enfermeira", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "paciente", + "wordSecond": "paciente", + "createdAt": "2026-02-19T15:20:07.095Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_medical_terms_fr_it_B1.json b/output/2026_02_19_medical_terms_fr_it_B1.json new file mode 100644 index 0000000..2958600 --- /dev/null +++ b/output/2026_02_19_medical_terms_fr_it_B1.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:22:29.193Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Medical Terms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Medical Terms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la tête", + "wordSecond": "la testa", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le bras", + "wordSecond": "il braccio", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la jambe", + "wordSecond": "la gamba", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le cœur", + "wordSecond": "il cuore", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le poumon", + "wordSecond": "il polmone", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'estomac", + "wordSecond": "lo stomaco", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le foie", + "wordSecond": "il fegato", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le rein", + "wordSecond": "il rene", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la peau", + "wordSecond": "la pelle", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'os", + "wordSecond": "l'osso", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le muscle", + "wordSecond": "il muscolo", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le nerf", + "wordSecond": "il nervo", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le sang", + "wordSecond": "il sangue", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la fièvre", + "wordSecond": "la febbre", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la douleur", + "wordSecond": "il dolore", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la toux", + "wordSecond": "la tosse", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'éternuement", + "wordSecond": "lo starnuto", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le mal de tête", + "wordSecond": "il mal di testa", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le mal de gorge", + "wordSecond": "il mal di gola", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le vertige", + "wordSecond": "le vertigini", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la nausée", + "wordSecond": "la nausea", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le vomissement", + "wordSecond": "il vomito", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la diarrhée", + "wordSecond": "la diarrea", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la constipation", + "wordSecond": "la stitichezza", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la fatigue", + "wordSecond": "la stanchezza", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'enflure", + "wordSecond": "il gonfiore", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la rougeur", + "wordSecond": "il rossore", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la démangeaison", + "wordSecond": "il prurito", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'ecchymose", + "wordSecond": "l'ematoma", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la coupure", + "wordSecond": "il taglio", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la brûlure", + "wordSecond": "la bruciatura", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la fracture", + "wordSecond": "la frattura", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'entorse", + "wordSecond": "la distorsione", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'infection", + "wordSecond": "l'infezione", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'inflammation", + "wordSecond": "l'infiammazione", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'allergie", + "wordSecond": "l'allergia", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'asthme", + "wordSecond": "l'asma", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le diabète", + "wordSecond": "il diabete", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'hypertension", + "wordSecond": "l'ipertensione", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le rhume", + "wordSecond": "il raffreddore", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la grippe", + "wordSecond": "l'influenza", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la pneumonie", + "wordSecond": "la polmonite", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la migraine", + "wordSecond": "l'emicrania", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'ulcère", + "wordSecond": "l'ulcera", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'arthrite", + "wordSecond": "l'artrite", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le cancer", + "wordSecond": "il cancro", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'AVC", + "wordSecond": "l'ictus", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la crise cardiaque", + "wordSecond": "l'infarto", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'antibiotique", + "wordSecond": "l'antibiotico", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'analgésique", + "wordSecond": "l'analgesico", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'anti-inflammatoire", + "wordSecond": "l'antinfiammatorio", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'antihistaminique", + "wordSecond": "l'antistaminico", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'insuline", + "wordSecond": "l'insulina", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le vaccin", + "wordSecond": "il vaccino", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la pilule", + "wordSecond": "la pillola", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le sirop", + "wordSecond": "lo sciroppo", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la crème", + "wordSecond": "la crema", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le pansement", + "wordSecond": "la benda", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'opération", + "wordSecond": "l'operazione", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la chirurgie", + "wordSecond": "la chirurgia", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la suture", + "wordSecond": "la sutura", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le scanner", + "wordSecond": "la TAC", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la radiographie", + "wordSecond": "la radiografia", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'échographie", + "wordSecond": "l'ecografia", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le test sanguin", + "wordSecond": "l'esame del sangue", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la pression artérielle", + "wordSecond": "la pressione sanguigna", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le pouls", + "wordSecond": "il polso", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la température", + "wordSecond": "la temperatura", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'hôpital", + "wordSecond": "l'ospedale", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le médecin", + "wordSecond": "il medico", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'infirmier", + "wordSecond": "l'infermiere", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le patient", + "wordSecond": "il paziente", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la pharmacie", + "wordSecond": "la farmacia", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'ordonnance", + "wordSecond": "la ricetta", + "createdAt": "2026-02-19T15:22:29.193Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_medical_terms_pt_de_B1.json b/output/2026_02_19_medical_terms_pt_de_B1.json new file mode 100644 index 0000000..c16b581 --- /dev/null +++ b/output/2026_02_19_medical_terms_pt_de_B1.json @@ -0,0 +1,1020 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:21:10.031Z", + "metadata": { + "itemCount": 77, + "categoryCount": 1, + "exportScope": "Category: Medical Terms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Medical Terms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dor de cabeça", + "wordSecond": "Kopfschmerzen", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "náusea", + "wordSecond": "Übelkeit", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "inchaço", + "wordSecond": "Schwellung", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "febre", + "wordSecond": "Fieber", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tosse", + "wordSecond": "Husten", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dor", + "wordSecond": "Schmerz", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fraqueza", + "wordSecond": "Schwäche", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tontura", + "wordSecond": "Schwindel", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fadiga", + "wordSecond": "Müdigkeit", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "erupção cutânea", + "wordSecond": "Hautausschlag", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "coceira", + "wordSecond": "Juckreiz", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sangramento", + "wordSecond": "Blutung", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "contusão", + "wordSecond": "Prellung", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ferida", + "wordSecond": "Wunde", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fratura", + "wordSecond": "Fraktur", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "entorse", + "wordSecond": "Verstauchung", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "diabetes", + "wordSecond": "Diabetes", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "alergia", + "wordSecond": "Allergie", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "infecção", + "wordSecond": "Infektion", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "gripe", + "wordSecond": "Grippe", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "resfriado", + "wordSecond": "Erkältung", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "asma", + "wordSecond": "Asthma", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pressão alta", + "wordSecond": "Bluthochdruck", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "artrite", + "wordSecond": "Arthritis", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "úlcera", + "wordSecond": "Geschwür", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "câncer", + "wordSecond": "Krebs", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ataque cardíaco", + "wordSecond": "Herzinfarkt", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "derrame", + "wordSecond": "Schlaganfall", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pulmão", + "wordSecond": "Lunge", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "coração", + "wordSecond": "Herz", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fígado", + "wordSecond": "Leber", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "rins", + "wordSecond": "Nieren", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "estômago", + "wordSecond": "Magen", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "intestino", + "wordSecond": "Darm", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pele", + "wordSecond": "Haut", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ossos", + "wordSecond": "Knochen", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "músculos", + "wordSecond": "Muskeln", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sangue", + "wordSecond": "Blut", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cérebro", + "wordSecond": "Gehirn", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "olhos", + "wordSecond": "Augen", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ouvidos", + "wordSecond": "Ohren", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nariz", + "wordSecond": "Nase", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "garganta", + "wordSecond": "Hals", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dentes", + "wordSecond": "Zähne", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "antibiótico", + "wordSecond": "Antibiotikum", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "analgésico", + "wordSecond": "Schmerzmittel", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "anti-inflamatório", + "wordSecond": "Entzündungshemmer", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "antitérmico", + "wordSecond": "Fiebersenker", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vacina", + "wordSecond": "Impfstoff", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "insulina", + "wordSecond": "Insulin", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "comprimido", + "wordSecond": "Tablette", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "xarope", + "wordSecond": "Sirup", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pomada", + "wordSecond": "Salbe", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "injeção", + "wordSecond": "Spritze", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cirurgia", + "wordSecond": "Operation", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "raio-X", + "wordSecond": "Röntgen", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "exame de sangue", + "wordSecond": "Bluttest", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ressonância magnética", + "wordSecond": "Kernspintomographie", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ultrassom", + "wordSecond": "Ultraschall", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "endoscopia", + "wordSecond": "Endoskopie", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "biópsia", + "wordSecond": "Biopsie", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sutura", + "wordSecond": "Naht", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "gesso", + "wordSecond": "Gips", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "curativo", + "wordSecond": "Verband", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "muleta", + "wordSecond": "Krücke", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cadeira de rodas", + "wordSecond": "Rollstuhl", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ambulância", + "wordSecond": "Krankenwagen", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "hospital", + "wordSecond": "Krankenhaus", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "clínica", + "wordSecond": "Klinik", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "consultório", + "wordSecond": "Praxis", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "médico", + "wordSecond": "Arzt", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "enfermeira", + "wordSecond": "Krankenschwester", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "paciente", + "wordSecond": "Patient", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "receita", + "wordSecond": "Rezept", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "diagnóstico", + "wordSecond": "Diagnose", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tratamento", + "wordSecond": "Behandlung", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "recuperação", + "wordSecond": "Erholung", + "createdAt": "2026-02-19T15:21:10.031Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_medical_terms_pt_fr_B1.json b/output/2026_02_19_medical_terms_pt_fr_B1.json new file mode 100644 index 0000000..c1a9679 --- /dev/null +++ b/output/2026_02_19_medical_terms_pt_fr_B1.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:21:25.084Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Medical Terms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Medical Terms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dor", + "wordSecond": "douleur", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "febre", + "wordSecond": "fièvre", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tosse", + "wordSecond": "toux", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "gripe", + "wordSecond": "grippe", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "resfriado", + "wordSecond": "rhume", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "alergia", + "wordSecond": "allergie", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "asma", + "wordSecond": "asthme", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "diabetes", + "wordSecond": "diabète", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pressão alta", + "wordSecond": "hypertension", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "coração", + "wordSecond": "cœur", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pulmão", + "wordSecond": "poumon", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fígado", + "wordSecond": "foie", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "rim", + "wordSecond": "rein", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estômago", + "wordSecond": "estomac", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "intestino", + "wordSecond": "intestin", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pele", + "wordSecond": "peau", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "osso", + "wordSecond": "os", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "músculo", + "wordSecond": "muscle", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sangue", + "wordSecond": "sang", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dor de cabeça", + "wordSecond": "mal de tête", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "náusea", + "wordSecond": "nausée", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vômito", + "wordSecond": "vomissement", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "diarreia", + "wordSecond": "diarrhée", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "constipação", + "wordSecond": "constipation", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "inchaço", + "wordSecond": "gonflement", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "erupção", + "wordSecond": "éruption", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "coceira", + "wordSecond": "démangeaison", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fadiga", + "wordSecond": "fatigue", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tontura", + "wordSecond": "vertige", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fraqueza", + "wordSecond": "faiblesse", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "infecção", + "wordSecond": "infection", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "inflamação", + "wordSecond": "inflammation", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ferida", + "wordSecond": "blessure", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cicatriz", + "wordSecond": "cicatrice", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sutura", + "wordSecond": "suture", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cirurgia", + "wordSecond": "chirurgie", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "raio-X", + "wordSecond": "radiographie", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "exame", + "wordSecond": "examen", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "análise", + "wordSecond": "analyse", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sintoma", + "wordSecond": "symptôme", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "diagnóstico", + "wordSecond": "diagnostic", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tratamento", + "wordSecond": "traitement", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "medicamento", + "wordSecond": "médicament", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "antibiótico", + "wordSecond": "antibiotique", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "analgésico", + "wordSecond": "analgésique", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "anti-inflamatório", + "wordSecond": "anti-inflammatoire", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vacina", + "wordSecond": "vaccin", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "injeção", + "wordSecond": "injection", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "comprimido", + "wordSecond": "comprimé", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "xarope", + "wordSecond": "sirop", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pomada", + "wordSecond": "pommade", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "curativo", + "wordSecond": "pansement", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "atadura", + "wordSecond": "bandage", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "gesso", + "wordSecond": "plâtre", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "muleta", + "wordSecond": "béquille", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cadeira de rodas", + "wordSecond": "fauteuil roulant", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ambulância", + "wordSecond": "ambulance", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "hospital", + "wordSecond": "hôpital", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "clínica", + "wordSecond": "clinique", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "consultório", + "wordSecond": "cabinet", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "enfermeiro", + "wordSecond": "infirmier", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "médico", + "wordSecond": "médecin", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dentista", + "wordSecond": "dentiste", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pediatra", + "wordSecond": "pédiatre", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cardiologista", + "wordSecond": "cardiologue", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dermatologista", + "wordSecond": "dermatologue", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "oftalmologista", + "wordSecond": "ophtalmologue", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "otorrinolaringologista", + "wordSecond": "ORL", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ginecologista", + "wordSecond": "gynécologue", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "urologista", + "wordSecond": "urologue", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "psiquiatra", + "wordSecond": "psychiatre", + "createdAt": "2026-02-19T15:21:25.084Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_medical_terms_pt_it_B1.json b/output/2026_02_19_medical_terms_pt_it_B1.json new file mode 100644 index 0000000..9b6a46c --- /dev/null +++ b/output/2026_02_19_medical_terms_pt_it_B1.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:21:40.831Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Medical Terms" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Medical Terms" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dor", + "wordSecond": "dolore", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "febre", + "wordSecond": "febbre", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tosse", + "wordSecond": "tosse", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "náusea", + "wordSecond": "nausea", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vômito", + "wordSecond": "vomito", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "diarreia", + "wordSecond": "diarrea", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "constipação", + "wordSecond": "stipsi", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dor de cabeça", + "wordSecond": "mal di testa", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tontura", + "wordSecond": "vertigine", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fraqueza", + "wordSecond": "debolezza", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fadiga", + "wordSecond": "fatica", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "inchaço", + "wordSecond": "gonfiore", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sangramento", + "wordSecond": "sanguinamento", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "coágulo", + "wordSecond": "coagulo", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "infecção", + "wordSecond": "infezione", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "alergia", + "wordSecond": "allergia", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "asma", + "wordSecond": "asma", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "diabetes", + "wordSecond": "diabete", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "hipertensão", + "wordSecond": "ipertensione", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "artrite", + "wordSecond": "artrite", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "câncer", + "wordSecond": "cancro", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gripe", + "wordSecond": "influenza", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "resfriado", + "wordSecond": "raffreddore", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pulmão", + "wordSecond": "polmone", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "coração", + "wordSecond": "cuore", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fígado", + "wordSecond": "fegato", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "rim", + "wordSecond": "rene", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estômago", + "wordSecond": "stomaco", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "intestino", + "wordSecond": "intestino", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pele", + "wordSecond": "pelle", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "osso", + "wordSecond": "osso", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "músculo", + "wordSecond": "muscolo", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sangue", + "wordSecond": "sangue", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pressão arterial", + "wordSecond": "pressione arteriosa", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "batimento cardíaco", + "wordSecond": "battito cardiaco", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "temperatura", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "respiração", + "wordSecond": "respirazione", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cirurgia", + "wordSecond": "chirurgia", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "raio-X", + "wordSecond": "raggi X", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "exame de sangue", + "wordSecond": "esame del sangue", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "urina", + "wordSecond": "urina", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "medicamento", + "wordSecond": "medicinale", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "antibiótico", + "wordSecond": "antibiotico", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "analgésico", + "wordSecond": "antidolorifico", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "anti-inflamatório", + "wordSecond": "antinfiammatorio", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vacina", + "wordSecond": "vaccino", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dose", + "wordSecond": "dose", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "comprimido", + "wordSecond": "compressa", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cápsula", + "wordSecond": "capsula", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "xarope", + "wordSecond": "sciroppo", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "injeção", + "wordSecond": "iniezione", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "curativo", + "wordSecond": "benda", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "atadura", + "wordSecond": "fascia", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gesso", + "wordSecond": "gesso", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "médico", + "wordSecond": "medico", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "enfermeiro", + "wordSecond": "infermiere", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "paciente", + "wordSecond": "paziente", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "consulta", + "wordSecond": "visita", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "emergência", + "wordSecond": "emergenza", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ambulância", + "wordSecond": "ambulanza", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "hospital", + "wordSecond": "ospedale", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "clínica", + "wordSecond": "clinica", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "farmácia", + "wordSecond": "farmacia", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "receita", + "wordSecond": "ricetta", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sintoma", + "wordSecond": "sintomo", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "diagnóstico", + "wordSecond": "diagnosi", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tratamento", + "wordSecond": "trattamento", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "recuperação", + "wordSecond": "recupero", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dor nas costas", + "wordSecond": "mal di schiena", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dor de garganta", + "wordSecond": "mal di gola", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fratura", + "wordSecond": "frattura", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ferida", + "wordSecond": "ferita", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "queimadura", + "wordSecond": "ustione", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "picada", + "wordSecond": "puntura", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "envenenamento", + "wordSecond": "avvelenamento", + "createdAt": "2026-02-19T15:21:40.831Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_de_fr_A1.json b/output/2026_02_19_numbers_time_de_fr_A1.json new file mode 100644 index 0000000..682d2f6 --- /dev/null +++ b/output/2026_02_19_numbers_time_de_fr_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:58:03.554Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "eins", + "wordSecond": "un", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "zwei", + "wordSecond": "deux", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "drei", + "wordSecond": "trois", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "vier", + "wordSecond": "quatre", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "fünf", + "wordSecond": "cinq", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "sechs", + "wordSecond": "six", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "sieben", + "wordSecond": "sept", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "acht", + "wordSecond": "huit", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "neun", + "wordSecond": "neuf", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "zehn", + "wordSecond": "dix", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "elf", + "wordSecond": "onze", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "zwölf", + "wordSecond": "douze", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "dreizehn", + "wordSecond": "treize", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "vierzehn", + "wordSecond": "quatorze", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "fünfzehn", + "wordSecond": "quinze", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "sechzehn", + "wordSecond": "seize", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "siebzehn", + "wordSecond": "dix-sept", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "achtzehn", + "wordSecond": "dix-huit", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "neunzehn", + "wordSecond": "dix-neuf", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "zwanzig", + "wordSecond": "vingt", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "dreißig", + "wordSecond": "trente", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "vierzig", + "wordSecond": "quarante", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "fünfzig", + "wordSecond": "cinquante", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "hundert", + "wordSecond": "cent", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "tausend", + "wordSecond": "mille", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "erste", + "wordSecond": "premier", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "zweite", + "wordSecond": "deuxième", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "dritte", + "wordSecond": "troisième", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Montag", + "wordSecond": "lundi", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Dienstag", + "wordSecond": "mardi", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Mittwoch", + "wordSecond": "mercredi", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Donnerstag", + "wordSecond": "jeudi", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Freitag", + "wordSecond": "vendredi", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Samstag", + "wordSecond": "samedi", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Sonntag", + "wordSecond": "dimanche", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Januar", + "wordSecond": "janvier", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Februar", + "wordSecond": "février", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "März", + "wordSecond": "mars", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "April", + "wordSecond": "avril", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Mai", + "wordSecond": "mai", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Juni", + "wordSecond": "juin", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Juli", + "wordSecond": "juillet", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "August", + "wordSecond": "août", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "September", + "wordSecond": "septembre", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Oktober", + "wordSecond": "octobre", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "November", + "wordSecond": "novembre", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Dezember", + "wordSecond": "décembre", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Frühling", + "wordSecond": "printemps", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Sommer", + "wordSecond": "été", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Herbst", + "wordSecond": "automne", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Winter", + "wordSecond": "hiver", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Morgen", + "wordSecond": "matin", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Nachmittag", + "wordSecond": "après-midi", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Abend", + "wordSecond": "soir", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Nacht", + "wordSecond": "nuit", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Stunde", + "wordSecond": "heure", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Minute", + "wordSecond": "minute", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "heute", + "wordSecond": "aujourd'hui", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "morgen", + "wordSecond": "demain", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "gestern", + "wordSecond": "hier", + "createdAt": "2026-02-19T12:58:03.554Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_de_it_A1.json b/output/2026_02_19_numbers_time_de_it_A1.json new file mode 100644 index 0000000..16ea682 --- /dev/null +++ b/output/2026_02_19_numbers_time_de_it_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:58:14.904Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "eins", + "wordSecond": "uno", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zwei", + "wordSecond": "due", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "drei", + "wordSecond": "tre", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "vier", + "wordSecond": "quattro", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "fünf", + "wordSecond": "cinque", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "sechs", + "wordSecond": "sei", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "sieben", + "wordSecond": "sette", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "acht", + "wordSecond": "otto", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "neun", + "wordSecond": "nove", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zehn", + "wordSecond": "dieci", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "elf", + "wordSecond": "undici", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zwölf", + "wordSecond": "dodici", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "dreizehn", + "wordSecond": "tredici", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "vierzehn", + "wordSecond": "quattordici", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "fünfzehn", + "wordSecond": "quindici", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "sechzehn", + "wordSecond": "sedici", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "siebzehn", + "wordSecond": "diciassette", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "achtzehn", + "wordSecond": "diciotto", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "neunzehn", + "wordSecond": "diciannove", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zwanzig", + "wordSecond": "venti", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "dreißig", + "wordSecond": "trenta", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "vierzig", + "wordSecond": "quaranta", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "fünfzig", + "wordSecond": "cinquanta", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "hundert", + "wordSecond": "cento", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "tausend", + "wordSecond": "mille", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "erste", + "wordSecond": "primo", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zweite", + "wordSecond": "secondo", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "dritte", + "wordSecond": "terzo", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "vierte", + "wordSecond": "quarto", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "fünfte", + "wordSecond": "quinto", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Montag", + "wordSecond": "lunedì", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Dienstag", + "wordSecond": "martedì", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mittwoch", + "wordSecond": "mercoledì", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Donnerstag", + "wordSecond": "giovedì", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Freitag", + "wordSecond": "venerdì", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Samstag", + "wordSecond": "sabato", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sonntag", + "wordSecond": "domenica", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Januar", + "wordSecond": "gennaio", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Februar", + "wordSecond": "febbraio", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "März", + "wordSecond": "marzo", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "April", + "wordSecond": "aprile", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mai", + "wordSecond": "maggio", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Juni", + "wordSecond": "giugno", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Juli", + "wordSecond": "luglio", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "August", + "wordSecond": "agosto", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "September", + "wordSecond": "settembre", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Oktober", + "wordSecond": "ottobre", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "November", + "wordSecond": "novembre", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Dezember", + "wordSecond": "dicembre", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Frühling", + "wordSecond": "primavera", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sommer", + "wordSecond": "estate", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Herbst", + "wordSecond": "autunno", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Winter", + "wordSecond": "inverno", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Morgen", + "wordSecond": "mattina", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nachmittag", + "wordSecond": "pomeriggio", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Abend", + "wordSecond": "sera", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Stunde", + "wordSecond": "ora", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Minute", + "wordSecond": "minuto", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "heute", + "wordSecond": "oggi", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "morgen", + "wordSecond": "domani", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "gestern", + "wordSecond": "ieri", + "createdAt": "2026-02-19T12:58:14.904Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_de_ja_A1.json b/output/2026_02_19_numbers_time_de_ja_A1.json new file mode 100644 index 0000000..55bd933 --- /dev/null +++ b/output/2026_02_19_numbers_time_de_ja_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:58:36.279Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "eins", + "wordSecond": "一 (いち, ichi)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "zwei", + "wordSecond": "二 (に, ni)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "drei", + "wordSecond": "三 (さん, san)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "vier", + "wordSecond": "四 (し/よん, shi/yon)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "fünf", + "wordSecond": "五 (ご, go)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "sechs", + "wordSecond": "六 (ろく, roku)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "sieben", + "wordSecond": "七 (しち/なな, shichi/nana)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "acht", + "wordSecond": "八 (はち, hachi)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "neun", + "wordSecond": "九 (きゅう/く, kyū/ku)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "zehn", + "wordSecond": "十 (じゅう, jū)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "elf", + "wordSecond": "十一 (じゅういち, jū ichi)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "zwölf", + "wordSecond": "十二 (じゅうに, jū ni)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "dreizehn", + "wordSecond": "十三 (じゅうさん, jū san)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "vierzehn", + "wordSecond": "十四 (じゅうし/じゅうよん, jū shi/jū yon)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "fünfzehn", + "wordSecond": "十五 (じゅうご, jū go)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "sechzehn", + "wordSecond": "十六 (じゅうろく, jū roku)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "siebzehn", + "wordSecond": "十七 (じゅうしち/じゅうなな, jū shichi/jū nana)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "achtzehn", + "wordSecond": "十八 (じゅうはち, jū hachi)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "neunzehn", + "wordSecond": "十九 (じゅうきゅう/じゅうく, jū kyū/jū ku)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "zwanzig", + "wordSecond": "二十 (にじゅう, ni jū)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "dreißig", + "wordSecond": "三十 (さんじゅう, san jū)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "vierzig", + "wordSecond": "四十 (よんじゅう, yon jū)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "fünfzig", + "wordSecond": "五十 (ごじゅう, go jū)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "hundert", + "wordSecond": "百 (ひゃく, hyaku)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "tausend", + "wordSecond": "千 (せん, sen)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "erste", + "wordSecond": "一番目 (いちばんめ, ichiban-me)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "zweite", + "wordSecond": "二番目 (にばんめ, niban-me)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "dritte", + "wordSecond": "三番目 (さんばんめ, sanban-me)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Montag", + "wordSecond": "月曜日 (げつようび, getsuyōbi)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Dienstag", + "wordSecond": "火曜日 (かようび, kayōbi)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Mittwoch", + "wordSecond": "水曜日 (すいようび, suiyōbi)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Donnerstag", + "wordSecond": "木曜日 (もくようび, mokuyōbi)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Freitag", + "wordSecond": "金曜日 (きんようび, kinyōbi)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Samstag", + "wordSecond": "土曜日 (どようび, doyōbi)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Sonntag", + "wordSecond": "日曜日 (にちようび, nichiyōbi)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Januar", + "wordSecond": "一月 (いちがつ, ichigatsu)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Februar", + "wordSecond": "二月 (にがつ, nigatsu)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "März", + "wordSecond": "三月 (さんがつ, sangatsu)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "April", + "wordSecond": "四月 (しがつ, shigatsu)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Mai", + "wordSecond": "五月 (ごがつ, gogatsu)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Juni", + "wordSecond": "六月 (ろくがつ, rokugatsu)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Juli", + "wordSecond": "七月 (しちがつ, shichigatsu)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "August", + "wordSecond": "八月 (はちがつ, hachigatsu)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "September", + "wordSecond": "九月 (くがつ, kugatsu)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Oktober", + "wordSecond": "十月 (じゅうがつ, jūgatsu)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "November", + "wordSecond": "十一月 (じゅういちがつ, jūichigatsu)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Dezember", + "wordSecond": "十二月 (じゅうにがつ, jūnigatsu)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Frühling", + "wordSecond": "春 (はる, haru)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Sommer", + "wordSecond": "夏 (なつ, natsu)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Herbst", + "wordSecond": "秋 (あき, aki)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Winter", + "wordSecond": "冬 (ふゆ, fuyu)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Morgen", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Nachmittag", + "wordSecond": "午後 (ごご, gogo)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Abend", + "wordSecond": "夕方/晩 (ゆうがた/ばん, yūgata/ban)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Nacht", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Stunde", + "wordSecond": "時間 (じかん, jikan)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Minute", + "wordSecond": "分 (ふん/ぷん, fun/pun)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "heute", + "wordSecond": "今日 (きょう, kyō)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "morgen", + "wordSecond": "明日 (あした/あす, ashita/asu)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "gestern", + "wordSecond": "昨日 (きのう, kinō)", + "createdAt": "2026-02-19T12:58:36.279Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_de_ko_A1.json b/output/2026_02_19_numbers_time_de_ko_A1.json new file mode 100644 index 0000000..a14e5cb --- /dev/null +++ b/output/2026_02_19_numbers_time_de_ko_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:59:10.121Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "eins", + "wordSecond": "하나 (hana)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "zwei", + "wordSecond": "둘 (dul)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "drei", + "wordSecond": "셋 (set)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "vier", + "wordSecond": "넷 (net)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "fünf", + "wordSecond": "다섯 (daseot)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "sechs", + "wordSecond": "여섯 (yeoseot)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "sieben", + "wordSecond": "일곱 (ilgop)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "acht", + "wordSecond": "여덟 (yeodeol)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "neun", + "wordSecond": "아홉 (ahop)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "zehn", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "elf", + "wordSecond": "열하나 (yeolhana)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "zwölf", + "wordSecond": "열둘 (yeoldul)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "dreizehn", + "wordSecond": "열셋 (yeolset)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "vierzehn", + "wordSecond": "열넷 (yeolnet)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "fünfzehn", + "wordSecond": "열다섯 (yeoldaseot)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "sechzehn", + "wordSecond": "열여섯 (yeoryeoseot)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "siebzehn", + "wordSecond": "열일곱 (yeorilgop)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "achtzehn", + "wordSecond": "열여덟 (yeoryeodeol)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "neunzehn", + "wordSecond": "열아홉 (yeorahop)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "zwanzig", + "wordSecond": "스물 (seumul)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "dreißig", + "wordSecond": "서른 (seoreun)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "vierzig", + "wordSecond": "마흔 (maheun)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "fünfzig", + "wordSecond": "쉰 (swin)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "hundert", + "wordSecond": "백 (baek)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "tausend", + "wordSecond": "천 (cheon)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "erste", + "wordSecond": "첫 번째 (cheot beonjjae)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "zweite", + "wordSecond": "두 번째 (du beonjjae)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "dritte", + "wordSecond": "세 번째 (se beonjjae)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Montag", + "wordSecond": "월요일 (woryoil)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Dienstag", + "wordSecond": "화요일 (hwayoil)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Mittwoch", + "wordSecond": "수요일 (suyoil)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Donnerstag", + "wordSecond": "목요일 (mogyoil)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Freitag", + "wordSecond": "금요일 (geumyoil)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Samstag", + "wordSecond": "토요일 (toyoil)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Sonntag", + "wordSecond": "일요일 (iryoil)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Januar", + "wordSecond": "1월 (irwol)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Februar", + "wordSecond": "2월 (iwol)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "März", + "wordSecond": "3월 (samwol)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "April", + "wordSecond": "4월 (sawol)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Mai", + "wordSecond": "5월 (owol)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Juni", + "wordSecond": "6월 (yuwol)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Juli", + "wordSecond": "7월 (chirwol)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "August", + "wordSecond": "8월 (parwol)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "September", + "wordSecond": "9월 (guwol)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Oktober", + "wordSecond": "10월 (siwol)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "November", + "wordSecond": "11월 (sibirwol)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Dezember", + "wordSecond": "12월 (sibiwol)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Frühling", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Sommer", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Herbst", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Winter", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Morgen", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Nachmittag", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Abend", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Nacht", + "wordSecond": "밤 (bam)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Stunde", + "wordSecond": "시간 (sigan)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Minute", + "wordSecond": "분 (bun)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Sekunde", + "wordSecond": "초 (cho)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "heute", + "wordSecond": "오늘 (oneul)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "morgen", + "wordSecond": "내일 (naeil)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "gestern", + "wordSecond": "어제 (eoje)", + "createdAt": "2026-02-19T12:59:10.121Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_de_pl_A1.json b/output/2026_02_19_numbers_time_de_pl_A1.json new file mode 100644 index 0000000..64f85b7 --- /dev/null +++ b/output/2026_02_19_numbers_time_de_pl_A1.json @@ -0,0 +1,877 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:59:24.125Z", + "metadata": { + "itemCount": 66, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "eins", + "wordSecond": "jeden", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zwei", + "wordSecond": "dwa", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "drei", + "wordSecond": "trzy", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "vier", + "wordSecond": "cztery", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "fünf", + "wordSecond": "pięć", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "sechs", + "wordSecond": "sześć", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "sieben", + "wordSecond": "siedem", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "acht", + "wordSecond": "osiem", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "neun", + "wordSecond": "dziewięć", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zehn", + "wordSecond": "dziesięć", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "elf", + "wordSecond": "jedenaście", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zwölf", + "wordSecond": "dwanaście", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "dreizehn", + "wordSecond": "trzynaście", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "vierzehn", + "wordSecond": "czternaście", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "fünfzehn", + "wordSecond": "piętnaście", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "sechzehn", + "wordSecond": "szesnaście", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "siebzehn", + "wordSecond": "siedemnaście", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "achtzehn", + "wordSecond": "osiemnaście", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "neunzehn", + "wordSecond": "dziewiętnaście", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zwanzig", + "wordSecond": "dwadzieścia", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "dreißig", + "wordSecond": "trzydzieści", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "vierzig", + "wordSecond": "czterdzieści", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "fünfzig", + "wordSecond": "pięćdziesiąt", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "hundert", + "wordSecond": "sto", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "tausend", + "wordSecond": "tysiąc", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "erste", + "wordSecond": "pierwszy", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zweite", + "wordSecond": "drugi", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "dritte", + "wordSecond": "trzeci", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "vierte", + "wordSecond": "czwarty", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "fünfte", + "wordSecond": "piąty", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "sechste", + "wordSecond": "szósty", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "siebte", + "wordSecond": "siódmy", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "achte", + "wordSecond": "ósmy", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "neunte", + "wordSecond": "dziewiąty", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zehnte", + "wordSecond": "dziesiąty", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Montag", + "wordSecond": "poniedziałek", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Dienstag", + "wordSecond": "wtorek", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Mittwoch", + "wordSecond": "środa", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Donnerstag", + "wordSecond": "czwartek", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Freitag", + "wordSecond": "piątek", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Samstag", + "wordSecond": "sobota", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Sonntag", + "wordSecond": "niedziela", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Januar", + "wordSecond": "styczeń", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Februar", + "wordSecond": "luty", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "März", + "wordSecond": "marzec", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "April", + "wordSecond": "kwiecień", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Mai", + "wordSecond": "maj", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Juni", + "wordSecond": "czerwiec", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Juli", + "wordSecond": "lipiec", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "August", + "wordSecond": "sierpień", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "September", + "wordSecond": "wrzesień", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Oktober", + "wordSecond": "październik", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "November", + "wordSecond": "listopad", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Dezember", + "wordSecond": "grudzień", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Frühling", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Sommer", + "wordSecond": "lato", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Herbst", + "wordSecond": "jesień", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Winter", + "wordSecond": "zima", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Morgen", + "wordSecond": "rano", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Nachmittag", + "wordSecond": "popołudnie", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Abend", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Stunde", + "wordSecond": "godzina", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Minute", + "wordSecond": "minuta", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "heute", + "wordSecond": "dzisiaj", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "morgen", + "wordSecond": "jutro", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "gestern", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T12:59:24.125Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_de_zh_A1.json b/output/2026_02_19_numbers_time_de_zh_A1.json new file mode 100644 index 0000000..f9167a6 --- /dev/null +++ b/output/2026_02_19_numbers_time_de_zh_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:58:53.189Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "eins", + "wordSecond": "一 (yī)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "zwei", + "wordSecond": "二 (èr)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "drei", + "wordSecond": "三 (sān)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "vier", + "wordSecond": "四 (sì)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "fünf", + "wordSecond": "五 (wǔ)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "sechs", + "wordSecond": "六 (liù)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "sieben", + "wordSecond": "七 (qī)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "acht", + "wordSecond": "八 (bā)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "neun", + "wordSecond": "九 (jiǔ)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "zehn", + "wordSecond": "十 (shí)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "elf", + "wordSecond": "十一 (shíyī)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "zwölf", + "wordSecond": "十二 (shí'èr)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "dreizehn", + "wordSecond": "十三 (shísān)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "vierzehn", + "wordSecond": "十四 (shísì)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "fünfzehn", + "wordSecond": "十五 (shíwǔ)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "sechzehn", + "wordSecond": "十六 (shíliù)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "siebzehn", + "wordSecond": "十七 (shíqī)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "achtzehn", + "wordSecond": "十八 (shíbā)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "neunzehn", + "wordSecond": "十九 (shíjiǔ)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "zwanzig", + "wordSecond": "二十 (èrshí)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "dreißig", + "wordSecond": "三十 (sānshí)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "vierzig", + "wordSecond": "四十 (sìshí)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "fünfzig", + "wordSecond": "五十 (wǔshí)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "hundert", + "wordSecond": "一百 (yībǎi)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "tausend", + "wordSecond": "一千 (yīqiān)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "erste", + "wordSecond": "第一 (dìyī)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "zweite", + "wordSecond": "第二 (dì'èr)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "dritte", + "wordSecond": "第三 (dìsān)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Montag", + "wordSecond": "星期一 (xīngqīyī)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Dienstag", + "wordSecond": "星期二 (xīngqī'èr)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Mittwoch", + "wordSecond": "星期三 (xīngqīsān)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Donnerstag", + "wordSecond": "星期四 (xīngqīsì)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Freitag", + "wordSecond": "星期五 (xīngqīwǔ)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Samstag", + "wordSecond": "星期六 (xīngqīliù)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Sonntag", + "wordSecond": "星期日 (xīngqīrì)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Januar", + "wordSecond": "一月 (yīyuè)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Februar", + "wordSecond": "二月 (èryuè)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "März", + "wordSecond": "三月 (sānyuè)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "April", + "wordSecond": "四月 (sìyuè)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Mai", + "wordSecond": "五月 (wǔyuè)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Juni", + "wordSecond": "六月 (liùyuè)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Juli", + "wordSecond": "七月 (qīyuè)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "August", + "wordSecond": "八月 (bāyuè)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "September", + "wordSecond": "九月 (jiǔyuè)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Oktober", + "wordSecond": "十月 (shíyuè)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "November", + "wordSecond": "十一月 (shíyīyuè)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Dezember", + "wordSecond": "十二月 (shí'èryuè)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Frühling", + "wordSecond": "春天 (chūntiān)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Sommer", + "wordSecond": "夏天 (xiàtiān)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Herbst", + "wordSecond": "秋天 (qiūtiān)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Winter", + "wordSecond": "冬天 (dōngtiān)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Morgen", + "wordSecond": "早上 (zǎoshang)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Vormittag", + "wordSecond": "上午 (shàngwǔ)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Nachmittag", + "wordSecond": "下午 (xiàwǔ)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Abend", + "wordSecond": "晚上 (wǎnshang)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Nacht", + "wordSecond": "晚上/夜里 (wǎnshang/yèlǐ)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Stunde", + "wordSecond": "小时 (xiǎoshí)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Minute", + "wordSecond": "分钟 (fēnzhōng)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "heute", + "wordSecond": "今天 (jīntiān)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "morgen", + "wordSecond": "明天 (míngtiān)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "gestern", + "wordSecond": "昨天 (zuótiān)", + "createdAt": "2026-02-19T12:58:53.189Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_en_de_A1.json b/output/2026_02_19_numbers_time_en_de_A1.json new file mode 100644 index 0000000..40487d6 --- /dev/null +++ b/output/2026_02_19_numbers_time_en_de_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:52:54.673Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "one", + "wordSecond": "eins", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "two", + "wordSecond": "zwei", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "three", + "wordSecond": "drei", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "four", + "wordSecond": "vier", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "five", + "wordSecond": "fünf", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "six", + "wordSecond": "sechs", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "seven", + "wordSecond": "sieben", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "eight", + "wordSecond": "acht", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "nine", + "wordSecond": "neun", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ten", + "wordSecond": "zehn", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "eleven", + "wordSecond": "elf", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "twelve", + "wordSecond": "zwölf", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "thirteen", + "wordSecond": "dreizehn", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fourteen", + "wordSecond": "vierzehn", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fifteen", + "wordSecond": "fünfzehn", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sixteen", + "wordSecond": "sechzehn", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "seventeen", + "wordSecond": "siebzehn", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "eighteen", + "wordSecond": "achtzehn", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "nineteen", + "wordSecond": "neunzehn", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "twenty", + "wordSecond": "zwanzig", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "thirty", + "wordSecond": "dreißig", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "forty", + "wordSecond": "vierzig", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fifty", + "wordSecond": "fünfzig", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "one hundred", + "wordSecond": "hundert", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "one thousand", + "wordSecond": "tausend", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "first", + "wordSecond": "erste", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "second", + "wordSecond": "zweite", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "third", + "wordSecond": "dritte", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fourth", + "wordSecond": "vierte", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fifth", + "wordSecond": "fünfte", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "Monday", + "wordSecond": "Montag", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "Tuesday", + "wordSecond": "Dienstag", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "Wednesday", + "wordSecond": "Mittwoch", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "Thursday", + "wordSecond": "Donnerstag", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "Friday", + "wordSecond": "Freitag", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "Saturday", + "wordSecond": "Samstag", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "Sunday", + "wordSecond": "Sonntag", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "January", + "wordSecond": "Januar", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "February", + "wordSecond": "Februar", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "March", + "wordSecond": "März", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "April", + "wordSecond": "April", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "May", + "wordSecond": "Mai", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "June", + "wordSecond": "Juni", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "July", + "wordSecond": "Juli", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "August", + "wordSecond": "August", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "September", + "wordSecond": "September", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "October", + "wordSecond": "Oktober", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "November", + "wordSecond": "November", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "December", + "wordSecond": "Dezember", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "spring", + "wordSecond": "Frühling", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "summer", + "wordSecond": "Sommer", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "autumn", + "wordSecond": "Herbst", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "winter", + "wordSecond": "Winter", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "morning", + "wordSecond": "Morgen", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "afternoon", + "wordSecond": "Nachmittag", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "evening", + "wordSecond": "Abend", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hour", + "wordSecond": "Stunde", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "minute", + "wordSecond": "Minute", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "today", + "wordSecond": "heute", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tomorrow", + "wordSecond": "morgen", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "yesterday", + "wordSecond": "gestern", + "createdAt": "2026-02-19T12:52:54.673Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_en_es_A1.json b/output/2026_02_19_numbers_time_en_es_A1.json new file mode 100644 index 0000000..e3a8dd6 --- /dev/null +++ b/output/2026_02_19_numbers_time_en_es_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:52:34.256Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "one", + "wordSecond": "uno", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "two", + "wordSecond": "dos", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "three", + "wordSecond": "tres", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "four", + "wordSecond": "cuatro", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "five", + "wordSecond": "cinco", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "six", + "wordSecond": "seis", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "seven", + "wordSecond": "siete", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "eight", + "wordSecond": "ocho", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nine", + "wordSecond": "nueve", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ten", + "wordSecond": "diez", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "eleven", + "wordSecond": "once", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "twelve", + "wordSecond": "doce", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "thirteen", + "wordSecond": "trece", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fourteen", + "wordSecond": "catorce", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fifteen", + "wordSecond": "quince", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sixteen", + "wordSecond": "dieciséis", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "seventeen", + "wordSecond": "diecisiete", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "eighteen", + "wordSecond": "dieciocho", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nineteen", + "wordSecond": "diecinueve", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "twenty", + "wordSecond": "veinte", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "thirty", + "wordSecond": "treinta", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "forty", + "wordSecond": "cuarenta", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fifty", + "wordSecond": "cincuenta", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "one hundred", + "wordSecond": "cien", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "one thousand", + "wordSecond": "mil", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "first", + "wordSecond": "primero", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "second", + "wordSecond": "segundo", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "third", + "wordSecond": "tercero", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fourth", + "wordSecond": "cuarto", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fifth", + "wordSecond": "quinto", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Monday", + "wordSecond": "lunes", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Tuesday", + "wordSecond": "martes", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Wednesday", + "wordSecond": "miércoles", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Thursday", + "wordSecond": "jueves", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Friday", + "wordSecond": "viernes", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Saturday", + "wordSecond": "sábado", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "Sunday", + "wordSecond": "domingo", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "January", + "wordSecond": "enero", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "February", + "wordSecond": "febrero", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "March", + "wordSecond": "marzo", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "April", + "wordSecond": "abril", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "May", + "wordSecond": "mayo", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "June", + "wordSecond": "junio", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "July", + "wordSecond": "julio", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "August", + "wordSecond": "agosto", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "September", + "wordSecond": "septiembre", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "October", + "wordSecond": "octubre", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "November", + "wordSecond": "noviembre", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "December", + "wordSecond": "diciembre", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "spring", + "wordSecond": "primavera", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "summer", + "wordSecond": "verano", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "autumn", + "wordSecond": "otoño", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "winter", + "wordSecond": "invierno", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "morning", + "wordSecond": "mañana", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "afternoon", + "wordSecond": "tarde", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "evening", + "wordSecond": "noche", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hour", + "wordSecond": "hora", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "minute", + "wordSecond": "minuto", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "today", + "wordSecond": "hoy", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tomorrow", + "wordSecond": "mañana", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "yesterday", + "wordSecond": "ayer", + "createdAt": "2026-02-19T12:52:34.256Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_en_fr_A1.json b/output/2026_02_19_numbers_time_en_fr_A1.json new file mode 100644 index 0000000..c1c3343 --- /dev/null +++ b/output/2026_02_19_numbers_time_en_fr_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:53:04.773Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "one", + "wordSecond": "un", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "two", + "wordSecond": "deux", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "three", + "wordSecond": "trois", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "four", + "wordSecond": "quatre", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "five", + "wordSecond": "cinq", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "six", + "wordSecond": "six", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "seven", + "wordSecond": "sept", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "eight", + "wordSecond": "huit", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "nine", + "wordSecond": "neuf", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ten", + "wordSecond": "dix", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "eleven", + "wordSecond": "onze", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "twelve", + "wordSecond": "douze", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "thirteen", + "wordSecond": "treize", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fourteen", + "wordSecond": "quatorze", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fifteen", + "wordSecond": "quinze", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sixteen", + "wordSecond": "seize", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "seventeen", + "wordSecond": "dix-sept", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "eighteen", + "wordSecond": "dix-huit", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "nineteen", + "wordSecond": "dix-neuf", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "twenty", + "wordSecond": "vingt", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "thirty", + "wordSecond": "trente", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "forty", + "wordSecond": "quarante", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fifty", + "wordSecond": "cinquante", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "one hundred", + "wordSecond": "cent", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "one thousand", + "wordSecond": "mille", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "first", + "wordSecond": "premier", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "second", + "wordSecond": "deuxième", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "third", + "wordSecond": "troisième", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Monday", + "wordSecond": "lundi", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Tuesday", + "wordSecond": "mardi", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Wednesday", + "wordSecond": "mercredi", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Thursday", + "wordSecond": "jeudi", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Friday", + "wordSecond": "vendredi", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Saturday", + "wordSecond": "samedi", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Sunday", + "wordSecond": "dimanche", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "January", + "wordSecond": "janvier", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "February", + "wordSecond": "février", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "March", + "wordSecond": "mars", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "April", + "wordSecond": "avril", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "May", + "wordSecond": "mai", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "June", + "wordSecond": "juin", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "July", + "wordSecond": "juillet", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "August", + "wordSecond": "août", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "September", + "wordSecond": "septembre", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "October", + "wordSecond": "octobre", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "November", + "wordSecond": "novembre", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "December", + "wordSecond": "décembre", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "spring", + "wordSecond": "printemps", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "summer", + "wordSecond": "été", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "autumn", + "wordSecond": "automne", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "winter", + "wordSecond": "hiver", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "morning", + "wordSecond": "matin", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "afternoon", + "wordSecond": "après-midi", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "evening", + "wordSecond": "soir", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "night", + "wordSecond": "nuit", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hour", + "wordSecond": "heure", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "minute", + "wordSecond": "minute", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "today", + "wordSecond": "aujourd'hui", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tomorrow", + "wordSecond": "demain", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "yesterday", + "wordSecond": "hier", + "createdAt": "2026-02-19T12:53:04.773Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_en_it_A1.json b/output/2026_02_19_numbers_time_en_it_A1.json new file mode 100644 index 0000000..d053e66 --- /dev/null +++ b/output/2026_02_19_numbers_time_en_it_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:53:15.174Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "one", + "wordSecond": "uno", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "two", + "wordSecond": "due", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "three", + "wordSecond": "tre", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "four", + "wordSecond": "quattro", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "five", + "wordSecond": "cinque", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "six", + "wordSecond": "sei", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "seven", + "wordSecond": "sette", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "eight", + "wordSecond": "otto", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "nine", + "wordSecond": "nove", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ten", + "wordSecond": "dieci", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "eleven", + "wordSecond": "undici", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "twelve", + "wordSecond": "dodici", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "thirteen", + "wordSecond": "tredici", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fourteen", + "wordSecond": "quattordici", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fifteen", + "wordSecond": "quindici", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sixteen", + "wordSecond": "sedici", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "seventeen", + "wordSecond": "diciassette", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "eighteen", + "wordSecond": "diciotto", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "nineteen", + "wordSecond": "diciannove", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "twenty", + "wordSecond": "venti", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "thirty", + "wordSecond": "trenta", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "forty", + "wordSecond": "quaranta", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fifty", + "wordSecond": "cinquanta", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "one hundred", + "wordSecond": "cento", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "one thousand", + "wordSecond": "mille", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "first", + "wordSecond": "primo", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "second", + "wordSecond": "secondo", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "third", + "wordSecond": "terzo", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fourth", + "wordSecond": "quarto", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fifth", + "wordSecond": "quinto", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Monday", + "wordSecond": "lunedì", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Tuesday", + "wordSecond": "martedì", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Wednesday", + "wordSecond": "mercoledì", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Thursday", + "wordSecond": "giovedì", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Friday", + "wordSecond": "venerdì", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Saturday", + "wordSecond": "sabato", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Sunday", + "wordSecond": "domenica", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "January", + "wordSecond": "gennaio", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "February", + "wordSecond": "febbraio", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "March", + "wordSecond": "marzo", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "April", + "wordSecond": "aprile", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "May", + "wordSecond": "maggio", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "June", + "wordSecond": "giugno", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "July", + "wordSecond": "luglio", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "August", + "wordSecond": "agosto", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "September", + "wordSecond": "settembre", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "October", + "wordSecond": "ottobre", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "November", + "wordSecond": "novembre", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "December", + "wordSecond": "dicembre", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "spring", + "wordSecond": "primavera", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "summer", + "wordSecond": "estate", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "autumn", + "wordSecond": "autunno", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "winter", + "wordSecond": "inverno", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "morning", + "wordSecond": "mattina", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "afternoon", + "wordSecond": "pomeriggio", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "evening", + "wordSecond": "sera", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hour", + "wordSecond": "ora", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "minute", + "wordSecond": "minuto", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "today", + "wordSecond": "oggi", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tomorrow", + "wordSecond": "domani", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "yesterday", + "wordSecond": "ieri", + "createdAt": "2026-02-19T12:53:15.174Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_en_ja_A1.json b/output/2026_02_19_numbers_time_en_ja_A1.json new file mode 100644 index 0000000..ba2fcd8 --- /dev/null +++ b/output/2026_02_19_numbers_time_en_ja_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:53:34.447Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "one", + "wordSecond": "一 (いち, ichi)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "two", + "wordSecond": "二 (に, ni)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "three", + "wordSecond": "三 (さん, san)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "four", + "wordSecond": "四 (し/よん, shi/yon)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "five", + "wordSecond": "五 (ご, go)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "six", + "wordSecond": "六 (ろく, roku)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "seven", + "wordSecond": "七 (しち/なな, shichi/nana)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "eight", + "wordSecond": "八 (はち, hachi)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "nine", + "wordSecond": "九 (く/きゅう, ku/kyū)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "ten", + "wordSecond": "十 (じゅう, jū)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "eleven", + "wordSecond": "十一 (じゅういち, jūichi)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "twelve", + "wordSecond": "十二 (じゅうに, jūni)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "thirteen", + "wordSecond": "十三 (じゅうさん, jūsan)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "fourteen", + "wordSecond": "十四 (じゅうし/じゅうよん, jūshi/jūyon)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "fifteen", + "wordSecond": "十五 (じゅうご, jūgo)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sixteen", + "wordSecond": "十六 (じゅうろく, jūroku)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "seventeen", + "wordSecond": "十七 (じゅうしち/じゅうなな, jūshichi/jūnana)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "eighteen", + "wordSecond": "十八 (じゅうはち, jūhachi)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "nineteen", + "wordSecond": "十九 (じゅうく/じゅうきゅう, jūku/jūkyū)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "twenty", + "wordSecond": "二十 (にじゅう, nijū)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "thirty", + "wordSecond": "三十 (さんじゅう, sanjū)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "forty", + "wordSecond": "四十 (よんじゅう, yonjū)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "fifty", + "wordSecond": "五十 (ごじゅう, gojū)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "one hundred", + "wordSecond": "百 (ひゃく, hyaku)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "one thousand", + "wordSecond": "千 (せん, sen)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "first", + "wordSecond": "一番目 (いちばんめ, ichibanme)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "second", + "wordSecond": "二番目 (にばんめ, nibanme)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "third", + "wordSecond": "三番目 (さんばんめ, sanbanme)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Monday", + "wordSecond": "月曜日 (げつようび, getsuyōbi)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Tuesday", + "wordSecond": "火曜日 (かようび, kayōbi)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Wednesday", + "wordSecond": "水曜日 (すいようび, suiyōbi)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Thursday", + "wordSecond": "木曜日 (もくようび, mokuyōbi)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Friday", + "wordSecond": "金曜日 (きんようび, kinyōbi)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Saturday", + "wordSecond": "土曜日 (どようび, doyōbi)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "Sunday", + "wordSecond": "日曜日 (にちようび, nichiyōbi)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "January", + "wordSecond": "一月 (いちがつ, ichigatsu)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "February", + "wordSecond": "二月 (にがつ, nigatsu)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "March", + "wordSecond": "三月 (さんがつ, sangatsu)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "April", + "wordSecond": "四月 (しがつ, shigatsu)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "May", + "wordSecond": "五月 (ごがつ, gogatsu)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "June", + "wordSecond": "六月 (ろくがつ, rokugatsu)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "July", + "wordSecond": "七月 (しちがつ, shichigatsu)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "August", + "wordSecond": "八月 (はちがつ, hachigatsu)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "September", + "wordSecond": "九月 (くがつ, kugatsu)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "October", + "wordSecond": "十月 (じゅうがつ, jūgatsu)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "November", + "wordSecond": "十一月 (じゅういちがつ, jūichigatsu)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "December", + "wordSecond": "十二月 (じゅうにがつ, jūnigatsu)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "spring", + "wordSecond": "春 (はる, haru)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "summer", + "wordSecond": "夏 (なつ, natsu)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "autumn", + "wordSecond": "秋 (あき, aki)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "winter", + "wordSecond": "冬 (ふゆ, fuyu)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "morning", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "afternoon", + "wordSecond": "午後 (ごご, gogo)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "evening", + "wordSecond": "夕方 (ゆうがた, yūgata)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "night", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hour", + "wordSecond": "時間 (じかん, jikan)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "minute", + "wordSecond": "分 (ふん, fun)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "today", + "wordSecond": "今日 (きょう, kyō)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "tomorrow", + "wordSecond": "明日 (あした, ashita)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "yesterday", + "wordSecond": "昨日 (きのう, kinō)", + "createdAt": "2026-02-19T12:53:34.447Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_en_ko_A1.json b/output/2026_02_19_numbers_time_en_ko_A1.json new file mode 100644 index 0000000..ef5d6fb --- /dev/null +++ b/output/2026_02_19_numbers_time_en_ko_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:54:05.451Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "one", + "wordSecond": "하나 (hana)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "two", + "wordSecond": "둘 (dul)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "three", + "wordSecond": "셋 (set)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "four", + "wordSecond": "넷 (net)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "five", + "wordSecond": "다섯 (daseot)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "six", + "wordSecond": "여섯 (yeoseot)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "seven", + "wordSecond": "일곱 (ilgop)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "eight", + "wordSecond": "여덟 (yeodeol)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "nine", + "wordSecond": "아홉 (ahop)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "ten", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "eleven", + "wordSecond": "열하나 (yeolhana)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "twelve", + "wordSecond": "열둘 (yeoldul)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "thirteen", + "wordSecond": "열셋 (yeolset)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "fourteen", + "wordSecond": "열넷 (yeolnet)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "fifteen", + "wordSecond": "열다섯 (yeoldaseot)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sixteen", + "wordSecond": "열여섯 (yeolyeoseot)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "seventeen", + "wordSecond": "열일곱 (yeolilgop)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "eighteen", + "wordSecond": "열여덟 (yeolyeodeol)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "nineteen", + "wordSecond": "열아홉 (yeolahop)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "twenty", + "wordSecond": "스물 (seumul)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "thirty", + "wordSecond": "서른 (seoreun)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "forty", + "wordSecond": "마흔 (maheun)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "fifty", + "wordSecond": "쉰 (swin)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "one hundred", + "wordSecond": "백 (baek)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "one thousand", + "wordSecond": "천 (cheon)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "first", + "wordSecond": "첫 번째 (cheot beonjjae)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "second", + "wordSecond": "두 번째 (du beonjjae)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "third", + "wordSecond": "세 번째 (se beonjjae)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Monday", + "wordSecond": "월요일 (wolyoil)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Tuesday", + "wordSecond": "화요일 (hwayoil)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Wednesday", + "wordSecond": "수요일 (suyoil)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Thursday", + "wordSecond": "목요일 (mogyoil)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Friday", + "wordSecond": "금요일 (geumyoil)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Saturday", + "wordSecond": "토요일 (toyoil)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "Sunday", + "wordSecond": "일요일 (iryoil)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "January", + "wordSecond": "1월 (irwol)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "February", + "wordSecond": "2월 (iwol)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "March", + "wordSecond": "3월 (samwol)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "April", + "wordSecond": "4월 (sawol)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "May", + "wordSecond": "5월 (owol)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "June", + "wordSecond": "6월 (yuwol)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "July", + "wordSecond": "7월 (chirwol)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "August", + "wordSecond": "8월 (parwol)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "September", + "wordSecond": "9월 (guwol)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "October", + "wordSecond": "10월 (siwol)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "November", + "wordSecond": "11월 (sibirwol)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "December", + "wordSecond": "12월 (sibiwol)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "spring", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "summer", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "autumn", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "winter", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "morning", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "afternoon", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "evening", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "night", + "wordSecond": "밤 (bam)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "hour", + "wordSecond": "시간 (sigan)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "minute", + "wordSecond": "분 (bun)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "today", + "wordSecond": "오늘 (oneul)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "tomorrow", + "wordSecond": "내일 (naeil)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "yesterday", + "wordSecond": "어제 (eoje)", + "createdAt": "2026-02-19T12:54:05.451Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_en_pl_A1.json b/output/2026_02_19_numbers_time_en_pl_A1.json new file mode 100644 index 0000000..fa2abfc --- /dev/null +++ b/output/2026_02_19_numbers_time_en_pl_A1.json @@ -0,0 +1,825 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:54:17.609Z", + "metadata": { + "itemCount": 62, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "one", + "wordSecond": "jeden", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "two", + "wordSecond": "dwa", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "three", + "wordSecond": "trzy", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "four", + "wordSecond": "cztery", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "five", + "wordSecond": "pięć", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "six", + "wordSecond": "sześć", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "seven", + "wordSecond": "siedem", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "eight", + "wordSecond": "osiem", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "nine", + "wordSecond": "dziewięć", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "ten", + "wordSecond": "dziesięć", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "eleven", + "wordSecond": "jedenaście", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "twelve", + "wordSecond": "dwanaście", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "thirteen", + "wordSecond": "trzynaście", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fourteen", + "wordSecond": "czternaście", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fifteen", + "wordSecond": "piętnaście", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sixteen", + "wordSecond": "szesnaście", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "seventeen", + "wordSecond": "siedemnaście", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "eighteen", + "wordSecond": "osiemnaście", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "nineteen", + "wordSecond": "dziewiętnaście", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "twenty", + "wordSecond": "dwadzieścia", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "thirty", + "wordSecond": "trzydzieści", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "forty", + "wordSecond": "czterdzieści", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fifty", + "wordSecond": "pięćdziesiąt", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "one hundred", + "wordSecond": "sto", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "one thousand", + "wordSecond": "tysiąc", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "first", + "wordSecond": "pierwszy", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "second", + "wordSecond": "drugi", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "third", + "wordSecond": "trzeci", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fourth", + "wordSecond": "czwarty", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fifth", + "wordSecond": "piąty", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Monday", + "wordSecond": "poniedziałek", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Tuesday", + "wordSecond": "wtorek", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Wednesday", + "wordSecond": "środa", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Thursday", + "wordSecond": "czwartek", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Friday", + "wordSecond": "piątek", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Saturday", + "wordSecond": "sobota", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "Sunday", + "wordSecond": "niedziela", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "January", + "wordSecond": "styczeń", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "February", + "wordSecond": "luty", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "March", + "wordSecond": "marzec", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "April", + "wordSecond": "kwiecień", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "May", + "wordSecond": "maj", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "June", + "wordSecond": "czerwiec", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "July", + "wordSecond": "lipiec", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "August", + "wordSecond": "sierpień", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "September", + "wordSecond": "wrzesień", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "October", + "wordSecond": "październik", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "November", + "wordSecond": "listopad", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "December", + "wordSecond": "grudzień", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "spring", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "summer", + "wordSecond": "lato", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "autumn", + "wordSecond": "jesień", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "winter", + "wordSecond": "zima", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "morning", + "wordSecond": "rano", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "afternoon", + "wordSecond": "popołudnie", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "evening", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "night", + "wordSecond": "noc", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "hour", + "wordSecond": "godzina", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "minute", + "wordSecond": "minuta", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "today", + "wordSecond": "dzisiaj", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "tomorrow", + "wordSecond": "jutro", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "yesterday", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T12:54:17.609Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_en_pt_A1.json b/output/2026_02_19_numbers_time_en_pt_A1.json new file mode 100644 index 0000000..c192036 --- /dev/null +++ b/output/2026_02_19_numbers_time_en_pt_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:52:44.334Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "one", + "wordSecond": "um", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "two", + "wordSecond": "dois", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "three", + "wordSecond": "três", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "four", + "wordSecond": "quatro", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "five", + "wordSecond": "cinco", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "six", + "wordSecond": "seis", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "seven", + "wordSecond": "sete", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "eight", + "wordSecond": "oito", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "nine", + "wordSecond": "nove", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ten", + "wordSecond": "dez", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "eleven", + "wordSecond": "onze", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "twelve", + "wordSecond": "doze", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "thirteen", + "wordSecond": "treze", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fourteen", + "wordSecond": "catorze", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fifteen", + "wordSecond": "quinze", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sixteen", + "wordSecond": "dezesseis", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "seventeen", + "wordSecond": "dezessete", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "eighteen", + "wordSecond": "dezoito", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "nineteen", + "wordSecond": "dezenove", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "twenty", + "wordSecond": "vinte", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "thirty", + "wordSecond": "trinta", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "forty", + "wordSecond": "quarenta", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fifty", + "wordSecond": "cinquenta", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "one hundred", + "wordSecond": "cem", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "one thousand", + "wordSecond": "mil", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "first", + "wordSecond": "primeiro", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "second", + "wordSecond": "segundo", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "third", + "wordSecond": "terceiro", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fourth", + "wordSecond": "quarto", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fifth", + "wordSecond": "quinto", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Monday", + "wordSecond": "segunda-feira", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Tuesday", + "wordSecond": "terça-feira", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Wednesday", + "wordSecond": "quarta-feira", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Thursday", + "wordSecond": "quinta-feira", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Friday", + "wordSecond": "sexta-feira", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Saturday", + "wordSecond": "sábado", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Sunday", + "wordSecond": "domingo", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "January", + "wordSecond": "janeiro", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "February", + "wordSecond": "fevereiro", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "March", + "wordSecond": "março", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "April", + "wordSecond": "abril", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "May", + "wordSecond": "maio", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "June", + "wordSecond": "junho", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "July", + "wordSecond": "julho", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "August", + "wordSecond": "agosto", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "September", + "wordSecond": "setembro", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "October", + "wordSecond": "outubro", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "November", + "wordSecond": "novembro", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "December", + "wordSecond": "dezembro", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "spring", + "wordSecond": "primavera", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "summer", + "wordSecond": "verão", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "autumn", + "wordSecond": "outono", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "winter", + "wordSecond": "inverno", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "morning", + "wordSecond": "manhã", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "afternoon", + "wordSecond": "tarde", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "evening", + "wordSecond": "noite", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hour", + "wordSecond": "hora", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "minute", + "wordSecond": "minuto", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "today", + "wordSecond": "hoje", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tomorrow", + "wordSecond": "amanhã", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "yesterday", + "wordSecond": "ontem", + "createdAt": "2026-02-19T12:52:44.334Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_en_zh_A1.json b/output/2026_02_19_numbers_time_en_zh_A1.json new file mode 100644 index 0000000..87b3a31 --- /dev/null +++ b/output/2026_02_19_numbers_time_en_zh_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:53:50.073Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "one", + "wordSecond": "一 (yī)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "two", + "wordSecond": "二 (èr)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "three", + "wordSecond": "三 (sān)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "four", + "wordSecond": "四 (sì)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "five", + "wordSecond": "五 (wǔ)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "six", + "wordSecond": "六 (liù)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "seven", + "wordSecond": "七 (qī)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "eight", + "wordSecond": "八 (bā)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "nine", + "wordSecond": "九 (jiǔ)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "ten", + "wordSecond": "十 (shí)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "eleven", + "wordSecond": "十一 (shíyī)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "twelve", + "wordSecond": "十二 (shí'èr)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "thirteen", + "wordSecond": "十三 (shísān)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "fourteen", + "wordSecond": "十四 (shísì)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "fifteen", + "wordSecond": "十五 (shíwǔ)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sixteen", + "wordSecond": "十六 (shíliù)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "seventeen", + "wordSecond": "十七 (shíqī)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "eighteen", + "wordSecond": "十八 (shíbā)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "nineteen", + "wordSecond": "十九 (shíjiǔ)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "twenty", + "wordSecond": "二十 (èrshí)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "thirty", + "wordSecond": "三十 (sānshí)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "forty", + "wordSecond": "四十 (sìshí)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "fifty", + "wordSecond": "五十 (wǔshí)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "one hundred", + "wordSecond": "一百 (yībǎi)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "one thousand", + "wordSecond": "一千 (yīqiān)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "first", + "wordSecond": "第一 (dì yī)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "second", + "wordSecond": "第二 (dì èr)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "third", + "wordSecond": "第三 (dì sān)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Monday", + "wordSecond": "星期一 (xīngqīyī)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Tuesday", + "wordSecond": "星期二 (xīngqī'èr)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Wednesday", + "wordSecond": "星期三 (xīngqīsān)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Thursday", + "wordSecond": "星期四 (xīngqīsì)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Friday", + "wordSecond": "星期五 (xīngqīwǔ)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Saturday", + "wordSecond": "星期六 (xīngqīliù)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "Sunday", + "wordSecond": "星期日 (xīngqīrì)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "January", + "wordSecond": "一月 (yī yuè)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "February", + "wordSecond": "二月 (èr yuè)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "March", + "wordSecond": "三月 (sān yuè)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "April", + "wordSecond": "四月 (sì yuè)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "May", + "wordSecond": "五月 (wǔ yuè)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "June", + "wordSecond": "六月 (liù yuè)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "July", + "wordSecond": "七月 (qī yuè)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "August", + "wordSecond": "八月 (bā yuè)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "September", + "wordSecond": "九月 (jiǔ yuè)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "October", + "wordSecond": "十月 (shí yuè)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "November", + "wordSecond": "十一月 (shíyī yuè)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "December", + "wordSecond": "十二月 (shí'èr yuè)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "spring", + "wordSecond": "春天 (chūntiān)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "summer", + "wordSecond": "夏天 (xiàtiān)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "autumn", + "wordSecond": "秋天 (qiūtiān)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "winter", + "wordSecond": "冬天 (dōngtiān)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "morning", + "wordSecond": "早上 (zǎoshang)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "afternoon", + "wordSecond": "下午 (xiàwǔ)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "evening", + "wordSecond": "晚上 (wǎnshang)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "night", + "wordSecond": "晚上 (wǎnshang)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hour", + "wordSecond": "小时 (xiǎoshí)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "minute", + "wordSecond": "分钟 (fēnzhōng)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "today", + "wordSecond": "今天 (jīntiān)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "tomorrow", + "wordSecond": "明天 (míngtiān)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "yesterday", + "wordSecond": "昨天 (zuótiān)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "time", + "wordSecond": "时间 (shíjiān)", + "createdAt": "2026-02-19T12:53:50.073Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_es_de_A1.json b/output/2026_02_19_numbers_time_es_de_A1.json new file mode 100644 index 0000000..5c5a7c8 --- /dev/null +++ b/output/2026_02_19_numbers_time_es_de_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:54:40.051Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "uno", + "wordSecond": "eins", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dos", + "wordSecond": "zwei", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tres", + "wordSecond": "drei", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cuatro", + "wordSecond": "vier", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cinco", + "wordSecond": "fünf", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "seis", + "wordSecond": "sechs", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "siete", + "wordSecond": "sieben", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ocho", + "wordSecond": "acht", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "nueve", + "wordSecond": "neun", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "diez", + "wordSecond": "zehn", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "once", + "wordSecond": "elf", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "doce", + "wordSecond": "zwölf", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "trece", + "wordSecond": "dreizehn", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "catorce", + "wordSecond": "vierzehn", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "quince", + "wordSecond": "fünfzehn", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dieciséis", + "wordSecond": "sechzehn", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "diecisiete", + "wordSecond": "siebzehn", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dieciocho", + "wordSecond": "achtzehn", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "diecinueve", + "wordSecond": "neunzehn", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "veinte", + "wordSecond": "zwanzig", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "treinta", + "wordSecond": "dreißig", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cuarenta", + "wordSecond": "vierzig", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cincuenta", + "wordSecond": "fünfzig", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cien", + "wordSecond": "hundert", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mil", + "wordSecond": "tausend", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "primero", + "wordSecond": "erste", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "segundo", + "wordSecond": "zweite", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tercero", + "wordSecond": "dritte", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cuarto", + "wordSecond": "vierte", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "quinto", + "wordSecond": "fünfte", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lunes", + "wordSecond": "Montag", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "martes", + "wordSecond": "Dienstag", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "miércoles", + "wordSecond": "Mittwoch", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "jueves", + "wordSecond": "Donnerstag", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "viernes", + "wordSecond": "Freitag", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sábado", + "wordSecond": "Samstag", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "domingo", + "wordSecond": "Sonntag", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "enero", + "wordSecond": "Januar", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "febrero", + "wordSecond": "Februar", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "marzo", + "wordSecond": "März", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "abril", + "wordSecond": "April", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mayo", + "wordSecond": "Mai", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "junio", + "wordSecond": "Juni", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "julio", + "wordSecond": "Juli", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "agosto", + "wordSecond": "August", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "septiembre", + "wordSecond": "September", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "octubre", + "wordSecond": "Oktober", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "noviembre", + "wordSecond": "November", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "diciembre", + "wordSecond": "Dezember", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "primavera", + "wordSecond": "Frühling", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "verano", + "wordSecond": "Sommer", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "otoño", + "wordSecond": "Herbst", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "invierno", + "wordSecond": "Winter", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mañana", + "wordSecond": "Morgen", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tarde", + "wordSecond": "Nachmittag", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "noche", + "wordSecond": "Abend", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hora", + "wordSecond": "Stunde", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "minuto", + "wordSecond": "Minute", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hoy", + "wordSecond": "heute", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mañana", + "wordSecond": "morgen", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ayer", + "wordSecond": "gestern", + "createdAt": "2026-02-19T12:54:40.051Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_es_fr_A1.json b/output/2026_02_19_numbers_time_es_fr_A1.json new file mode 100644 index 0000000..b425572 --- /dev/null +++ b/output/2026_02_19_numbers_time_es_fr_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:54:51.693Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "uno", + "wordSecond": "un", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dos", + "wordSecond": "deux", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tres", + "wordSecond": "trois", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cuatro", + "wordSecond": "quatre", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cinco", + "wordSecond": "cinq", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "seis", + "wordSecond": "six", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "siete", + "wordSecond": "sept", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ocho", + "wordSecond": "huit", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nueve", + "wordSecond": "neuf", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "diez", + "wordSecond": "dix", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "once", + "wordSecond": "onze", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "doce", + "wordSecond": "douze", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "trece", + "wordSecond": "treize", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "catorce", + "wordSecond": "quatorze", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "quince", + "wordSecond": "quinze", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dieciséis", + "wordSecond": "seize", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "diecisiete", + "wordSecond": "dix-sept", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dieciocho", + "wordSecond": "dix-huit", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "diecinueve", + "wordSecond": "dix-neuf", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "veinte", + "wordSecond": "vingt", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "treinta", + "wordSecond": "trente", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cuarenta", + "wordSecond": "quarante", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cincuenta", + "wordSecond": "cinquante", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cien", + "wordSecond": "cent", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mil", + "wordSecond": "mille", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "primero", + "wordSecond": "premier", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "segundo", + "wordSecond": "deuxième", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tercero", + "wordSecond": "troisième", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cuarto", + "wordSecond": "quatrième", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "quinto", + "wordSecond": "cinquième", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lunes", + "wordSecond": "lundi", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "martes", + "wordSecond": "mardi", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "miércoles", + "wordSecond": "mercredi", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "jueves", + "wordSecond": "jeudi", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "viernes", + "wordSecond": "vendredi", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sábado", + "wordSecond": "samedi", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "domingo", + "wordSecond": "dimanche", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "enero", + "wordSecond": "janvier", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "febrero", + "wordSecond": "février", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "marzo", + "wordSecond": "mars", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "abril", + "wordSecond": "avril", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mayo", + "wordSecond": "mai", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "junio", + "wordSecond": "juin", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "julio", + "wordSecond": "juillet", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "agosto", + "wordSecond": "août", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "septiembre", + "wordSecond": "septembre", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "octubre", + "wordSecond": "octobre", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "noviembre", + "wordSecond": "novembre", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "diciembre", + "wordSecond": "décembre", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "primavera", + "wordSecond": "printemps", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "verano", + "wordSecond": "été", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "otoño", + "wordSecond": "automne", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "invierno", + "wordSecond": "hiver", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mañana", + "wordSecond": "matin", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tarde", + "wordSecond": "après-midi", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "noche", + "wordSecond": "soir", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hora", + "wordSecond": "heure", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "minuto", + "wordSecond": "minute", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hoy", + "wordSecond": "aujourd'hui", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mañana", + "wordSecond": "demain", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ayer", + "wordSecond": "hier", + "createdAt": "2026-02-19T12:54:51.693Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_es_it_A1.json b/output/2026_02_19_numbers_time_es_it_A1.json new file mode 100644 index 0000000..5415dd7 --- /dev/null +++ b/output/2026_02_19_numbers_time_es_it_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:55:03.042Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "uno", + "wordSecond": "uno", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dos", + "wordSecond": "due", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tres", + "wordSecond": "tre", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cuatro", + "wordSecond": "quattro", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cinco", + "wordSecond": "cinque", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "seis", + "wordSecond": "sei", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "siete", + "wordSecond": "sette", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ocho", + "wordSecond": "otto", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nueve", + "wordSecond": "nove", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "diez", + "wordSecond": "dieci", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "once", + "wordSecond": "undici", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "doce", + "wordSecond": "dodici", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "trece", + "wordSecond": "tredici", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "catorce", + "wordSecond": "quattordici", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "quince", + "wordSecond": "quindici", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dieciséis", + "wordSecond": "sedici", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "diecisiete", + "wordSecond": "diciassette", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dieciocho", + "wordSecond": "diciotto", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "diecinueve", + "wordSecond": "diciannove", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "veinte", + "wordSecond": "venti", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "treinta", + "wordSecond": "trenta", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cuarenta", + "wordSecond": "quaranta", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cincuenta", + "wordSecond": "cinquanta", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cien", + "wordSecond": "cento", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mil", + "wordSecond": "mille", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "primero", + "wordSecond": "primo", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "segundo", + "wordSecond": "secondo", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tercero", + "wordSecond": "terzo", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cuarto", + "wordSecond": "quarto", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "quinto", + "wordSecond": "quinto", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lunes", + "wordSecond": "lunedì", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "martes", + "wordSecond": "martedì", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "miércoles", + "wordSecond": "mercoledì", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "jueves", + "wordSecond": "giovedì", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "viernes", + "wordSecond": "venerdì", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sábado", + "wordSecond": "sabato", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "domingo", + "wordSecond": "domenica", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "enero", + "wordSecond": "gennaio", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "febrero", + "wordSecond": "febbraio", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "marzo", + "wordSecond": "marzo", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "abril", + "wordSecond": "aprile", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mayo", + "wordSecond": "maggio", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "junio", + "wordSecond": "giugno", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "julio", + "wordSecond": "luglio", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "agosto", + "wordSecond": "agosto", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "septiembre", + "wordSecond": "settembre", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "octubre", + "wordSecond": "ottobre", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "noviembre", + "wordSecond": "novembre", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "diciembre", + "wordSecond": "dicembre", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "primavera", + "wordSecond": "primavera", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "verano", + "wordSecond": "estate", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "otoño", + "wordSecond": "autunno", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "invierno", + "wordSecond": "inverno", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mañana", + "wordSecond": "mattina", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tarde", + "wordSecond": "pomeriggio", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "noche", + "wordSecond": "sera", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hora", + "wordSecond": "ora", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "minuto", + "wordSecond": "minuto", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hoy", + "wordSecond": "oggi", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mañana", + "wordSecond": "domani", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ayer", + "wordSecond": "ieri", + "createdAt": "2026-02-19T12:55:03.042Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_es_ja_A1.json b/output/2026_02_19_numbers_time_es_ja_A1.json new file mode 100644 index 0000000..9d6df55 --- /dev/null +++ b/output/2026_02_19_numbers_time_es_ja_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:55:23.371Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "uno", + "wordSecond": "一 (いち, ichi)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dos", + "wordSecond": "二 (に, ni)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tres", + "wordSecond": "三 (さん, san)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cuatro", + "wordSecond": "四 (し/よん, shi/yon)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cinco", + "wordSecond": "五 (ご, go)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "seis", + "wordSecond": "六 (ろく, roku)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "siete", + "wordSecond": "七 (しち/なな, shichi/nana)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ocho", + "wordSecond": "八 (はち, hachi)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "nueve", + "wordSecond": "九 (きゅう/く, kyū/ku)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "diez", + "wordSecond": "十 (じゅう, jū)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "once", + "wordSecond": "十一 (じゅういち, jūichi)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "doce", + "wordSecond": "十二 (じゅうに, jūni)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "trece", + "wordSecond": "十三 (じゅうさん, jūsan)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "catorce", + "wordSecond": "十四 (じゅうし/じゅうよん, jūshi/jūyon)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "quince", + "wordSecond": "十五 (じゅうご, jūgo)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dieciséis", + "wordSecond": "十六 (じゅうろく, jūroku)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "diecisiete", + "wordSecond": "十七 (じゅうしち/じゅうなな, jūshichi/jūnana)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dieciocho", + "wordSecond": "十八 (じゅうはち, jūhachi)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "diecinueve", + "wordSecond": "十九 (じゅうきゅう/じゅうく, jūkyū/jūku)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "veinte", + "wordSecond": "二十 (にじゅう, nijū)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "treinta", + "wordSecond": "三十 (さんじゅう, sanjū)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cuarenta", + "wordSecond": "四十 (よんじゅう, yonjū)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cincuenta", + "wordSecond": "五十 (ごじゅう, gojū)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cien", + "wordSecond": "百 (ひゃく, hyaku)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mil", + "wordSecond": "千 (せん, sen)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "primero", + "wordSecond": "一番目 (いちばんめ, ichibanme)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "segundo", + "wordSecond": "二番目 (にばんめ, nibanme)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tercero", + "wordSecond": "三番目 (さんばんめ, sanbanme)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lunes", + "wordSecond": "月曜日 (げつようび, getsuyōbi)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "martes", + "wordSecond": "火曜日 (かようび, kayōbi)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "miércoles", + "wordSecond": "水曜日 (すいようび, suiyōbi)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "jueves", + "wordSecond": "木曜日 (もくようび, mokuyōbi)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "viernes", + "wordSecond": "金曜日 (きんようび, kinyōbi)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sábado", + "wordSecond": "土曜日 (どようび, doyōbi)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "domingo", + "wordSecond": "日曜日 (にちようび, nichiyōbi)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "enero", + "wordSecond": "一月 (いちがつ, ichigatsu)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "febrero", + "wordSecond": "二月 (にがつ, nigatsu)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "marzo", + "wordSecond": "三月 (さんがつ, sangatsu)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "abril", + "wordSecond": "四月 (しがつ, shigatsu)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mayo", + "wordSecond": "五月 (ごがつ, gogatsu)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "junio", + "wordSecond": "六月 (ろくがつ, rokugatsu)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "julio", + "wordSecond": "七月 (しちがつ, shichigatsu)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "agosto", + "wordSecond": "八月 (はちがつ, hachigatsu)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "septiembre", + "wordSecond": "九月 (くがつ, kugatsu)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "octubre", + "wordSecond": "十月 (じゅうがつ, jūgatsu)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "noviembre", + "wordSecond": "十一月 (じゅういちがつ, jūichigatsu)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "diciembre", + "wordSecond": "十二月 (じゅうにがつ, jūnigatsu)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "primavera", + "wordSecond": "春 (はる, haru)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "verano", + "wordSecond": "夏 (なつ, natsu)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "otoño", + "wordSecond": "秋 (あき, aki)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "invierno", + "wordSecond": "冬 (ふゆ, fuyu)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mañana", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tarde", + "wordSecond": "午後 (ごご, gogo)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "noche", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hora", + "wordSecond": "時間 (じかん, jikan)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "minuto", + "wordSecond": "分 (ふん, fun)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hoy", + "wordSecond": "今日 (きょう, kyō)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mañana", + "wordSecond": "明日 (あした, ashita)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ayer", + "wordSecond": "昨日 (きのう, kinō)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tiempo", + "wordSecond": "時間 (じかん, jikan)", + "createdAt": "2026-02-19T12:55:23.371Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_es_ko_A1.json b/output/2026_02_19_numbers_time_es_ko_A1.json new file mode 100644 index 0000000..72548f5 --- /dev/null +++ b/output/2026_02_19_numbers_time_es_ko_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:55:56.182Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "uno", + "wordSecond": "하나 (hana)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dos", + "wordSecond": "둘 (dul)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tres", + "wordSecond": "셋 (set)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cuatro", + "wordSecond": "넷 (net)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cinco", + "wordSecond": "다섯 (daseot)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "seis", + "wordSecond": "여섯 (yeoseot)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "siete", + "wordSecond": "일곱 (ilgop)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ocho", + "wordSecond": "여덟 (yeodeol)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "nueve", + "wordSecond": "아홉 (ahop)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "diez", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "once", + "wordSecond": "열하나 (yeolhana)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "doce", + "wordSecond": "열둘 (yeoldul)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "trece", + "wordSecond": "열셋 (yeolset)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "catorce", + "wordSecond": "열넷 (yeolnet)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "quince", + "wordSecond": "열다섯 (yeoldaseot)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dieciséis", + "wordSecond": "열여섯 (yeoryeoseot)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "diecisiete", + "wordSecond": "열일곱 (yeorilgop)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dieciocho", + "wordSecond": "열여덟 (yeoryeodeol)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "diecinueve", + "wordSecond": "열아홉 (yeorahop)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "veinte", + "wordSecond": "스물 (seumul)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "treinta", + "wordSecond": "서른 (seoreun)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cuarenta", + "wordSecond": "마흔 (maheun)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cincuenta", + "wordSecond": "쉰 (swin)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cien", + "wordSecond": "백 (baek)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mil", + "wordSecond": "천 (cheon)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "primero", + "wordSecond": "첫 번째 (cheot beonjjae)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "segundo", + "wordSecond": "두 번째 (du beonjjae)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tercero", + "wordSecond": "세 번째 (se beonjjae)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lunes", + "wordSecond": "월요일 (woryoil)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "martes", + "wordSecond": "화요일 (hwayoil)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "miércoles", + "wordSecond": "수요일 (suyoil)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "jueves", + "wordSecond": "목요일 (mogyoil)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "viernes", + "wordSecond": "금요일 (geumyoil)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sábado", + "wordSecond": "토요일 (toyoil)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "domingo", + "wordSecond": "일요일 (iryoil)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "enero", + "wordSecond": "1월 (irwol)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "febrero", + "wordSecond": "2월 (iwol)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "marzo", + "wordSecond": "3월 (samwol)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "abril", + "wordSecond": "4월 (sawol)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mayo", + "wordSecond": "5월 (owol)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "junio", + "wordSecond": "6월 (yuwol)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "julio", + "wordSecond": "7월 (chirwol)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "agosto", + "wordSecond": "8월 (parwol)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "septiembre", + "wordSecond": "9월 (guwol)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "octubre", + "wordSecond": "10월 (siwol)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "noviembre", + "wordSecond": "11월 (sibirwol)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "diciembre", + "wordSecond": "12월 (sibiwol)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "primavera", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "verano", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "otoño", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "invierno", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mañana", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tarde", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "noche", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hora", + "wordSecond": "시간 (sigan)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "minuto", + "wordSecond": "분 (bun)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hoy", + "wordSecond": "오늘 (oneul)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mañana", + "wordSecond": "내일 (naeil)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ayer", + "wordSecond": "어제 (eoje)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tiempo", + "wordSecond": "시간 (sigan)", + "createdAt": "2026-02-19T12:55:56.182Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_es_pl_A1.json b/output/2026_02_19_numbers_time_es_pl_A1.json new file mode 100644 index 0000000..fb2eae5 --- /dev/null +++ b/output/2026_02_19_numbers_time_es_pl_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:56:08.515Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "uno", + "wordSecond": "jeden", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dos", + "wordSecond": "dwa", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tres", + "wordSecond": "trzy", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cuatro", + "wordSecond": "cztery", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cinco", + "wordSecond": "pięć", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "seis", + "wordSecond": "sześć", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "siete", + "wordSecond": "siedem", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ocho", + "wordSecond": "osiem", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "nueve", + "wordSecond": "dziewięć", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "diez", + "wordSecond": "dziesięć", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "once", + "wordSecond": "jedenaście", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "doce", + "wordSecond": "dwanaście", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "trece", + "wordSecond": "trzynaście", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "catorce", + "wordSecond": "czternaście", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "quince", + "wordSecond": "piętnaście", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dieciséis", + "wordSecond": "szesnaście", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "diecisiete", + "wordSecond": "siedemnaście", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dieciocho", + "wordSecond": "osiemnaście", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "diecinueve", + "wordSecond": "dziewiętnaście", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "veinte", + "wordSecond": "dwadzieścia", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "treinta", + "wordSecond": "trzydzieści", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cuarenta", + "wordSecond": "czterdzieści", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cincuenta", + "wordSecond": "pięćdziesiąt", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cien", + "wordSecond": "sto", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mil", + "wordSecond": "tysiąc", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "primero", + "wordSecond": "pierwszy", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "segundo", + "wordSecond": "drugi", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tercero", + "wordSecond": "trzeci", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cuarto", + "wordSecond": "czwarty", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "quinto", + "wordSecond": "piąty", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "lunes", + "wordSecond": "poniedziałek", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "martes", + "wordSecond": "wtorek", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "miércoles", + "wordSecond": "środa", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "jueves", + "wordSecond": "czwartek", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "viernes", + "wordSecond": "piątek", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sábado", + "wordSecond": "sobota", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "domingo", + "wordSecond": "niedziela", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "enero", + "wordSecond": "styczeń", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "febrero", + "wordSecond": "luty", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "marzo", + "wordSecond": "marzec", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "abril", + "wordSecond": "kwiecień", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mayo", + "wordSecond": "maj", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "junio", + "wordSecond": "czerwiec", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "julio", + "wordSecond": "lipiec", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "agosto", + "wordSecond": "sierpień", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "septiembre", + "wordSecond": "wrzesień", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "octubre", + "wordSecond": "październik", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "noviembre", + "wordSecond": "listopad", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "diciembre", + "wordSecond": "grudzień", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "primavera", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "verano", + "wordSecond": "lato", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "otoño", + "wordSecond": "jesień", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "invierno", + "wordSecond": "zima", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mañana", + "wordSecond": "rano", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tarde", + "wordSecond": "popołudnie", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "noche", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hora", + "wordSecond": "godzina", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "minuto", + "wordSecond": "minuta", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hoy", + "wordSecond": "dzisiaj", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mañana", + "wordSecond": "jutro", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ayer", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T12:56:08.515Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_es_pt_A1.json b/output/2026_02_19_numbers_time_es_pt_A1.json new file mode 100644 index 0000000..a384667 --- /dev/null +++ b/output/2026_02_19_numbers_time_es_pt_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:54:28.930Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "uno", + "wordSecond": "um", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dos", + "wordSecond": "dois", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tres", + "wordSecond": "três", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuatro", + "wordSecond": "quatro", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cinco", + "wordSecond": "cinco", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "seis", + "wordSecond": "seis", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "siete", + "wordSecond": "sete", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ocho", + "wordSecond": "oito", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nueve", + "wordSecond": "nove", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "diez", + "wordSecond": "dez", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "once", + "wordSecond": "onze", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "doce", + "wordSecond": "doze", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "trece", + "wordSecond": "treze", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "catorce", + "wordSecond": "catorze", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "quince", + "wordSecond": "quinze", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dieciséis", + "wordSecond": "dezesseis", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "diecisiete", + "wordSecond": "dezessete", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dieciocho", + "wordSecond": "dezoito", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "diecinueve", + "wordSecond": "dezenove", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "veinte", + "wordSecond": "vinte", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "treinta", + "wordSecond": "trinta", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuarenta", + "wordSecond": "quarenta", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cincuenta", + "wordSecond": "cinquenta", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cien", + "wordSecond": "cem", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mil", + "wordSecond": "mil", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "primero", + "wordSecond": "primeiro", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "segundo", + "wordSecond": "segundo", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tercero", + "wordSecond": "terceiro", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuarto", + "wordSecond": "quarto", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "quinto", + "wordSecond": "quinto", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lunes", + "wordSecond": "segunda-feira", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "martes", + "wordSecond": "terça-feira", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "miércoles", + "wordSecond": "quarta-feira", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "jueves", + "wordSecond": "quinta-feira", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "viernes", + "wordSecond": "sexta-feira", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sábado", + "wordSecond": "sábado", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "domingo", + "wordSecond": "domingo", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "enero", + "wordSecond": "janeiro", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "febrero", + "wordSecond": "fevereiro", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "marzo", + "wordSecond": "março", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "abril", + "wordSecond": "abril", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mayo", + "wordSecond": "maio", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "junio", + "wordSecond": "junho", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "julio", + "wordSecond": "julho", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "agosto", + "wordSecond": "agosto", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "septiembre", + "wordSecond": "setembro", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "octubre", + "wordSecond": "outubro", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "noviembre", + "wordSecond": "novembro", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "diciembre", + "wordSecond": "dezembro", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "primavera", + "wordSecond": "primavera", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "verano", + "wordSecond": "verão", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "otoño", + "wordSecond": "outono", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "invierno", + "wordSecond": "inverno", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mañana", + "wordSecond": "manhã", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tarde", + "wordSecond": "tarde", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "noche", + "wordSecond": "noite", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hora", + "wordSecond": "hora", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "minuto", + "wordSecond": "minuto", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hoy", + "wordSecond": "hoje", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mañana", + "wordSecond": "amanhã", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ayer", + "wordSecond": "ontem", + "createdAt": "2026-02-19T12:54:28.930Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_es_zh_A1.json b/output/2026_02_19_numbers_time_es_zh_A1.json new file mode 100644 index 0000000..14015a3 --- /dev/null +++ b/output/2026_02_19_numbers_time_es_zh_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:55:39.541Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "uno", + "wordSecond": "一 (yī)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "dos", + "wordSecond": "二 (èr)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tres", + "wordSecond": "三 (sān)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cuatro", + "wordSecond": "四 (sì)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cinco", + "wordSecond": "五 (wǔ)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "seis", + "wordSecond": "六 (liù)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "siete", + "wordSecond": "七 (qī)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ocho", + "wordSecond": "八 (bā)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nueve", + "wordSecond": "九 (jiǔ)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "diez", + "wordSecond": "十 (shí)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "once", + "wordSecond": "十一 (shíyī)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "doce", + "wordSecond": "十二 (shí'èr)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "trece", + "wordSecond": "十三 (shísān)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "catorce", + "wordSecond": "十四 (shísì)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "quince", + "wordSecond": "十五 (shíwǔ)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "dieciséis", + "wordSecond": "十六 (shíliù)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "diecisiete", + "wordSecond": "十七 (shíqī)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "dieciocho", + "wordSecond": "十八 (shíbā)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "diecinueve", + "wordSecond": "十九 (shíjiǔ)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "veinte", + "wordSecond": "二十 (èrshí)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "treinta", + "wordSecond": "三十 (sānshí)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cuarenta", + "wordSecond": "四十 (sìshí)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cincuenta", + "wordSecond": "五十 (wǔshí)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cien", + "wordSecond": "一百 (yībǎi)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mil", + "wordSecond": "一千 (yīqiān)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "primero", + "wordSecond": "第一 (dìyī)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "segundo", + "wordSecond": "第二 (dì'èr)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tercero", + "wordSecond": "第三 (dìsān)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cuarto", + "wordSecond": "第四 (dìsì)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "quinto", + "wordSecond": "第五 (dìwǔ)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "lunes", + "wordSecond": "星期一 (xīngqīyī)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "martes", + "wordSecond": "星期二 (xīngqī'èr)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "miércoles", + "wordSecond": "星期三 (xīngqīsān)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "jueves", + "wordSecond": "星期四 (xīngqīsì)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "viernes", + "wordSecond": "星期五 (xīngqīwǔ)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sábado", + "wordSecond": "星期六 (xīngqīliù)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "domingo", + "wordSecond": "星期日 (xīngqīrì)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "enero", + "wordSecond": "一月 (yīyuè)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "febrero", + "wordSecond": "二月 (èryuè)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "marzo", + "wordSecond": "三月 (sānyuè)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "abril", + "wordSecond": "四月 (sìyuè)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mayo", + "wordSecond": "五月 (wǔyuè)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "junio", + "wordSecond": "六月 (liùyuè)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "julio", + "wordSecond": "七月 (qīyuè)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "agosto", + "wordSecond": "八月 (bāyuè)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "septiembre", + "wordSecond": "九月 (jiǔyuè)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "octubre", + "wordSecond": "十月 (shíyuè)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "noviembre", + "wordSecond": "十一月 (shíyīyuè)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "diciembre", + "wordSecond": "十二月 (shí'èryuè)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "primavera", + "wordSecond": "春天 (chūntiān)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "verano", + "wordSecond": "夏天 (xiàtiān)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "otoño", + "wordSecond": "秋天 (qiūtiān)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "invierno", + "wordSecond": "冬天 (dōngtiān)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mañana", + "wordSecond": "早上 (zǎoshang)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tarde", + "wordSecond": "下午 (xiàwǔ)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "noche", + "wordSecond": "晚上 (wǎnshang)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hora", + "wordSecond": "小时 (xiǎoshí)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "minuto", + "wordSecond": "分钟 (fēnzhōng)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hoy", + "wordSecond": "今天 (jīntiān)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mañana", + "wordSecond": "明天 (míngtiān)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ayer", + "wordSecond": "昨天 (zuótiān)", + "createdAt": "2026-02-19T12:55:39.541Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_fr_it_A1.json b/output/2026_02_19_numbers_time_fr_it_A1.json new file mode 100644 index 0000000..210ba46 --- /dev/null +++ b/output/2026_02_19_numbers_time_fr_it_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:59:34.891Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "un", + "wordSecond": "uno", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "deux", + "wordSecond": "due", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "trois", + "wordSecond": "tre", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "quatre", + "wordSecond": "quattro", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cinq", + "wordSecond": "cinque", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "six", + "wordSecond": "sei", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sept", + "wordSecond": "sette", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "huit", + "wordSecond": "otto", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "neuf", + "wordSecond": "nove", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dix", + "wordSecond": "dieci", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "onze", + "wordSecond": "undici", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "douze", + "wordSecond": "dodici", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "treize", + "wordSecond": "tredici", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "quatorze", + "wordSecond": "quattordici", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "quinze", + "wordSecond": "quindici", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "seize", + "wordSecond": "sedici", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dix-sept", + "wordSecond": "diciassette", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dix-huit", + "wordSecond": "diciotto", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dix-neuf", + "wordSecond": "diciannove", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vingt", + "wordSecond": "venti", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "trente", + "wordSecond": "trenta", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "quarante", + "wordSecond": "quaranta", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cinquante", + "wordSecond": "cinquanta", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cent", + "wordSecond": "cento", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mille", + "wordSecond": "mille", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "premier", + "wordSecond": "primo", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "deuxième", + "wordSecond": "secondo", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "troisième", + "wordSecond": "terzo", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "lundi", + "wordSecond": "lunedì", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mardi", + "wordSecond": "martedì", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mercredi", + "wordSecond": "mercoledì", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "jeudi", + "wordSecond": "giovedì", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vendredi", + "wordSecond": "venerdì", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "samedi", + "wordSecond": "sabato", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dimanche", + "wordSecond": "domenica", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "janvier", + "wordSecond": "gennaio", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "février", + "wordSecond": "febbraio", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mars", + "wordSecond": "marzo", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "avril", + "wordSecond": "aprile", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mai", + "wordSecond": "maggio", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "juin", + "wordSecond": "giugno", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "juillet", + "wordSecond": "luglio", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "août", + "wordSecond": "agosto", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "septembre", + "wordSecond": "settembre", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "octobre", + "wordSecond": "ottobre", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "novembre", + "wordSecond": "novembre", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "décembre", + "wordSecond": "dicembre", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "printemps", + "wordSecond": "primavera", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "été", + "wordSecond": "estate", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "automne", + "wordSecond": "autunno", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "hiver", + "wordSecond": "inverno", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "matin", + "wordSecond": "mattina", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "après-midi", + "wordSecond": "pomeriggio", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "soir", + "wordSecond": "sera", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "nuit", + "wordSecond": "notte", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "heure", + "wordSecond": "ora", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "minute", + "wordSecond": "minuto", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "aujourd'hui", + "wordSecond": "oggi", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "demain", + "wordSecond": "domani", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "hier", + "wordSecond": "ieri", + "createdAt": "2026-02-19T12:59:34.891Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_fr_ja_A1.json b/output/2026_02_19_numbers_time_fr_ja_A1.json new file mode 100644 index 0000000..f343033 --- /dev/null +++ b/output/2026_02_19_numbers_time_fr_ja_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:59:55.061Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "un", + "wordSecond": "一 (いち, ichi)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "deux", + "wordSecond": "二 (に, ni)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "trois", + "wordSecond": "三 (さん, san)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "quatre", + "wordSecond": "四 (し/よん, shi/yon)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cinq", + "wordSecond": "五 (ご, go)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "six", + "wordSecond": "六 (ろく, roku)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sept", + "wordSecond": "七 (しち/なな, shichi/nana)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "huit", + "wordSecond": "八 (はち, hachi)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "neuf", + "wordSecond": "九 (きゅう/く, kyū/ku)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "dix", + "wordSecond": "十 (じゅう, jū)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "onze", + "wordSecond": "十一 (じゅういち, jūichi)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "douze", + "wordSecond": "十二 (じゅうに, jūni)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "treize", + "wordSecond": "十三 (じゅうさん, jūsan)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "quatorze", + "wordSecond": "十四 (じゅうし/じゅうよん, jūshi/jūyon)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "quinze", + "wordSecond": "十五 (じゅうご, jūgo)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "seize", + "wordSecond": "十六 (じゅうろく, jūroku)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "dix-sept", + "wordSecond": "十七 (じゅうしち/じゅうなな, jūshichi/jūnana)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "dix-huit", + "wordSecond": "十八 (じゅうはち, jūhachi)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "dix-neuf", + "wordSecond": "十九 (じゅうきゅう/じゅうく, jūkyū/jūku)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "vingt", + "wordSecond": "二十 (にじゅう, nijū)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "trente", + "wordSecond": "三十 (さんじゅう, sanjū)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "quarante", + "wordSecond": "四十 (よんじゅう, yonjū)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cinquante", + "wordSecond": "五十 (ごじゅう, gojū)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cent", + "wordSecond": "百 (ひゃく, hyaku)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mille", + "wordSecond": "千 (せん, sen)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "premier", + "wordSecond": "一番目 (いちばんめ, ichibanme)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "deuxième", + "wordSecond": "二番目 (にばんめ, nibanme)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "troisième", + "wordSecond": "三番目 (さんばんめ, sanbanme)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "lundi", + "wordSecond": "月曜日 (げつようび, getsuyōbi)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mardi", + "wordSecond": "火曜日 (かようび, kayōbi)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mercredi", + "wordSecond": "水曜日 (すいようび, suiyōbi)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "jeudi", + "wordSecond": "木曜日 (もくようび, mokuyōbi)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "vendredi", + "wordSecond": "金曜日 (きんようび, kin'yōbi)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "samedi", + "wordSecond": "土曜日 (どようび, doyōbi)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "dimanche", + "wordSecond": "日曜日 (にちようび, nichiyōbi)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "janvier", + "wordSecond": "一月 (いちがつ, ichigatsu)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "février", + "wordSecond": "二月 (にがつ, nigatsu)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mars", + "wordSecond": "三月 (さんがつ, sangatsu)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "avril", + "wordSecond": "四月 (しがつ, shigatsu)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mai", + "wordSecond": "五月 (ごがつ, gogatsu)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "juin", + "wordSecond": "六月 (ろくがつ, rokugatsu)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "juillet", + "wordSecond": "七月 (しちがつ, shichigatsu)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "août", + "wordSecond": "八月 (はちがつ, hachigatsu)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "septembre", + "wordSecond": "九月 (くがつ, kugatsu)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "octobre", + "wordSecond": "十月 (じゅうがつ, jūgatsu)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "novembre", + "wordSecond": "十一月 (じゅういちがつ, jūichigatsu)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "décembre", + "wordSecond": "十二月 (じゅうにがつ, jūnigatsu)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "printemps", + "wordSecond": "春 (はる, haru)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "été", + "wordSecond": "夏 (なつ, natsu)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "automne", + "wordSecond": "秋 (あき, aki)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "hiver", + "wordSecond": "冬 (ふゆ, fuyu)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "matin", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "après-midi", + "wordSecond": "午後 (ごご, gogo)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "soir", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "heure", + "wordSecond": "時 (じ, ji)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "minute", + "wordSecond": "分 (ふん, fun)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "aujourd'hui", + "wordSecond": "今日 (きょう, kyō)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "demain", + "wordSecond": "明日 (あした, ashita)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "hier", + "wordSecond": "昨日 (きのう, kinō)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "maintenant", + "wordSecond": "今 (いま, ima)", + "createdAt": "2026-02-19T12:59:55.061Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_fr_ko_A1.json b/output/2026_02_19_numbers_time_fr_ko_A1.json new file mode 100644 index 0000000..5abe151 --- /dev/null +++ b/output/2026_02_19_numbers_time_fr_ko_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:00:28.753Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "un", + "wordSecond": "하나 (hana)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "deux", + "wordSecond": "둘 (dul)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "trois", + "wordSecond": "셋 (set)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "quatre", + "wordSecond": "넷 (net)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cinq", + "wordSecond": "다섯 (daseot)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "six", + "wordSecond": "여섯 (yeoseot)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sept", + "wordSecond": "일곱 (ilgop)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "huit", + "wordSecond": "여덟 (yeodeol)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "neuf", + "wordSecond": "아홉 (ahop)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dix", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "onze", + "wordSecond": "열하나 (yeolhana)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "douze", + "wordSecond": "열둘 (yeoldul)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "treize", + "wordSecond": "열셋 (yeolset)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "quatorze", + "wordSecond": "열넷 (yeolnet)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "quinze", + "wordSecond": "열다섯 (yeoldaseot)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "seize", + "wordSecond": "열여섯 (yeolyeoseot)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dix-sept", + "wordSecond": "열일곱 (yeorilgop)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dix-huit", + "wordSecond": "열여덟 (yeoryeodeol)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dix-neuf", + "wordSecond": "열아홉 (yeorahop)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "vingt", + "wordSecond": "스물 (seumul)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "trente", + "wordSecond": "서른 (seoreun)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "quarante", + "wordSecond": "마흔 (maheun)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cinquante", + "wordSecond": "쉰 (swin)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cent", + "wordSecond": "백 (baek)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "mille", + "wordSecond": "천 (cheon)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "premier", + "wordSecond": "첫 번째 (cheot beonjjae)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "deuxième", + "wordSecond": "두 번째 (du beonjjae)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "troisième", + "wordSecond": "세 번째 (se beonjjae)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "lundi", + "wordSecond": "월요일 (woryoil)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "mardi", + "wordSecond": "화요일 (hwayoil)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "mercredi", + "wordSecond": "수요일 (suyoil)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "jeudi", + "wordSecond": "목요일 (mogyoil)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "vendredi", + "wordSecond": "금요일 (geumyoil)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "samedi", + "wordSecond": "토요일 (toyoil)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dimanche", + "wordSecond": "일요일 (iryoil)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "janvier", + "wordSecond": "1월 (irwol)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "février", + "wordSecond": "2월 (iwol)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "mars", + "wordSecond": "3월 (samwol)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "avril", + "wordSecond": "4월 (sawol)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "mai", + "wordSecond": "5월 (owol)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "juin", + "wordSecond": "6월 (yuwol)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "juillet", + "wordSecond": "7월 (chirwol)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "août", + "wordSecond": "8월 (parwol)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "septembre", + "wordSecond": "9월 (guwol)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "octobre", + "wordSecond": "10월 (siwol)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "novembre", + "wordSecond": "11월 (sibirwol)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "décembre", + "wordSecond": "12월 (sibiwol)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "printemps", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "été", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "automne", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "hiver", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "matin", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "après-midi", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "soir", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "heure", + "wordSecond": "시간 (sigan)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "minute", + "wordSecond": "분 (bun)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "aujourd'hui", + "wordSecond": "오늘 (oneul)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "demain", + "wordSecond": "내일 (naeil)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "hier", + "wordSecond": "어제 (eoje)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "maintenant", + "wordSecond": "지금 (jigeum)", + "createdAt": "2026-02-19T13:00:28.753Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_fr_pl_A1.json b/output/2026_02_19_numbers_time_fr_pl_A1.json new file mode 100644 index 0000000..3dbf9f8 --- /dev/null +++ b/output/2026_02_19_numbers_time_fr_pl_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:00:40.758Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "un", + "wordSecond": "jeden", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "deux", + "wordSecond": "dwa", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "trois", + "wordSecond": "trzy", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "quatre", + "wordSecond": "cztery", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cinq", + "wordSecond": "pięć", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "six", + "wordSecond": "sześć", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sept", + "wordSecond": "siedem", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "huit", + "wordSecond": "osiem", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "neuf", + "wordSecond": "dziewięć", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dix", + "wordSecond": "dziesięć", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "onze", + "wordSecond": "jedenaście", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "douze", + "wordSecond": "dwanaście", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "treize", + "wordSecond": "trzynaście", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "quatorze", + "wordSecond": "czternaście", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "quinze", + "wordSecond": "piętnaście", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "seize", + "wordSecond": "szesnaście", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dix-sept", + "wordSecond": "siedemnaście", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dix-huit", + "wordSecond": "osiemnaście", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dix-neuf", + "wordSecond": "dziewiętnaście", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "vingt", + "wordSecond": "dwadzieścia", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "trente", + "wordSecond": "trzydzieści", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "quarante", + "wordSecond": "czterdzieści", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cinquante", + "wordSecond": "pięćdziesiąt", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cent", + "wordSecond": "sto", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "mille", + "wordSecond": "tysiąc", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "premier", + "wordSecond": "pierwszy", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "deuxième", + "wordSecond": "drugi", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "troisième", + "wordSecond": "trzeci", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "lundi", + "wordSecond": "poniedziałek", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "mardi", + "wordSecond": "wtorek", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "mercredi", + "wordSecond": "środa", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "jeudi", + "wordSecond": "czwartek", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "vendredi", + "wordSecond": "piątek", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "samedi", + "wordSecond": "sobota", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dimanche", + "wordSecond": "niedziela", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "janvier", + "wordSecond": "styczeń", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "février", + "wordSecond": "luty", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "mars", + "wordSecond": "marzec", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "avril", + "wordSecond": "kwiecień", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "mai", + "wordSecond": "maj", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "juin", + "wordSecond": "czerwiec", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "juillet", + "wordSecond": "lipiec", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "août", + "wordSecond": "sierpień", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "septembre", + "wordSecond": "wrzesień", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "octobre", + "wordSecond": "październik", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "novembre", + "wordSecond": "listopad", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "décembre", + "wordSecond": "grudzień", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "printemps", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "été", + "wordSecond": "lato", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "automne", + "wordSecond": "jesień", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "hiver", + "wordSecond": "zima", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "matin", + "wordSecond": "rano", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "après-midi", + "wordSecond": "popołudnie", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "soir", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "nuit", + "wordSecond": "noc", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "heure", + "wordSecond": "godzina", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "minute", + "wordSecond": "minuta", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "aujourd'hui", + "wordSecond": "dzisiaj", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "demain", + "wordSecond": "jutro", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "hier", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T13:00:40.758Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_fr_zh_A1.json b/output/2026_02_19_numbers_time_fr_zh_A1.json new file mode 100644 index 0000000..4ee9fe8 --- /dev/null +++ b/output/2026_02_19_numbers_time_fr_zh_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:00:11.412Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "un", + "wordSecond": "一 (yī)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "deux", + "wordSecond": "二 (èr)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "trois", + "wordSecond": "三 (sān)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "quatre", + "wordSecond": "四 (sì)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cinq", + "wordSecond": "五 (wǔ)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "six", + "wordSecond": "六 (liù)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sept", + "wordSecond": "七 (qī)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "huit", + "wordSecond": "八 (bā)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "neuf", + "wordSecond": "九 (jiǔ)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "dix", + "wordSecond": "十 (shí)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "onze", + "wordSecond": "十一 (shíyī)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "douze", + "wordSecond": "十二 (shí'èr)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "treize", + "wordSecond": "十三 (shísān)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "quatorze", + "wordSecond": "十四 (shísì)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "quinze", + "wordSecond": "十五 (shíwǔ)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "seize", + "wordSecond": "十六 (shíliù)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "dix-sept", + "wordSecond": "十七 (shíqī)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "dix-huit", + "wordSecond": "十八 (shíbā)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "dix-neuf", + "wordSecond": "十九 (shíjiǔ)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vingt", + "wordSecond": "二十 (èrshí)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "trente", + "wordSecond": "三十 (sānshí)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "quarante", + "wordSecond": "四十 (sìshí)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cinquante", + "wordSecond": "五十 (wǔshí)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cent", + "wordSecond": "一百 (yībǎi)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mille", + "wordSecond": "一千 (yīqiān)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "premier", + "wordSecond": "第一 (dìyī)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "deuxième", + "wordSecond": "第二 (dì'èr)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "troisième", + "wordSecond": "第三 (dìsān)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lundi", + "wordSecond": "星期一 (xīngqīyī)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mardi", + "wordSecond": "星期二 (xīngqī'èr)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mercredi", + "wordSecond": "星期三 (xīngqīsān)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "jeudi", + "wordSecond": "星期四 (xīngqīsì)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vendredi", + "wordSecond": "星期五 (xīngqīwǔ)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "samedi", + "wordSecond": "星期六 (xīngqīliù)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "dimanche", + "wordSecond": "星期日 (xīngqīrì)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "janvier", + "wordSecond": "一月 (yīyuè)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "février", + "wordSecond": "二月 (èryuè)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mars", + "wordSecond": "三月 (sānyuè)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "avril", + "wordSecond": "四月 (sìyuè)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mai", + "wordSecond": "五月 (wǔyuè)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "juin", + "wordSecond": "六月 (liùyuè)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "juillet", + "wordSecond": "七月 (qīyuè)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "août", + "wordSecond": "八月 (bāyuè)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "septembre", + "wordSecond": "九月 (jiǔyuè)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "octobre", + "wordSecond": "十月 (shíyuè)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "novembre", + "wordSecond": "十一月 (shíyīyuè)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "décembre", + "wordSecond": "十二月 (shí'èryuè)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "printemps", + "wordSecond": "春天 (chūntiān)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "été", + "wordSecond": "夏天 (xiàtiān)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "automne", + "wordSecond": "秋天 (qiūtiān)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "hiver", + "wordSecond": "冬天 (dōngtiān)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "matin", + "wordSecond": "早上 (zǎoshang)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "après-midi", + "wordSecond": "下午 (xiàwǔ)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "soir", + "wordSecond": "晚上 (wǎnshang)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "heure", + "wordSecond": "小时 (xiǎoshí)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "minute", + "wordSecond": "分钟 (fēnzhōng)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "aujourd'hui", + "wordSecond": "今天 (jīntiān)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "demain", + "wordSecond": "明天 (míngtiān)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "hier", + "wordSecond": "昨天 (zuótiān)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "maintenant", + "wordSecond": "现在 (xiànzài)", + "createdAt": "2026-02-19T13:00:11.412Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_it_ja_A1.json b/output/2026_02_19_numbers_time_it_ja_A1.json new file mode 100644 index 0000000..44ff3ab --- /dev/null +++ b/output/2026_02_19_numbers_time_it_ja_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:01:01.767Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "uno", + "wordSecond": "一 (いち, ichi)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "due", + "wordSecond": "二 (に, ni)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tre", + "wordSecond": "三 (さん, san)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "quattro", + "wordSecond": "四 (し/よん, shi/yon)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cinque", + "wordSecond": "五 (ご, go)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sei", + "wordSecond": "六 (ろく, roku)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sette", + "wordSecond": "七 (しち/なな, shichi/nana)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "otto", + "wordSecond": "八 (はち, hachi)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "nove", + "wordSecond": "九 (きゅう/く, kyū/ku)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dieci", + "wordSecond": "十 (じゅう, jū)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "undici", + "wordSecond": "十一 (じゅういち, jū ichi)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dodici", + "wordSecond": "十二 (じゅうに, jū ni)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tredici", + "wordSecond": "十三 (じゅうさん, jū san)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "quattordici", + "wordSecond": "十四 (じゅうし/じゅうよん, jū shi/jū yon)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "quindici", + "wordSecond": "十五 (じゅうご, jū go)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sedici", + "wordSecond": "十六 (じゅうろく, jū roku)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "diciassette", + "wordSecond": "十七 (じゅうしち/じゅうなな, jū shichi/jū nana)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "diciotto", + "wordSecond": "十八 (じゅうはち, jū hachi)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "diciannove", + "wordSecond": "十九 (じゅうきゅう/じゅうく, jū kyū/jū ku)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "venti", + "wordSecond": "二十 (にじゅう, ni jū)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "trenta", + "wordSecond": "三十 (さんじゅう, san jū)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "quaranta", + "wordSecond": "四十 (よんじゅう, yon jū)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cinquanta", + "wordSecond": "五十 (ごじゅう, go jū)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cento", + "wordSecond": "百 (ひゃく, hyaku)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mille", + "wordSecond": "千 (せん, sen)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "primo", + "wordSecond": "一番目 (いちばんめ, ichiban me)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "secondo", + "wordSecond": "二番目 (にばんめ, niban me)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "terzo", + "wordSecond": "三番目 (さんばんめ, sanban me)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lunedì", + "wordSecond": "月曜日 (げつようび, getsuyōbi)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "martedì", + "wordSecond": "火曜日 (かようび, kayōbi)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mercoledì", + "wordSecond": "水曜日 (すいようび, suiyōbi)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "giovedì", + "wordSecond": "木曜日 (もくようび, mokuyōbi)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "venerdì", + "wordSecond": "金曜日 (きんようび, kin'yōbi)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sabato", + "wordSecond": "土曜日 (どようび, doyōbi)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "domenica", + "wordSecond": "日曜日 (にちようび, nichiyōbi)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "gennaio", + "wordSecond": "一月 (いちがつ, ichigatsu)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "febbraio", + "wordSecond": "二月 (にがつ, nigatsu)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "marzo", + "wordSecond": "三月 (さんがつ, sangatsu)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "aprile", + "wordSecond": "四月 (しがつ, shigatsu)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "maggio", + "wordSecond": "五月 (ごがつ, gogatsu)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "giugno", + "wordSecond": "六月 (ろくがつ, rokugatsu)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "luglio", + "wordSecond": "七月 (しちがつ, shichigatsu)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "agosto", + "wordSecond": "八月 (はちがつ, hachigatsu)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "settembre", + "wordSecond": "九月 (くがつ, kugatsu)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ottobre", + "wordSecond": "十月 (じゅうがつ, jūgatsu)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "novembre", + "wordSecond": "十一月 (じゅういちがつ, jūichigatsu)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dicembre", + "wordSecond": "十二月 (じゅうにがつ, jūnigatsu)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "primavera", + "wordSecond": "春 (はる, haru)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "estate", + "wordSecond": "夏 (なつ, natsu)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "autunno", + "wordSecond": "秋 (あき, aki)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "inverno", + "wordSecond": "冬 (ふゆ, fuyu)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mattina", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pomeriggio", + "wordSecond": "午後 (ごご, gogo)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sera", + "wordSecond": "夕方 (ゆうがた, yūgata)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "notte", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ora", + "wordSecond": "時間 (じかん, jikan)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "minuto", + "wordSecond": "分 (ふん, fun)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "oggi", + "wordSecond": "今日 (きょう, kyō)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "domani", + "wordSecond": "明日 (あした, ashita)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ieri", + "wordSecond": "昨日 (きのう, kinō)", + "createdAt": "2026-02-19T13:01:01.767Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_it_ko_A1.json b/output/2026_02_19_numbers_time_it_ko_A1.json new file mode 100644 index 0000000..847470e --- /dev/null +++ b/output/2026_02_19_numbers_time_it_ko_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:01:36.019Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "uno", + "wordSecond": "하나 (hana)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "due", + "wordSecond": "둘 (dul)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tre", + "wordSecond": "셋 (set)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "quattro", + "wordSecond": "넷 (net)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cinque", + "wordSecond": "다섯 (daseot)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sei", + "wordSecond": "여섯 (yeoseot)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sette", + "wordSecond": "일곱 (ilgop)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "otto", + "wordSecond": "여덟 (yeodeol)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nove", + "wordSecond": "아홉 (ahop)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dieci", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "undici", + "wordSecond": "열하나 (yeolhana)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dodici", + "wordSecond": "열둘 (yeoldul)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tredici", + "wordSecond": "열셋 (yeolset)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "quattordici", + "wordSecond": "열넷 (yeolnet)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "quindici", + "wordSecond": "열다섯 (yeoldaseot)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sedici", + "wordSecond": "열여섯 (yeolyeoseot)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "diciassette", + "wordSecond": "열일곱 (yeorilgop)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "diciotto", + "wordSecond": "열여덟 (yeoryeodeol)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "diciannove", + "wordSecond": "열아홉 (yeorahop)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "venti", + "wordSecond": "스물 (seumul)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "trenta", + "wordSecond": "서른 (seoreun)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "quaranta", + "wordSecond": "마흔 (maheun)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cinquanta", + "wordSecond": "쉰 (swin)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cento", + "wordSecond": "백 (baek)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mille", + "wordSecond": "천 (cheon)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "primo", + "wordSecond": "첫 번째 (cheot beonjjae)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "secondo", + "wordSecond": "두 번째 (du beonjjae)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "terzo", + "wordSecond": "세 번째 (se beonjjae)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lunedì", + "wordSecond": "월요일 (woryoil)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "martedì", + "wordSecond": "화요일 (hwayoil)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mercoledì", + "wordSecond": "수요일 (suyoil)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "giovedì", + "wordSecond": "목요일 (mogyoil)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "venerdì", + "wordSecond": "금요일 (geumyoil)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sabato", + "wordSecond": "토요일 (toyoil)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "domenica", + "wordSecond": "일요일 (iryoil)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "gennaio", + "wordSecond": "1월 (irwol)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "febbraio", + "wordSecond": "2월 (iwol)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "marzo", + "wordSecond": "3월 (samwol)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "aprile", + "wordSecond": "4월 (sawol)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "maggio", + "wordSecond": "5월 (owol)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "giugno", + "wordSecond": "6월 (yuwol)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "luglio", + "wordSecond": "7월 (chirwol)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "agosto", + "wordSecond": "8월 (parwol)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "settembre", + "wordSecond": "9월 (guwol)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ottobre", + "wordSecond": "10월 (siwol)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "novembre", + "wordSecond": "11월 (sibirwol)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dicembre", + "wordSecond": "12월 (sibiwol)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "primavera", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "estate", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "autunno", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "inverno", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mattina", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pomeriggio", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sera", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "notte", + "wordSecond": "밤 (bam)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ora", + "wordSecond": "시간 (sigan)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "minuto", + "wordSecond": "분 (bun)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "oggi", + "wordSecond": "오늘 (oneul)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "domani", + "wordSecond": "내일 (naeil)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ieri", + "wordSecond": "어제 (eoje)", + "createdAt": "2026-02-19T13:01:36.019Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_it_pl_A1.json b/output/2026_02_19_numbers_time_it_pl_A1.json new file mode 100644 index 0000000..8f39973 --- /dev/null +++ b/output/2026_02_19_numbers_time_it_pl_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:01:48.566Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "uno", + "wordSecond": "jeden", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "due", + "wordSecond": "dwa", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tre", + "wordSecond": "trzy", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "quattro", + "wordSecond": "cztery", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cinque", + "wordSecond": "pięć", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sei", + "wordSecond": "sześć", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sette", + "wordSecond": "siedem", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "otto", + "wordSecond": "osiem", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "nove", + "wordSecond": "dziewięć", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dieci", + "wordSecond": "dziesięć", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "undici", + "wordSecond": "jedenaście", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dodici", + "wordSecond": "dwanaście", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tredici", + "wordSecond": "trzynaście", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "quattordici", + "wordSecond": "czternaście", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "quindici", + "wordSecond": "piętnaście", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sedici", + "wordSecond": "szesnaście", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "diciassette", + "wordSecond": "siedemnaście", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "diciotto", + "wordSecond": "osiemnaście", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "diciannove", + "wordSecond": "dziewiętnaście", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "venti", + "wordSecond": "dwadzieścia", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "trenta", + "wordSecond": "trzydzieści", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "quaranta", + "wordSecond": "czterdzieści", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cinquanta", + "wordSecond": "pięćdziesiąt", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cento", + "wordSecond": "sto", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mille", + "wordSecond": "tysiąc", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "primo", + "wordSecond": "pierwszy", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "secondo", + "wordSecond": "drugi", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "terzo", + "wordSecond": "trzeci", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lunedì", + "wordSecond": "poniedziałek", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "martedì", + "wordSecond": "wtorek", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mercoledì", + "wordSecond": "środa", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "giovedì", + "wordSecond": "czwartek", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "venerdì", + "wordSecond": "piątek", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sabato", + "wordSecond": "sobota", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "domenica", + "wordSecond": "niedziela", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gennaio", + "wordSecond": "styczeń", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "febbraio", + "wordSecond": "luty", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "marzo", + "wordSecond": "marzec", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "aprile", + "wordSecond": "kwiecień", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "maggio", + "wordSecond": "maj", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "giugno", + "wordSecond": "czerwiec", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "luglio", + "wordSecond": "lipiec", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "agosto", + "wordSecond": "sierpień", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "settembre", + "wordSecond": "wrzesień", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ottobre", + "wordSecond": "październik", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "novembre", + "wordSecond": "listopad", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dicembre", + "wordSecond": "grudzień", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "primavera", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "estate", + "wordSecond": "lato", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "autunno", + "wordSecond": "jesień", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "inverno", + "wordSecond": "zima", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mattina", + "wordSecond": "rano", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pomeriggio", + "wordSecond": "popołudnie", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sera", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "notte", + "wordSecond": "noc", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ora", + "wordSecond": "godzina", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "minuto", + "wordSecond": "minuta", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "oggi", + "wordSecond": "dzisiaj", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "domani", + "wordSecond": "jutro", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ieri", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T13:01:48.566Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_it_zh_A1.json b/output/2026_02_19_numbers_time_it_zh_A1.json new file mode 100644 index 0000000..648d6d5 --- /dev/null +++ b/output/2026_02_19_numbers_time_it_zh_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:01:18.871Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "uno", + "wordSecond": "一 (yī)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "due", + "wordSecond": "二 (èr)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tre", + "wordSecond": "三 (sān)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "quattro", + "wordSecond": "四 (sì)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cinque", + "wordSecond": "五 (wǔ)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sei", + "wordSecond": "六 (liù)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sette", + "wordSecond": "七 (qī)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "otto", + "wordSecond": "八 (bā)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "nove", + "wordSecond": "九 (jiǔ)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dieci", + "wordSecond": "十 (shí)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "undici", + "wordSecond": "十一 (shíyī)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dodici", + "wordSecond": "十二 (shí'èr)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tredici", + "wordSecond": "十三 (shísān)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "quattordici", + "wordSecond": "十四 (shísì)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "quindici", + "wordSecond": "十五 (shíwǔ)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sedici", + "wordSecond": "十六 (shíliù)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "diciassette", + "wordSecond": "十七 (shíqī)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "diciotto", + "wordSecond": "十八 (shíbā)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "diciannove", + "wordSecond": "十九 (shíjiǔ)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "venti", + "wordSecond": "二十 (èrshí)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "trenta", + "wordSecond": "三十 (sānshí)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "quaranta", + "wordSecond": "四十 (sìshí)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cinquanta", + "wordSecond": "五十 (wǔshí)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cento", + "wordSecond": "一百 (yībǎi)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mille", + "wordSecond": "一千 (yīqiān)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "primo", + "wordSecond": "第一 (dìyī)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "secondo", + "wordSecond": "第二 (dì'èr)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "terzo", + "wordSecond": "第三 (dìsān)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lunedì", + "wordSecond": "星期一 (xīngqīyī)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "martedì", + "wordSecond": "星期二 (xīngqī'èr)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mercoledì", + "wordSecond": "星期三 (xīngqīsān)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "giovedì", + "wordSecond": "星期四 (xīngqīsì)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "venerdì", + "wordSecond": "星期五 (xīngqīwǔ)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sabato", + "wordSecond": "星期六 (xīngqīliù)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "domenica", + "wordSecond": "星期日 (xīngqīrì)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "gennaio", + "wordSecond": "一月 (yīyuè)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "febbraio", + "wordSecond": "二月 (èryuè)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "marzo", + "wordSecond": "三月 (sānyuè)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "aprile", + "wordSecond": "四月 (sìyuè)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "maggio", + "wordSecond": "五月 (wǔyuè)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "giugno", + "wordSecond": "六月 (liùyuè)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "luglio", + "wordSecond": "七月 (qīyuè)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "agosto", + "wordSecond": "八月 (bāyuè)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "settembre", + "wordSecond": "九月 (jiǔyuè)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ottobre", + "wordSecond": "十月 (shíyuè)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "novembre", + "wordSecond": "十一月 (shíyīyuè)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dicembre", + "wordSecond": "十二月 (shí'èryuè)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "primavera", + "wordSecond": "春天 (chūntiān)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "estate", + "wordSecond": "夏天 (xiàtiān)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "autunno", + "wordSecond": "秋天 (qiūtiān)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "inverno", + "wordSecond": "冬天 (dōngtiān)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mattina", + "wordSecond": "早上 (zǎoshang)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pomeriggio", + "wordSecond": "下午 (xiàwǔ)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sera", + "wordSecond": "晚上 (wǎnshang)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "notte", + "wordSecond": "晚上/夜里 (wǎnshang/yèlǐ)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ora", + "wordSecond": "小时 (xiǎoshí)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "minuto", + "wordSecond": "分钟 (fēnzhōng)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "secondo", + "wordSecond": "秒 (miǎo)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "oggi", + "wordSecond": "今天 (jīntiān)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "domani", + "wordSecond": "明天 (míngtiān)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ieri", + "wordSecond": "昨天 (zuótiān)", + "createdAt": "2026-02-19T13:01:18.871Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_ja_ko_A1.json b/output/2026_02_19_numbers_time_ja_ko_A1.json new file mode 100644 index 0000000..bd140c7 --- /dev/null +++ b/output/2026_02_19_numbers_time_ja_ko_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:02:37.343Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "一 (いち, ichi)", + "wordSecond": "하나 (hana)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "二 (に, ni)", + "wordSecond": "둘 (dul)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "三 (さん, san)", + "wordSecond": "셋 (set)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "四 (し, shi)", + "wordSecond": "넷 (net)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "五 (ご, go)", + "wordSecond": "다섯 (daseot)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "六 (ろく, roku)", + "wordSecond": "여섯 (yeoseot)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "七 (しち, shichi)", + "wordSecond": "일곱 (ilgop)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "八 (はち, hachi)", + "wordSecond": "여덟 (yeodeol)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "九 (きゅう, kyū)", + "wordSecond": "아홉 (ahop)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "十 (じゅう, jū)", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "十一 (じゅういち, jūichi)", + "wordSecond": "열하나 (yeolhana)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "十二 (じゅうに, jūni)", + "wordSecond": "열둘 (yeoldul)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "十三 (じゅうさん, jūsan)", + "wordSecond": "열셋 (yeolset)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "十四 (じゅうし, jūshi)", + "wordSecond": "열넷 (yeolnet)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "十五 (じゅうご, jūgo)", + "wordSecond": "열다섯 (yeoldaseot)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "十六 (じゅうろく, jūroku)", + "wordSecond": "열여섯 (yeolyeoseot)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "十七 (じゅうしち, jūshichi)", + "wordSecond": "열일곱 (yeorilgop)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "十八 (じゅうはち, jūhachi)", + "wordSecond": "열여덟 (yeoryeodeol)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "十九 (じゅうきゅう, jūkyū)", + "wordSecond": "열아홉 (yeorahop)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "二十 (にじゅう, nijū)", + "wordSecond": "스물 (seumul)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "三十 (さんじゅう, sanjū)", + "wordSecond": "서른 (seoreun)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "四十 (よんじゅう, yonjū)", + "wordSecond": "마흔 (maheun)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "五十 (ごじゅう, gojū)", + "wordSecond": "쉰 (swin)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "百 (ひゃく, hyaku)", + "wordSecond": "백 (baek)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "千 (せん, sen)", + "wordSecond": "천 (cheon)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "一つ目 (ひとつめ, hitotsume)", + "wordSecond": "첫 번째 (cheot beonjjae)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "二つ目 (ふたつめ, futatsume)", + "wordSecond": "두 번째 (du beonjjae)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "三つ目 (みっつめ, mittsume)", + "wordSecond": "세 번째 (se beonjjae)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "月曜日 (げつようび, getsuyōbi)", + "wordSecond": "월요일 (woryoil)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "火曜日 (かようび, kayōbi)", + "wordSecond": "화요일 (hwayoil)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "水曜日 (すいようび, suiyōbi)", + "wordSecond": "수요일 (suyoil)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "木曜日 (もくようび, mokuyōbi)", + "wordSecond": "목요일 (mogyoil)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "金曜日 (きんようび, kinyōbi)", + "wordSecond": "금요일 (geumyoil)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "土曜日 (どようび, doyōbi)", + "wordSecond": "토요일 (toyoil)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "日曜日 (にちようび, nichiyōbi)", + "wordSecond": "일요일 (iryoil)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "一月 (いちがつ, ichigatsu)", + "wordSecond": "일월 (irwol)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "二月 (にがつ, nigatsu)", + "wordSecond": "이월 (iwol)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "三月 (さんがつ, sangatsu)", + "wordSecond": "삼월 (samwol)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "四月 (しがつ, shigatsu)", + "wordSecond": "사월 (sawol)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "五月 (ごがつ, gogatsu)", + "wordSecond": "오월 (owol)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "六月 (ろくがつ, rokugatsu)", + "wordSecond": "유월 (yuwol)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "七月 (しちがつ, shichigatsu)", + "wordSecond": "칠월 (chirwol)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "八月 (はちがつ, hachigatsu)", + "wordSecond": "팔월 (parwol)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "九月 (くがつ, kugatsu)", + "wordSecond": "구월 (guwol)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "十月 (じゅうがつ, jūgatsu)", + "wordSecond": "시월 (siwol)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "十一月 (じゅういちがつ, jūichigatsu)", + "wordSecond": "십일월 (sibirwol)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "十二月 (じゅうにがつ, jūnigatsu)", + "wordSecond": "십이월 (sibiwol)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "春 (はる, haru)", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "夏 (なつ, natsu)", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "秋 (あき, aki)", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "冬 (ふゆ, fuyu)", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "朝 (あさ, asa)", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "午後 (ごご, gogo)", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "夜 (よる, yoru)", + "wordSecond": "밤 (bam)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "時間 (じかん, jikan)", + "wordSecond": "시간 (sigan)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "分 (ふん, fun)", + "wordSecond": "분 (bun)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "今日 (きょう, kyō)", + "wordSecond": "오늘 (oneul)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "明日 (あした, ashita)", + "wordSecond": "내일 (naeil)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "昨日 (きのう, kinō)", + "wordSecond": "어제 (eoje)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "今 (いま, ima)", + "wordSecond": "지금 (jigeum)", + "createdAt": "2026-02-19T13:02:37.343Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_ja_pl_A1.json b/output/2026_02_19_numbers_time_ja_pl_A1.json new file mode 100644 index 0000000..d005c68 --- /dev/null +++ b/output/2026_02_19_numbers_time_ja_pl_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:02:57.861Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "一 (いち, ichi)", + "wordSecond": "jeden", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "二 (に, ni)", + "wordSecond": "dwa", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "三 (さん, san)", + "wordSecond": "trzy", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "四 (し/よん, shi/yon)", + "wordSecond": "cztery", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "五 (ご, go)", + "wordSecond": "pięć", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "六 (ろく, roku)", + "wordSecond": "sześć", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "七 (しち/なな, shichi/nana)", + "wordSecond": "siedem", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "八 (はち, hachi)", + "wordSecond": "osiem", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "九 (きゅう/く, kyū/ku)", + "wordSecond": "dziewięć", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "十 (じゅう, jū)", + "wordSecond": "dziesięć", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "十一 (じゅういち, jūichi)", + "wordSecond": "jedenaście", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "十二 (じゅうに, jūni)", + "wordSecond": "dwanaście", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "十三 (じゅうさん, jūsan)", + "wordSecond": "trzynaście", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "十四 (じゅうし/じゅうよん, jūshi/jūyon)", + "wordSecond": "czternaście", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "十五 (じゅうご, jūgo)", + "wordSecond": "piętnaście", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "十六 (じゅうろく, jūroku)", + "wordSecond": "szesnaście", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "十七 (じゅうしち/じゅうなな, jūshichi/jūnana)", + "wordSecond": "siedemnaście", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "十八 (じゅうはち, jūhachi)", + "wordSecond": "osiemnaście", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "十九 (じゅうきゅう/じゅうく, jūkyū/jūku)", + "wordSecond": "dziewiętnaście", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "二十 (にじゅう, nijū)", + "wordSecond": "dwadzieścia", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "三十 (さんじゅう, sanjū)", + "wordSecond": "trzydzieści", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "四十 (よんじゅう, yonjū)", + "wordSecond": "czterdzieści", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "五十 (ごじゅう, gojū)", + "wordSecond": "pięćdziesiąt", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "百 (ひゃく, hyaku)", + "wordSecond": "sto", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "千 (せん, sen)", + "wordSecond": "tysiąc", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "一番目 (いちばんめ, ichibanme)", + "wordSecond": "pierwszy", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "二番目 (にばんめ, nibanme)", + "wordSecond": "drugi", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "三番目 (さんばんめ, sanbanme)", + "wordSecond": "trzeci", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "月曜日 (げつようび, getsuyōbi)", + "wordSecond": "poniedziałek", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "火曜日 (かようび, kayōbi)", + "wordSecond": "wtorek", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "水曜日 (すいようび, suiyōbi)", + "wordSecond": "środa", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "木曜日 (もくようび, mokuyōbi)", + "wordSecond": "czwartek", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "金曜日 (きんようび, kinyōbi)", + "wordSecond": "piątek", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "土曜日 (どようび, doyōbi)", + "wordSecond": "sobota", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "日曜日 (にちようび, nichiyōbi)", + "wordSecond": "niedziela", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "一月 (いちがつ, ichigatsu)", + "wordSecond": "styczeń", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "二月 (にがつ, nigatsu)", + "wordSecond": "luty", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "三月 (さんがつ, sangatsu)", + "wordSecond": "marzec", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "四月 (しがつ, shigatsu)", + "wordSecond": "kwiecień", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "五月 (ごがつ, gogatsu)", + "wordSecond": "maj", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "六月 (ろくがつ, rokugatsu)", + "wordSecond": "czerwiec", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "七月 (しちがつ, shichigatsu)", + "wordSecond": "lipiec", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "八月 (はちがつ, hachigatsu)", + "wordSecond": "sierpień", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "九月 (くがつ, kugatsu)", + "wordSecond": "wrzesień", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "十月 (じゅうがつ, jūgatsu)", + "wordSecond": "październik", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "十一月 (じゅういちがつ, jūichigatsu)", + "wordSecond": "listopad", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "十二月 (じゅうにがつ, jūnigatsu)", + "wordSecond": "grudzień", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "春 (はる, haru)", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "夏 (なつ, natsu)", + "wordSecond": "lato", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "秋 (あき, aki)", + "wordSecond": "jesień", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "冬 (ふゆ, fuyu)", + "wordSecond": "zima", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "朝 (あさ, asa)", + "wordSecond": "rano", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "午前 (ごぜん, gozen)", + "wordSecond": "rano (przed południem)", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "午後 (ごご, gogo)", + "wordSecond": "popołudnie", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "夜 (よる, yoru)", + "wordSecond": "wieczór/noc", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "時間 (じかん, jikan)", + "wordSecond": "godzina", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "分 (ふん, fun)", + "wordSecond": "minuta", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "今日 (きょう, kyō)", + "wordSecond": "dzisiaj", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "明日 (あした, ashita)", + "wordSecond": "jutro", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "昨日 (きのう, kinō)", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T13:02:57.861Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_ja_zh_A1.json b/output/2026_02_19_numbers_time_ja_zh_A1.json new file mode 100644 index 0000000..5617fce --- /dev/null +++ b/output/2026_02_19_numbers_time_ja_zh_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:02:12.961Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "一 (いち, ichi)", + "wordSecond": "一 (yī)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "二 (に, ni)", + "wordSecond": "二 (èr)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "三 (さん, san)", + "wordSecond": "三 (sān)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "四 (し/よん, shi/yon)", + "wordSecond": "四 (sì)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "五 (ご, go)", + "wordSecond": "五 (wǔ)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "六 (ろく, roku)", + "wordSecond": "六 (liù)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "七 (しち/なな, shichi/nana)", + "wordSecond": "七 (qī)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "八 (はち, hachi)", + "wordSecond": "八 (bā)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "九 (きゅう/く, kyū/ku)", + "wordSecond": "九 (jiǔ)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "十 (じゅう, jū)", + "wordSecond": "十 (shí)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "十一 (じゅういち, jūichi)", + "wordSecond": "十一 (shíyī)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "十二 (じゅうに, jūni)", + "wordSecond": "十二 (shí'èr)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "十三 (じゅうさん, jūsan)", + "wordSecond": "十三 (shísān)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "十四 (じゅうし/じゅうよん, jūshi/jūyon)", + "wordSecond": "十四 (shísì)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "十五 (じゅうご, jūgo)", + "wordSecond": "十五 (shíwǔ)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "十六 (じゅうろく, jūroku)", + "wordSecond": "十六 (shíliù)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "十七 (じゅうしち/じゅうなな, jūshichi/jūnana)", + "wordSecond": "十七 (shíqī)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "十八 (じゅうはち, jūhachi)", + "wordSecond": "十八 (shíbā)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "十九 (じゅうきゅう/じゅうく, jūkyū/jūku)", + "wordSecond": "十九 (shíjiǔ)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "二十 (にじゅう, nijū)", + "wordSecond": "二十 (èrshí)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "三十 (さんじゅう, sanjū)", + "wordSecond": "三十 (sānshí)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "四十 (よんじゅう, yonjū)", + "wordSecond": "四十 (sìshí)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "五十 (ごじゅう, gojū)", + "wordSecond": "五十 (wǔshí)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "百 (ひゃく, hyaku)", + "wordSecond": "百 (bǎi)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "千 (せん, sen)", + "wordSecond": "千 (qiān)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "一番目 (いちばんめ, ichibanme)", + "wordSecond": "第一 (dìyī)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "二番目 (にばんめ, nibanme)", + "wordSecond": "第二 (dì'èr)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "三番目 (さんばんめ, sanbanme)", + "wordSecond": "第三 (dìsān)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "月曜日 (げつようび, getsuyōbi)", + "wordSecond": "星期一 (xīngqīyī)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "火曜日 (かようび, kayōbi)", + "wordSecond": "星期二 (xīngqī'èr)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "水曜日 (すいようび, suiyōbi)", + "wordSecond": "星期三 (xīngqīsān)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "木曜日 (もくようび, mokuyōbi)", + "wordSecond": "星期四 (xīngqīsì)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "金曜日 (きんようび, kinyōbi)", + "wordSecond": "星期五 (xīngqīwǔ)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "土曜日 (どようび, doyōbi)", + "wordSecond": "星期六 (xīngqīliù)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "日曜日 (にちようび, nichiyōbi)", + "wordSecond": "星期日 (xīngqīrì)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "一月 (いちがつ, ichigatsu)", + "wordSecond": "一月 (yīyuè)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "二月 (にがつ, nigatsu)", + "wordSecond": "二月 (èryuè)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "三月 (さんがつ, sangatsu)", + "wordSecond": "三月 (sānyuè)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "四月 (しがつ, shigatsu)", + "wordSecond": "四月 (sìyuè)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "五月 (ごがつ, gogatsu)", + "wordSecond": "五月 (wǔyuè)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "六月 (ろくがつ, rokugatsu)", + "wordSecond": "六月 (liùyuè)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "七月 (しちがつ, shichigatsu)", + "wordSecond": "七月 (qīyuè)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "八月 (はちがつ, hachigatsu)", + "wordSecond": "八月 (bāyuè)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "九月 (くがつ, kugatsu)", + "wordSecond": "九月 (jiǔyuè)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "十月 (じゅうがつ, jūgatsu)", + "wordSecond": "十月 (shíyuè)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "十一月 (じゅういちがつ, jūichigatsu)", + "wordSecond": "十一月 (shíyīyuè)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "十二月 (じゅうにがつ, jūnigatsu)", + "wordSecond": "十二月 (shí'èryuè)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "春 (はる, haru)", + "wordSecond": "春天 (chūntiān)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "夏 (なつ, natsu)", + "wordSecond": "夏天 (xiàtiān)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "秋 (あき, aki)", + "wordSecond": "秋天 (qiūtiān)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "冬 (ふゆ, fuyu)", + "wordSecond": "冬天 (dōngtiān)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "朝 (あさ, asa)", + "wordSecond": "早上 (zǎoshang)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "午後 (ごご, gogo)", + "wordSecond": "下午 (xiàwǔ)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "夜 (よる, yoru)", + "wordSecond": "晚上 (wǎnshang)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "時 (じ, ji)", + "wordSecond": "小时 (xiǎoshí)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "分 (ふん, fun)", + "wordSecond": "分钟 (fēnzhōng)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "今日 (きょう, kyō)", + "wordSecond": "今天 (jīntiān)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "明日 (あした, ashita)", + "wordSecond": "明天 (míngtiān)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "昨日 (きのう, kinō)", + "wordSecond": "昨天 (zuótiān)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "今 (いま, ima)", + "wordSecond": "现在 (xiànzài)", + "createdAt": "2026-02-19T13:02:12.961Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_ko_pl_A1.json b/output/2026_02_19_numbers_time_ko_pl_A1.json new file mode 100644 index 0000000..dfe3ea3 --- /dev/null +++ b/output/2026_02_19_numbers_time_ko_pl_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:03:52.077Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "하나 (hana)", + "wordSecond": "jeden", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "둘 (dul)", + "wordSecond": "dwa", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "셋 (set)", + "wordSecond": "trzy", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "넷 (net)", + "wordSecond": "cztery", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "다섯 (daseot)", + "wordSecond": "pięć", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "여섯 (yeoseot)", + "wordSecond": "sześć", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "일곱 (ilgop)", + "wordSecond": "siedem", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "여덟 (yeodeol)", + "wordSecond": "osiem", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "아홉 (ahop)", + "wordSecond": "dziewięć", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "열 (yeol)", + "wordSecond": "dziesięć", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "열하나 (yeolhana)", + "wordSecond": "jedenaście", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "열둘 (yeoldul)", + "wordSecond": "dwanaście", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "열셋 (yeolset)", + "wordSecond": "trzynaście", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "열넷 (yeolnet)", + "wordSecond": "czternaście", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "열다섯 (yeoldaseot)", + "wordSecond": "piętnaście", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "열여섯 (yeolyeoseot)", + "wordSecond": "szesnaście", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "열일곱 (yeorilgop)", + "wordSecond": "siedemnaście", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "열여덟 (yeoryeodeol)", + "wordSecond": "osiemnaście", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "열아홉 (yeorahop)", + "wordSecond": "dziewiętnaście", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "스물 (seumul)", + "wordSecond": "dwadzieścia", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "서른 (seoreun)", + "wordSecond": "trzydzieści", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "마흔 (maheun)", + "wordSecond": "czterdzieści", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "쉰 (swin)", + "wordSecond": "pięćdziesiąt", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "백 (baek)", + "wordSecond": "sto", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "천 (cheon)", + "wordSecond": "tysiąc", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "첫 번째 (cheot beonjjae)", + "wordSecond": "pierwszy", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "두 번째 (du beonjjae)", + "wordSecond": "drugi", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "세 번째 (se beonjjae)", + "wordSecond": "trzeci", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "네 번째 (ne beonjjae)", + "wordSecond": "czwarty", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "다섯 번째 (daseot beonjjae)", + "wordSecond": "piąty", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "월요일 (woryoil)", + "wordSecond": "poniedziałek", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "화요일 (hwayoil)", + "wordSecond": "wtorek", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "수요일 (suyoil)", + "wordSecond": "środa", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "목요일 (mogyoil)", + "wordSecond": "czwartek", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "금요일 (geumyoil)", + "wordSecond": "piątek", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "토요일 (toyoil)", + "wordSecond": "sobota", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "일요일 (iryoil)", + "wordSecond": "niedziela", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "1월 (irwol)", + "wordSecond": "styczeń", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "2월 (iwol)", + "wordSecond": "luty", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "3월 (samwol)", + "wordSecond": "marzec", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "4월 (sawol)", + "wordSecond": "kwiecień", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "5월 (owol)", + "wordSecond": "maj", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "6월 (yuwol)", + "wordSecond": "czerwiec", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "7월 (chirwol)", + "wordSecond": "lipiec", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "8월 (parwol)", + "wordSecond": "sierpień", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "9월 (guwol)", + "wordSecond": "wrzesień", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "10월 (siwol)", + "wordSecond": "październik", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "11월 (sibirwol)", + "wordSecond": "listopad", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "12월 (sibiwol)", + "wordSecond": "grudzień", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "봄 (bom)", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "여름 (yeoreum)", + "wordSecond": "lato", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "가을 (gaeul)", + "wordSecond": "jesień", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "겨울 (gyeoul)", + "wordSecond": "zima", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "아침 (achim)", + "wordSecond": "rano", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "오후 (ohu)", + "wordSecond": "popołudnie", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "저녁 (jeonyeok)", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "시간 (sigan)", + "wordSecond": "godzina", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "분 (bun)", + "wordSecond": "minuta", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "오늘 (oneul)", + "wordSecond": "dzisiaj", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "내일 (naeil)", + "wordSecond": "jutro", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "어제 (eoje)", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T13:03:52.077Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_pt_de_A1.json b/output/2026_02_19_numbers_time_pt_de_A1.json new file mode 100644 index 0000000..8c52057 --- /dev/null +++ b/output/2026_02_19_numbers_time_pt_de_A1.json @@ -0,0 +1,877 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:56:20.820Z", + "metadata": { + "itemCount": 66, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "um", + "wordSecond": "eins", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dois", + "wordSecond": "zwei", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "três", + "wordSecond": "drei", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quatro", + "wordSecond": "vier", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cinco", + "wordSecond": "fünf", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "seis", + "wordSecond": "sechs", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sete", + "wordSecond": "sieben", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "oito", + "wordSecond": "acht", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nove", + "wordSecond": "neun", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dez", + "wordSecond": "zehn", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "onze", + "wordSecond": "elf", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "doze", + "wordSecond": "zwölf", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "treze", + "wordSecond": "dreizehn", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "catorze", + "wordSecond": "vierzehn", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quinze", + "wordSecond": "fünfzehn", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dezesseis", + "wordSecond": "sechzehn", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dezessete", + "wordSecond": "siebzehn", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dezoito", + "wordSecond": "achtzehn", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dezenove", + "wordSecond": "neunzehn", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vinte", + "wordSecond": "zwanzig", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "trinta", + "wordSecond": "dreißig", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quarenta", + "wordSecond": "vierzig", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cinquenta", + "wordSecond": "fünfzig", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cem", + "wordSecond": "hundert", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mil", + "wordSecond": "tausend", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "primeiro", + "wordSecond": "erste", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "segundo", + "wordSecond": "zweite", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "terceiro", + "wordSecond": "dritte", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quarto", + "wordSecond": "vierte", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quinto", + "wordSecond": "fünfte", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sexto", + "wordSecond": "sechste", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sétimo", + "wordSecond": "siebte", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "oitavo", + "wordSecond": "achte", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nono", + "wordSecond": "neunte", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "décimo", + "wordSecond": "zehnte", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "segunda-feira", + "wordSecond": "Montag", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "terça-feira", + "wordSecond": "Dienstag", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quarta-feira", + "wordSecond": "Mittwoch", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quinta-feira", + "wordSecond": "Donnerstag", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sexta-feira", + "wordSecond": "Freitag", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sábado", + "wordSecond": "Samstag", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "domingo", + "wordSecond": "Sonntag", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "janeiro", + "wordSecond": "Januar", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fevereiro", + "wordSecond": "Februar", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "março", + "wordSecond": "März", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "abril", + "wordSecond": "April", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "maio", + "wordSecond": "Mai", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "junho", + "wordSecond": "Juni", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "julho", + "wordSecond": "Juli", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "agosto", + "wordSecond": "August", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "setembro", + "wordSecond": "September", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "outubro", + "wordSecond": "Oktober", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "novembro", + "wordSecond": "November", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dezembro", + "wordSecond": "Dezember", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "primavera", + "wordSecond": "Frühling", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "verão", + "wordSecond": "Sommer", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "outono", + "wordSecond": "Herbst", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "inverno", + "wordSecond": "Winter", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "manhã", + "wordSecond": "Morgen", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tarde", + "wordSecond": "Nachmittag", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "noite", + "wordSecond": "Abend", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "hora", + "wordSecond": "Stunde", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "minuto", + "wordSecond": "Minute", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "hoje", + "wordSecond": "heute", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "amanhã", + "wordSecond": "morgen", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ontem", + "wordSecond": "gestern", + "createdAt": "2026-02-19T12:56:20.820Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_pt_fr_A1.json b/output/2026_02_19_numbers_time_pt_fr_A1.json new file mode 100644 index 0000000..f9d5b5d --- /dev/null +++ b/output/2026_02_19_numbers_time_pt_fr_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:56:31.881Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "um", + "wordSecond": "un", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dois", + "wordSecond": "deux", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "três", + "wordSecond": "trois", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quatro", + "wordSecond": "quatre", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cinco", + "wordSecond": "cinq", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "seis", + "wordSecond": "six", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sete", + "wordSecond": "sept", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "oito", + "wordSecond": "huit", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "nove", + "wordSecond": "neuf", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dez", + "wordSecond": "dix", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "onze", + "wordSecond": "onze", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "doze", + "wordSecond": "douze", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "treze", + "wordSecond": "treize", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "catorze", + "wordSecond": "quatorze", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quinze", + "wordSecond": "quinze", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dezesseis", + "wordSecond": "seize", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dezessete", + "wordSecond": "dix-sept", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dezoito", + "wordSecond": "dix-huit", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dezenove", + "wordSecond": "dix-neuf", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vinte", + "wordSecond": "vingt", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "trinta", + "wordSecond": "trente", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quarenta", + "wordSecond": "quarante", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cinquenta", + "wordSecond": "cinquante", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cem", + "wordSecond": "cent", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mil", + "wordSecond": "mille", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "primeiro", + "wordSecond": "premier", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "segundo", + "wordSecond": "deuxième", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "terceiro", + "wordSecond": "troisième", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quarto", + "wordSecond": "quatrième", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quinto", + "wordSecond": "cinquième", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "domingo", + "wordSecond": "dimanche", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "segunda-feira", + "wordSecond": "lundi", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "terça-feira", + "wordSecond": "mardi", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quarta-feira", + "wordSecond": "mercredi", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quinta-feira", + "wordSecond": "jeudi", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sexta-feira", + "wordSecond": "vendredi", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sábado", + "wordSecond": "samedi", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "janeiro", + "wordSecond": "janvier", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fevereiro", + "wordSecond": "février", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "março", + "wordSecond": "mars", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "abril", + "wordSecond": "avril", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "maio", + "wordSecond": "mai", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "junho", + "wordSecond": "juin", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "julho", + "wordSecond": "juillet", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "agosto", + "wordSecond": "août", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "setembro", + "wordSecond": "septembre", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "outubro", + "wordSecond": "octobre", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "novembro", + "wordSecond": "novembre", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dezembro", + "wordSecond": "décembre", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "primavera", + "wordSecond": "printemps", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "verão", + "wordSecond": "été", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "outono", + "wordSecond": "automne", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "inverno", + "wordSecond": "hiver", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "manhã", + "wordSecond": "matin", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tarde", + "wordSecond": "après-midi", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "noite", + "wordSecond": "soir", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "hora", + "wordSecond": "heure", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "minuto", + "wordSecond": "minute", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "hoje", + "wordSecond": "aujourd'hui", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "amanhã", + "wordSecond": "demain", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ontem", + "wordSecond": "hier", + "createdAt": "2026-02-19T12:56:31.881Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_pt_it_A1.json b/output/2026_02_19_numbers_time_pt_it_A1.json new file mode 100644 index 0000000..6df6a87 --- /dev/null +++ b/output/2026_02_19_numbers_time_pt_it_A1.json @@ -0,0 +1,877 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:56:44.177Z", + "metadata": { + "itemCount": 66, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "um", + "wordSecond": "uno", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dois", + "wordSecond": "due", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "três", + "wordSecond": "tre", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quatro", + "wordSecond": "quattro", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cinco", + "wordSecond": "cinque", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "seis", + "wordSecond": "sei", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sete", + "wordSecond": "sette", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "oito", + "wordSecond": "otto", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nove", + "wordSecond": "nove", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dez", + "wordSecond": "dieci", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "onze", + "wordSecond": "undici", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "doze", + "wordSecond": "dodici", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "treze", + "wordSecond": "tredici", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "catorze", + "wordSecond": "quattordici", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quinze", + "wordSecond": "quindici", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dezesseis", + "wordSecond": "sedici", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dezessete", + "wordSecond": "diciassette", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dezoito", + "wordSecond": "diciotto", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dezenove", + "wordSecond": "diciannove", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vinte", + "wordSecond": "venti", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "trinta", + "wordSecond": "trenta", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quarenta", + "wordSecond": "quaranta", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cinquenta", + "wordSecond": "cinquanta", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cem", + "wordSecond": "cento", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mil", + "wordSecond": "mille", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "primeiro", + "wordSecond": "primo", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "segundo", + "wordSecond": "secondo", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "terceiro", + "wordSecond": "terzo", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quarto", + "wordSecond": "quarto", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quinto", + "wordSecond": "quinto", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sexto", + "wordSecond": "sesto", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sétimo", + "wordSecond": "settimo", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "oitavo", + "wordSecond": "ottavo", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nono", + "wordSecond": "nono", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "décimo", + "wordSecond": "decimo", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "segunda-feira", + "wordSecond": "lunedì", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "terça-feira", + "wordSecond": "martedì", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quarta-feira", + "wordSecond": "mercoledì", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quinta-feira", + "wordSecond": "giovedì", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sexta-feira", + "wordSecond": "venerdì", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sábado", + "wordSecond": "sabato", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "domingo", + "wordSecond": "domenica", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "janeiro", + "wordSecond": "gennaio", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fevereiro", + "wordSecond": "febbraio", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "março", + "wordSecond": "marzo", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "abril", + "wordSecond": "aprile", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "maio", + "wordSecond": "maggio", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "junho", + "wordSecond": "giugno", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "julho", + "wordSecond": "luglio", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "agosto", + "wordSecond": "agosto", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "setembro", + "wordSecond": "settembre", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "outubro", + "wordSecond": "ottobre", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "novembro", + "wordSecond": "novembre", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dezembro", + "wordSecond": "dicembre", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "primavera", + "wordSecond": "primavera", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "verão", + "wordSecond": "estate", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "outono", + "wordSecond": "autunno", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "inverno", + "wordSecond": "inverno", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "manhã", + "wordSecond": "mattina", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tarde", + "wordSecond": "pomeriggio", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "noite", + "wordSecond": "sera", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "hora", + "wordSecond": "ora", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "minuto", + "wordSecond": "minuto", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "hoje", + "wordSecond": "oggi", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "amanhã", + "wordSecond": "domani", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ontem", + "wordSecond": "ieri", + "createdAt": "2026-02-19T12:56:44.177Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_pt_ja_A1.json b/output/2026_02_19_numbers_time_pt_ja_A1.json new file mode 100644 index 0000000..485a6a1 --- /dev/null +++ b/output/2026_02_19_numbers_time_pt_ja_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:57:04.617Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "um", + "wordSecond": "一 (いち, ichi)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dois", + "wordSecond": "二 (に, ni)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "três", + "wordSecond": "三 (さん, san)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "quatro", + "wordSecond": "四 (し/よん, shi/yon)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cinco", + "wordSecond": "五 (ご, go)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "seis", + "wordSecond": "六 (ろく, roku)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sete", + "wordSecond": "七 (しち/なな, shichi/nana)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "oito", + "wordSecond": "八 (はち, hachi)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "nove", + "wordSecond": "九 (く/きゅう, ku/kyū)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dez", + "wordSecond": "十 (じゅう, jū)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "onze", + "wordSecond": "十一 (じゅういち, jū ichi)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "doze", + "wordSecond": "十二 (じゅうに, jū ni)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "treze", + "wordSecond": "十三 (じゅうさん, jū san)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "catorze", + "wordSecond": "十四 (じゅうし/じゅうよん, jū shi/jū yon)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "quinze", + "wordSecond": "十五 (じゅうご, jū go)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dezesseis", + "wordSecond": "十六 (じゅうろく, jū roku)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dezessete", + "wordSecond": "十七 (じゅうしち/じゅうなな, jū shichi/jū nana)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dezoito", + "wordSecond": "十八 (じゅうはち, jū hachi)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dezenove", + "wordSecond": "十九 (じゅうく/じゅうきゅう, jū ku/jū kyū)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "vinte", + "wordSecond": "二十 (にじゅう, ni jū)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "trinta", + "wordSecond": "三十 (さんじゅう, san jū)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "quarenta", + "wordSecond": "四十 (よんじゅう, yon jū)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cinquenta", + "wordSecond": "五十 (ごじゅう, go jū)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cem", + "wordSecond": "百 (ひゃく, hyaku)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "mil", + "wordSecond": "千 (せん, sen)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "primeiro", + "wordSecond": "一番目 (いちばんめ, ichiban me)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "segundo", + "wordSecond": "二番目 (にばんめ, niban me)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "terceiro", + "wordSecond": "三番目 (さんばんめ, sanban me)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "domingo", + "wordSecond": "日曜日 (にちようび, nichiyōbi)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "segunda-feira", + "wordSecond": "月曜日 (げつようび, getsuyōbi)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "terça-feira", + "wordSecond": "火曜日 (かようび, kayōbi)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "quarta-feira", + "wordSecond": "水曜日 (すいようび, suiyōbi)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "quinta-feira", + "wordSecond": "木曜日 (もくようび, mokuyōbi)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sexta-feira", + "wordSecond": "金曜日 (きんようび, kin'yōbi)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sábado", + "wordSecond": "土曜日 (どようび, doyōbi)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "janeiro", + "wordSecond": "一月 (いちがつ, ichigatsu)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "fevereiro", + "wordSecond": "二月 (にがつ, nigatsu)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "março", + "wordSecond": "三月 (さんがつ, sangatsu)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "abril", + "wordSecond": "四月 (しがつ, shigatsu)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "maio", + "wordSecond": "五月 (ごがつ, gogatsu)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "junho", + "wordSecond": "六月 (ろくがつ, rokugatsu)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "julho", + "wordSecond": "七月 (しちがつ, shichigatsu)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "agosto", + "wordSecond": "八月 (はちがつ, hachigatsu)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "setembro", + "wordSecond": "九月 (くがつ, kugatsu)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "outubro", + "wordSecond": "十月 (じゅうがつ, jūgatsu)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "novembro", + "wordSecond": "十一月 (じゅういちがつ, jūichigatsu)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dezembro", + "wordSecond": "十二月 (じゅうにがつ, jūnigatsu)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "primavera", + "wordSecond": "春 (はる, haru)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "verão", + "wordSecond": "夏 (なつ, natsu)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "outono", + "wordSecond": "秋 (あき, aki)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "inverno", + "wordSecond": "冬 (ふゆ, fuyu)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "manhã", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tarde", + "wordSecond": "午後 (ごご, gogo)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "noite", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "hora", + "wordSecond": "時間 (じかん, jikan)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "minuto", + "wordSecond": "分 (ふん, fun)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "hoje", + "wordSecond": "今日 (きょう, kyō)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "amanhã", + "wordSecond": "明日 (あした, ashita)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ontem", + "wordSecond": "昨日 (きのう, kinō)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "agora", + "wordSecond": "今 (いま, ima)", + "createdAt": "2026-02-19T12:57:04.617Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_pt_ko_A1.json b/output/2026_02_19_numbers_time_pt_ko_A1.json new file mode 100644 index 0000000..896113a --- /dev/null +++ b/output/2026_02_19_numbers_time_pt_ko_A1.json @@ -0,0 +1,812 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:57:39.653Z", + "metadata": { + "itemCount": 61, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "um", + "wordSecond": "하나 (hana)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dois", + "wordSecond": "둘 (dul)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "três", + "wordSecond": "셋 (set)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "quatro", + "wordSecond": "넷 (net)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cinco", + "wordSecond": "다섯 (daseot)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "seis", + "wordSecond": "여섯 (yeoseot)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sete", + "wordSecond": "일곱 (ilgop)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "oito", + "wordSecond": "여덟 (yeodeol)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "nove", + "wordSecond": "아홉 (ahop)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dez", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "onze", + "wordSecond": "열하나 (yeolhana)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "doze", + "wordSecond": "열둘 (yeoldul)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "treze", + "wordSecond": "열셋 (yeolset)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "catorze", + "wordSecond": "열넷 (yeolnet)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "quinze", + "wordSecond": "열다섯 (yeoldaseot)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dezesseis", + "wordSecond": "열여섯 (yeolyeoseot)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dezessete", + "wordSecond": "열일곱 (yeorilgop)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dezoito", + "wordSecond": "열여덟 (yeoryeodeol)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dezenove", + "wordSecond": "열아홉 (yeorahop)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "vinte", + "wordSecond": "스물 (seumul)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "trinta", + "wordSecond": "서른 (seoreun)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "quarenta", + "wordSecond": "마흔 (maheun)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cinquenta", + "wordSecond": "쉰 (swin)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cem", + "wordSecond": "백 (baek)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "mil", + "wordSecond": "천 (cheon)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "primeiro", + "wordSecond": "첫 번째 (cheot beonjjae)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "segundo", + "wordSecond": "두 번째 (du beonjjae)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "terceiro", + "wordSecond": "세 번째 (se beonjjae)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "quarto", + "wordSecond": "네 번째 (ne beonjjae)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "quinto", + "wordSecond": "다섯 번째 (daseot beonjjae)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "segunda-feira", + "wordSecond": "월요일 (woryoil)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "terça-feira", + "wordSecond": "화요일 (hwayoil)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "quarta-feira", + "wordSecond": "수요일 (suyoil)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "quinta-feira", + "wordSecond": "목요일 (mogyoil)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sexta-feira", + "wordSecond": "금요일 (geumyoil)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sábado", + "wordSecond": "토요일 (toyoil)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "domingo", + "wordSecond": "일요일 (iryoil)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "janeiro", + "wordSecond": "1월 (irwol)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "fevereiro", + "wordSecond": "2월 (iwol)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "março", + "wordSecond": "3월 (samwol)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "abril", + "wordSecond": "4월 (sawol)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "maio", + "wordSecond": "5월 (owol)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "junho", + "wordSecond": "6월 (yuwol)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "julho", + "wordSecond": "7월 (chirwol)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "agosto", + "wordSecond": "8월 (parwol)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "setembro", + "wordSecond": "9월 (guwol)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "outubro", + "wordSecond": "10월 (siwol)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "novembro", + "wordSecond": "11월 (sibirwol)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dezembro", + "wordSecond": "12월 (sibiwol)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "primavera", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "verão", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "outono", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "inverno", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "manhã", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tarde", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "noite", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "hora", + "wordSecond": "시간 (sigan)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "minuto", + "wordSecond": "분 (bun)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "hoje", + "wordSecond": "오늘 (oneul)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "amanhã", + "wordSecond": "내일 (naeil)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ontem", + "wordSecond": "어제 (eoje)", + "createdAt": "2026-02-19T12:57:39.653Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_pt_pl_A1.json b/output/2026_02_19_numbers_time_pt_pl_A1.json new file mode 100644 index 0000000..63f9dfd --- /dev/null +++ b/output/2026_02_19_numbers_time_pt_pl_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:57:51.899Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "um", + "wordSecond": "jeden", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dois", + "wordSecond": "dwa", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "três", + "wordSecond": "trzy", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "quatro", + "wordSecond": "cztery", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cinco", + "wordSecond": "pięć", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "seis", + "wordSecond": "sześć", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sete", + "wordSecond": "siedem", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "oito", + "wordSecond": "osiem", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "nove", + "wordSecond": "dziewięć", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dez", + "wordSecond": "dziesięć", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "onze", + "wordSecond": "jedenaście", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "doze", + "wordSecond": "dwanaście", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "treze", + "wordSecond": "trzynaście", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "catorze", + "wordSecond": "czternaście", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "quinze", + "wordSecond": "piętnaście", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dezesseis", + "wordSecond": "szesnaście", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dezessete", + "wordSecond": "siedemnaście", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dezoito", + "wordSecond": "osiemnaście", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dezenove", + "wordSecond": "dziewiętnaście", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "vinte", + "wordSecond": "dwadzieścia", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "trinta", + "wordSecond": "trzydzieści", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "quarenta", + "wordSecond": "czterdzieści", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cinquenta", + "wordSecond": "pięćdziesiąt", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cem", + "wordSecond": "sto", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "mil", + "wordSecond": "tysiąc", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "primeiro", + "wordSecond": "pierwszy", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "segundo", + "wordSecond": "drugi", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "terceiro", + "wordSecond": "trzeci", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "domingo", + "wordSecond": "niedziela", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "segunda-feira", + "wordSecond": "poniedziałek", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "terça-feira", + "wordSecond": "wtorek", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "quarta-feira", + "wordSecond": "środa", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "quinta-feira", + "wordSecond": "czwartek", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sexta-feira", + "wordSecond": "piątek", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sábado", + "wordSecond": "sobota", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "janeiro", + "wordSecond": "styczeń", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "fevereiro", + "wordSecond": "luty", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "março", + "wordSecond": "marzec", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "abril", + "wordSecond": "kwiecień", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "maio", + "wordSecond": "maj", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "junho", + "wordSecond": "czerwiec", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "julho", + "wordSecond": "lipiec", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "agosto", + "wordSecond": "sierpień", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "setembro", + "wordSecond": "wrzesień", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "outubro", + "wordSecond": "październik", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "novembro", + "wordSecond": "listopad", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dezembro", + "wordSecond": "grudzień", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "primavera", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "verão", + "wordSecond": "lato", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "outono", + "wordSecond": "jesień", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "inverno", + "wordSecond": "zima", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "manhã", + "wordSecond": "rano", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tarde", + "wordSecond": "popołudnie", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "noite", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "hora", + "wordSecond": "godzina", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "minuto", + "wordSecond": "minuta", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "segundo", + "wordSecond": "sekunda", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "hoje", + "wordSecond": "dzisiaj", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "amanhã", + "wordSecond": "jutro", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ontem", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T12:57:51.899Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_pt_zh_A1.json b/output/2026_02_19_numbers_time_pt_zh_A1.json new file mode 100644 index 0000000..e0cde6e --- /dev/null +++ b/output/2026_02_19_numbers_time_pt_zh_A1.json @@ -0,0 +1,877 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:57:22.467Z", + "metadata": { + "itemCount": 66, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "um", + "wordSecond": "一 (yī)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dois", + "wordSecond": "二 (èr)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "três", + "wordSecond": "三 (sān)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "quatro", + "wordSecond": "四 (sì)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cinco", + "wordSecond": "五 (wǔ)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "seis", + "wordSecond": "六 (liù)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sete", + "wordSecond": "七 (qī)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "oito", + "wordSecond": "八 (bā)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "nove", + "wordSecond": "九 (jiǔ)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dez", + "wordSecond": "十 (shí)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "onze", + "wordSecond": "十一 (shíyī)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "doze", + "wordSecond": "十二 (shí'èr)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "treze", + "wordSecond": "十三 (shísān)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "catorze", + "wordSecond": "十四 (shísì)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "quinze", + "wordSecond": "十五 (shíwǔ)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dezesseis", + "wordSecond": "十六 (shíliù)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dezessete", + "wordSecond": "十七 (shíqī)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dezoito", + "wordSecond": "十八 (shíbā)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dezenove", + "wordSecond": "十九 (shíjiǔ)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "vinte", + "wordSecond": "二十 (èrshí)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "trinta", + "wordSecond": "三十 (sānshí)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "quarenta", + "wordSecond": "四十 (sìshí)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cinquenta", + "wordSecond": "五十 (wǔshí)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cem", + "wordSecond": "一百 (yībǎi)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "mil", + "wordSecond": "一千 (yīqiān)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "primeiro", + "wordSecond": "第一 (dìyī)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "segundo", + "wordSecond": "第二 (dì'èr)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "terceiro", + "wordSecond": "第三 (dìsān)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "quarto", + "wordSecond": "第四 (dìsì)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "quinto", + "wordSecond": "第五 (dìwǔ)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sexto", + "wordSecond": "第六 (dìliù)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sétimo", + "wordSecond": "第七 (dìqī)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "oitavo", + "wordSecond": "第八 (dìbā)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "nono", + "wordSecond": "第九 (dìjiǔ)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "décimo", + "wordSecond": "第十 (dìshí)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "segunda-feira", + "wordSecond": "星期一 (xīngqīyī)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "terça-feira", + "wordSecond": "星期二 (xīngqī'èr)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "quarta-feira", + "wordSecond": "星期三 (xīngqīsān)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "quinta-feira", + "wordSecond": "星期四 (xīngqīsì)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sexta-feira", + "wordSecond": "星期五 (xīngqīwǔ)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sábado", + "wordSecond": "星期六 (xīngqīliù)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "domingo", + "wordSecond": "星期日 (xīngqīrì)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "janeiro", + "wordSecond": "一月 (yīyuè)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fevereiro", + "wordSecond": "二月 (èryuè)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "março", + "wordSecond": "三月 (sānyuè)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "abril", + "wordSecond": "四月 (sìyuè)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "maio", + "wordSecond": "五月 (wǔyuè)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "junho", + "wordSecond": "六月 (liùyuè)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "julho", + "wordSecond": "七月 (qīyuè)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "agosto", + "wordSecond": "八月 (bāyuè)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "setembro", + "wordSecond": "九月 (jiǔyuè)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "outubro", + "wordSecond": "十月 (shíyuè)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "novembro", + "wordSecond": "十一月 (shíyīyuè)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dezembro", + "wordSecond": "十二月 (shí'èryuè)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "primavera", + "wordSecond": "春天 (chūntiān)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "verão", + "wordSecond": "夏天 (xiàtiān)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "outono", + "wordSecond": "秋天 (qiūtiān)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "inverno", + "wordSecond": "冬天 (dōngtiān)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "manhã", + "wordSecond": "早上 (zǎoshang)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tarde", + "wordSecond": "下午 (xiàwǔ)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "noite", + "wordSecond": "晚上 (wǎnshang)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "hora", + "wordSecond": "小时 (xiǎoshí)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "minuto", + "wordSecond": "分钟 (fēnzhōng)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "hoje", + "wordSecond": "今天 (jīntiān)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "amanhã", + "wordSecond": "明天 (míngtiān)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ontem", + "wordSecond": "昨天 (zuótiān)", + "createdAt": "2026-02-19T12:57:22.467Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_zh_ko_A1.json b/output/2026_02_19_numbers_time_zh_ko_A1.json new file mode 100644 index 0000000..5514120 --- /dev/null +++ b/output/2026_02_19_numbers_time_zh_ko_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:03:18.627Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "一 (yī)", + "wordSecond": "하나 (hana)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "二 (èr)", + "wordSecond": "둘 (dul)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "三 (sān)", + "wordSecond": "셋 (set)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "四 (sì)", + "wordSecond": "넷 (net)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "五 (wǔ)", + "wordSecond": "다섯 (daseot)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "六 (liù)", + "wordSecond": "여섯 (yeoseot)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "七 (qī)", + "wordSecond": "일곱 (ilgop)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "八 (bā)", + "wordSecond": "여덟 (yeodeol)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "九 (jiǔ)", + "wordSecond": "아홉 (ahop)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "十 (shí)", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "十一 (shíyī)", + "wordSecond": "열하나 (yeolhana)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "十二 (shí'èr)", + "wordSecond": "열둘 (yeoldul)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "十三 (shísān)", + "wordSecond": "열셋 (yeolset)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "十四 (shísì)", + "wordSecond": "열넷 (yeolnet)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "十五 (shíwǔ)", + "wordSecond": "열다섯 (yeoldaseot)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "十六 (shíliù)", + "wordSecond": "열여섯 (yeolyeoseot)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "十七 (shíqī)", + "wordSecond": "열일곱 (yeorilgop)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "十八 (shíbā)", + "wordSecond": "열여덟 (yeoryeodeol)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "十九 (shíjiǔ)", + "wordSecond": "열아홉 (yeorahop)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "二十 (èrshí)", + "wordSecond": "스물 (seumul)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "三十 (sānshí)", + "wordSecond": "서른 (seoreun)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "四十 (sìshí)", + "wordSecond": "마흔 (maheun)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "五十 (wǔshí)", + "wordSecond": "쉰 (swin)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "一百 (yībǎi)", + "wordSecond": "백 (baek)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "一千 (yīqiān)", + "wordSecond": "천 (cheon)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "第一 (dìyī)", + "wordSecond": "첫 번째 (cheot beonjjae)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "第二 (dì'èr)", + "wordSecond": "두 번째 (du beonjjae)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "第三 (dìsān)", + "wordSecond": "세 번째 (se beonjjae)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "星期一 (xīngqīyī)", + "wordSecond": "월요일 (woryoil)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "星期二 (xīngqī'èr)", + "wordSecond": "화요일 (hwayoil)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "星期三 (xīngqīsān)", + "wordSecond": "수요일 (suyoil)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "星期四 (xīngqīsì)", + "wordSecond": "목요일 (mogyoil)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "星期五 (xīngqīwǔ)", + "wordSecond": "금요일 (geumyoil)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "星期六 (xīngqīliù)", + "wordSecond": "토요일 (toyoil)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "星期日 (xīngqīrì)", + "wordSecond": "일요일 (iryoil)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "一月 (yīyuè)", + "wordSecond": "1월 (irwol)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "二月 (èryuè)", + "wordSecond": "2월 (iwol)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "三月 (sānyuè)", + "wordSecond": "3월 (samwol)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "四月 (sìyuè)", + "wordSecond": "4월 (sawol)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "五月 (wǔyuè)", + "wordSecond": "5월 (owol)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "六月 (liùyuè)", + "wordSecond": "6월 (yuwol)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "七月 (qīyuè)", + "wordSecond": "7월 (chirwol)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "八月 (bāyuè)", + "wordSecond": "8월 (parwol)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "九月 (jiǔyuè)", + "wordSecond": "9월 (guwol)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "十月 (shíyuè)", + "wordSecond": "10월 (siwol)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "十一月 (shíyīyuè)", + "wordSecond": "11월 (sibirwol)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "十二月 (shí'èryuè)", + "wordSecond": "12월 (sibiwol)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "春天 (chūntiān)", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "夏天 (xiàtiān)", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "秋天 (qiūtiān)", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "冬天 (dōngtiān)", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "早上 (zǎoshang)", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "上午 (shàngwǔ)", + "wordSecond": "오전 (ojeon)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "下午 (xiàwǔ)", + "wordSecond": "오후 (ohu)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "晚上 (wǎnshang)", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "小时 (xiǎoshí)", + "wordSecond": "시간 (sigan)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "分钟 (fēnzhōng)", + "wordSecond": "분 (bun)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "今天 (jīntiān)", + "wordSecond": "오늘 (oneul)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "明天 (míngtiān)", + "wordSecond": "내일 (naeil)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "昨天 (zuótiān)", + "wordSecond": "어제 (eoje)", + "createdAt": "2026-02-19T13:03:18.627Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_numbers_time_zh_pl_A1.json b/output/2026_02_19_numbers_time_zh_pl_A1.json new file mode 100644 index 0000000..0af011f --- /dev/null +++ b/output/2026_02_19_numbers_time_zh_pl_A1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T13:03:35.214Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Numbers & Time" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Numbers & Time" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "一 (yī)", + "wordSecond": "jeden", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "二 (èr)", + "wordSecond": "dwa", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "三 (sān)", + "wordSecond": "trzy", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "四 (sì)", + "wordSecond": "cztery", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "五 (wǔ)", + "wordSecond": "pięć", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "六 (liù)", + "wordSecond": "sześć", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "七 (qī)", + "wordSecond": "siedem", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "八 (bā)", + "wordSecond": "osiem", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "九 (jiǔ)", + "wordSecond": "dziewięć", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "十 (shí)", + "wordSecond": "dziesięć", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "十一 (shíyī)", + "wordSecond": "jedenaście", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "十二 (shí'èr)", + "wordSecond": "dwanaście", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "十三 (shísān)", + "wordSecond": "trzynaście", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "十四 (shísì)", + "wordSecond": "czternaście", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "十五 (shíwǔ)", + "wordSecond": "piętnaście", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "十六 (shíliù)", + "wordSecond": "szesnaście", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "十七 (shíqī)", + "wordSecond": "siedemnaście", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "十八 (shíbā)", + "wordSecond": "osiemnaście", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "十九 (shíjiǔ)", + "wordSecond": "dziewiętnaście", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "二十 (èrshí)", + "wordSecond": "dwadzieścia", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "三十 (sānshí)", + "wordSecond": "trzydzieści", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "四十 (sìshí)", + "wordSecond": "czterdzieści", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "五十 (wǔshí)", + "wordSecond": "pięćdziesiąt", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "一百 (yībǎi)", + "wordSecond": "sto", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "一千 (yīqiān)", + "wordSecond": "tysiąc", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "第一 (dìyī)", + "wordSecond": "pierwszy", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "第二 (dì'èr)", + "wordSecond": "drugi", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "第三 (dìsān)", + "wordSecond": "trzeci", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "星期一 (xīngqīyī)", + "wordSecond": "poniedziałek", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "星期二 (xīngqī'èr)", + "wordSecond": "wtorek", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "星期三 (xīngqīsān)", + "wordSecond": "środa", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "星期四 (xīngqīsì)", + "wordSecond": "czwartek", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "星期五 (xīngqīwǔ)", + "wordSecond": "piątek", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "星期六 (xīngqīliù)", + "wordSecond": "sobota", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "星期日 (xīngqīrì)", + "wordSecond": "niedziela", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "一月 (yīyuè)", + "wordSecond": "styczeń", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "二月 (èryuè)", + "wordSecond": "luty", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "三月 (sānyuè)", + "wordSecond": "marzec", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "四月 (sìyuè)", + "wordSecond": "kwiecień", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "五月 (wǔyuè)", + "wordSecond": "maj", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "六月 (liùyuè)", + "wordSecond": "czerwiec", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "七月 (qīyuè)", + "wordSecond": "lipiec", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "八月 (bāyuè)", + "wordSecond": "sierpień", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "九月 (jiǔyuè)", + "wordSecond": "wrzesień", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "十月 (shíyuè)", + "wordSecond": "październik", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "十一月 (shíyīyuè)", + "wordSecond": "listopad", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "十二月 (shí'èryuè)", + "wordSecond": "grudzień", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "春天 (chūntiān)", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "夏天 (xiàtiān)", + "wordSecond": "lato", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "秋天 (qiūtiān)", + "wordSecond": "jesień", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "冬天 (dōngtiān)", + "wordSecond": "zima", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "早上 (zǎoshang)", + "wordSecond": "rano", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "上午 (shàngwǔ)", + "wordSecond": "przedpołudnie", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "下午 (xiàwǔ)", + "wordSecond": "popołudnie", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "晚上 (wǎnshang)", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "小时 (xiǎoshí)", + "wordSecond": "godzina", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "分钟 (fēnzhōng)", + "wordSecond": "minuta", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "今天 (jīntiān)", + "wordSecond": "dzisiaj", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "明天 (míngtiān)", + "wordSecond": "jutro", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "昨天 (zuótiān)", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T13:03:35.214Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_politics_government_en_es_B2.json b/output/2026_02_19_politics_government_en_es_B2.json new file mode 100644 index 0000000..2e8d0cf --- /dev/null +++ b/output/2026_02_19_politics_government_en_es_B2.json @@ -0,0 +1,1020 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:50:21.428Z", + "metadata": { + "itemCount": 77, + "categoryCount": 1, + "exportScope": "Category: Politics & Government" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Politics & Government" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "democracy", + "wordSecond": "democracia", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "republic", + "wordSecond": "república", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "monarchy", + "wordSecond": "monarquía", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "parliament", + "wordSecond": "parlamento", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "congress", + "wordSecond": "congreso", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "senate", + "wordSecond": "senado", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "court", + "wordSecond": "tribunal", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ministry", + "wordSecond": "ministerio", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "president", + "wordSecond": "presidente", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "minister", + "wordSecond": "ministro", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "judge", + "wordSecond": "juez", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mayor", + "wordSecond": "alcalde", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "election", + "wordSecond": "elección", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "vote", + "wordSecond": "voto", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "debate", + "wordSecond": "debate", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "reform", + "wordSecond": "reforma", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "law", + "wordSecond": "ley", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "constitution", + "wordSecond": "constitución", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "government", + "wordSecond": "gobierno", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "state", + "wordSecond": "estado", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nation", + "wordSecond": "nación", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "citizen", + "wordSecond": "ciudadano", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "policy", + "wordSecond": "política", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "legislation", + "wordSecond": "legislación", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bill", + "wordSecond": "proyecto de ley", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "act", + "wordSecond": "ley", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "treaty", + "wordSecond": "tratado", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "alliance", + "wordSecond": "alianza", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "coalition", + "wordSecond": "coalición", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "opposition", + "wordSecond": "oposición", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "regime", + "wordSecond": "régimen", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "authority", + "wordSecond": "autoridad", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sovereignty", + "wordSecond": "soberanía", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "federal", + "wordSecond": "federal", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "unitary", + "wordSecond": "unitario", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "autonomy", + "wordSecond": "autonomía", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bureaucracy", + "wordSecond": "burocracia", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "administration", + "wordSecond": "administración", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cabinet", + "wordSecond": "gabinete", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "assembly", + "wordSecond": "asamblea", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "council", + "wordSecond": "consejo", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "committee", + "wordSecond": "comité", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "representative", + "wordSecond": "representante", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "senator", + "wordSecond": "senador", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "congressman", + "wordSecond": "congresista", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "deputy", + "wordSecond": "diputado", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "governor", + "wordSecond": "gobernador", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ambassador", + "wordSecond": "embajador", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "diplomat", + "wordSecond": "diplomático", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "candidate", + "wordSecond": "candidato", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "electorate", + "wordSecond": "electorado", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ballot", + "wordSecond": "papeleta", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "poll", + "wordSecond": "encuesta", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "campaign", + "wordSecond": "campaña", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "manifesto", + "wordSecond": "manifiesto", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ideology", + "wordSecond": "ideología", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "left-wing", + "wordSecond": "izquierda", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "right-wing", + "wordSecond": "derecha", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "liberal", + "wordSecond": "liberal", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "conservative", + "wordSecond": "conservador", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "socialist", + "wordSecond": "socialista", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "nationalist", + "wordSecond": "nacionalista", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "radical", + "wordSecond": "radical", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "moderate", + "wordSecond": "moderado", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lobby", + "wordSecond": "grupo de presión", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "corruption", + "wordSecond": "corrupción", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "scandal", + "wordSecond": "escándalo", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "impeachment", + "wordSecond": "destitución", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "veto", + "wordSecond": "veto", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sanction", + "wordSecond": "sanción", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "budget", + "wordSecond": "presupuesto", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tax", + "wordSecond": "impuesto", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "deficit", + "wordSecond": "déficit", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "welfare", + "wordSecond": "bienestar", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "justice", + "wordSecond": "justicia", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "liberty", + "wordSecond": "libertad", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rights", + "wordSecond": "derechos", + "createdAt": "2026-02-19T15:50:21.428Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_politics_government_en_pt_B2.json b/output/2026_02_19_politics_government_en_pt_B2.json new file mode 100644 index 0000000..bf7e4df --- /dev/null +++ b/output/2026_02_19_politics_government_en_pt_B2.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:50:37.810Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Politics & Government" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Politics & Government" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "democracy", + "wordSecond": "democracia", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "republic", + "wordSecond": "república", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "monarchy", + "wordSecond": "monarquia", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "parliament", + "wordSecond": "parlamento", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "congress", + "wordSecond": "congresso", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "senate", + "wordSecond": "senado", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "court", + "wordSecond": "tribunal", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ministry", + "wordSecond": "ministério", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "president", + "wordSecond": "presidente", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "minister", + "wordSecond": "ministro", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "judge", + "wordSecond": "juiz", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mayor", + "wordSecond": "prefeito", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "election", + "wordSecond": "eleição", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "vote", + "wordSecond": "voto", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "debate", + "wordSecond": "debate", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "reform", + "wordSecond": "reforma", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "law", + "wordSecond": "lei", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "constitution", + "wordSecond": "constituição", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "government", + "wordSecond": "governo", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "state", + "wordSecond": "estado", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "nation", + "wordSecond": "nação", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "citizen", + "wordSecond": "cidadão", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "policy", + "wordSecond": "política", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "legislation", + "wordSecond": "legislação", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bill", + "wordSecond": "projeto de lei", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "campaign", + "wordSecond": "campanha", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "candidate", + "wordSecond": "candidato", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "coalition", + "wordSecond": "coalizão", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "opposition", + "wordSecond": "oposição", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "majority", + "wordSecond": "maioria", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "minority", + "wordSecond": "minoria", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sovereignty", + "wordSecond": "soberania", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "federal", + "wordSecond": "federal", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "local", + "wordSecond": "local", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "municipal", + "wordSecond": "municipal", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "executive", + "wordSecond": "executivo", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "legislative", + "wordSecond": "legislativo", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "judicial", + "wordSecond": "judiciário", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "authority", + "wordSecond": "autoridade", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bureaucracy", + "wordSecond": "burocracia", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "diplomacy", + "wordSecond": "diplomacia", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "treaty", + "wordSecond": "tratado", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "alliance", + "wordSecond": "aliança", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sanction", + "wordSecond": "sanção", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "embassy", + "wordSecond": "embaixada", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "consulate", + "wordSecond": "consulado", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ambassador", + "wordSecond": "embaixador", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "governor", + "wordSecond": "governador", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "senator", + "wordSecond": "senador", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "representative", + "wordSecond": "deputado", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "congressman", + "wordSecond": "congressista", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "congresswoman", + "wordSecond": "congressista", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chancellor", + "wordSecond": "chanceler", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "premier", + "wordSecond": "primeiro-ministro", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "secretary", + "wordSecond": "secretário", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "attorney general", + "wordSecond": "procurador-geral", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ombudsman", + "wordSecond": "ouvidor", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "electorate", + "wordSecond": "eleitorado", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ballot", + "wordSecond": "cédula eleitoral", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "poll", + "wordSecond": "pesquisa eleitoral", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "referendum", + "wordSecond": "referendo", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "plebiscite", + "wordSecond": "plebiscito", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "inauguration", + "wordSecond": "posse", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "impeachment", + "wordSecond": "impeachment", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "coup", + "wordSecond": "golpe", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "revolution", + "wordSecond": "revolução", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "regime", + "wordSecond": "regime", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dictatorship", + "wordSecond": "ditadura", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "autocracy", + "wordSecond": "autocracia", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ideology", + "wordSecond": "ideologia", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "left-wing", + "wordSecond": "esquerda", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "right-wing", + "wordSecond": "direita", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "centrist", + "wordSecond": "centrista", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "liberal", + "wordSecond": "liberal", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "conservative", + "wordSecond": "conservador", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "socialist", + "wordSecond": "socialista", + "createdAt": "2026-02-19T15:50:37.810Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_politics_government_es_pt_B2.json b/output/2026_02_19_politics_government_es_pt_B2.json new file mode 100644 index 0000000..807f844 --- /dev/null +++ b/output/2026_02_19_politics_government_es_pt_B2.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:50:53.211Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Politics & Government" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Politics & Government" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "democracia", + "wordSecond": "democracia", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "república", + "wordSecond": "república", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "monarquía", + "wordSecond": "monarquia", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "parlamento", + "wordSecond": "parlamento", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "congreso", + "wordSecond": "congresso", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "senado", + "wordSecond": "senado", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "corte", + "wordSecond": "corte", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tribunal", + "wordSecond": "tribunal", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ministerio", + "wordSecond": "ministério", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "presidente", + "wordSecond": "presidente", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ministro", + "wordSecond": "ministro", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "juez", + "wordSecond": "juiz", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alcalde", + "wordSecond": "prefeito", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gobernador", + "wordSecond": "governador", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "diputado", + "wordSecond": "deputado", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "senador", + "wordSecond": "senador", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "embajador", + "wordSecond": "embaixador", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cónsul", + "wordSecond": "cônsul", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "diplomático", + "wordSecond": "diplomata", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "funcionario", + "wordSecond": "funcionário", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "burocracia", + "wordSecond": "burocracia", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "administración", + "wordSecond": "administração", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gobierno", + "wordSecond": "governo", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estado", + "wordSecond": "estado", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nación", + "wordSecond": "nação", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "país", + "wordSecond": "país", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ciudadanía", + "wordSecond": "cidadania", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "elección", + "wordSecond": "eleição", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "voto", + "wordSecond": "voto", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sufragio", + "wordSecond": "sufrágio", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "referéndum", + "wordSecond": "referendo", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "urna", + "wordSecond": "urna", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "campaña", + "wordSecond": "campanha", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "candidato", + "wordSecond": "candidato", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "partido", + "wordSecond": "partido", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "coalición", + "wordSecond": "coalizão", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "oposición", + "wordSecond": "oposição", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mayoría", + "wordSecond": "maioria", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "minoría", + "wordSecond": "minoria", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "debate", + "wordSecond": "debate", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "discurso", + "wordSecond": "discurso", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "propaganda", + "wordSecond": "propaganda", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ley", + "wordSecond": "lei", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "constitución", + "wordSecond": "constituição", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "enmienda", + "wordSecond": "emenda", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reforma", + "wordSecond": "reforma", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "política", + "wordSecond": "política", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ideología", + "wordSecond": "ideologia", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "izquierda", + "wordSecond": "esquerda", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "derecha", + "wordSecond": "direita", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "centro", + "wordSecond": "centro", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "liberal", + "wordSecond": "liberal", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "conservador", + "wordSecond": "conservador", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "progresista", + "wordSecond": "progressista", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "socialista", + "wordSecond": "socialista", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "comunista", + "wordSecond": "comunista", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "federal", + "wordSecond": "federal", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "unitario", + "wordSecond": "unitário", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "autonomía", + "wordSecond": "autonomia", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "soberanía", + "wordSecond": "soberania", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "poder", + "wordSecond": "poder", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "autoridad", + "wordSecond": "autoridade", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "legislativo", + "wordSecond": "legislativo", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ejecutivo", + "wordSecond": "executivo", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "judicial", + "wordSecond": "judiciário", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "justicia", + "wordSecond": "justiça", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "corrupción", + "wordSecond": "corrupção", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "transparencia", + "wordSecond": "transparência", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "impuesto", + "wordSecond": "imposto", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "presupuesto", + "wordSecond": "orçamento", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "deuda", + "wordSecond": "dívida", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tratado", + "wordSecond": "tratado", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alianza", + "wordSecond": "aliança", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "seguridad", + "wordSecond": "segurança", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "defensa", + "wordSecond": "defesa", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "policía", + "wordSecond": "polícia", + "createdAt": "2026-02-19T15:50:53.211Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_prepositions_connectors_en_es_B1.json b/output/2026_02_19_prepositions_connectors_en_es_B1.json new file mode 100644 index 0000000..8167726 --- /dev/null +++ b/output/2026_02_19_prepositions_connectors_en_es_B1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:47:23.791Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Prepositions & Connectors" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Prepositions & Connectors" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "in", + "wordSecond": "en", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "on", + "wordSecond": "sobre", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "under", + "wordSecond": "debajo de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "between", + "wordSecond": "entre", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "next to", + "wordSecond": "al lado de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "behind", + "wordSecond": "detrás de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "in front of", + "wordSecond": "delante de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "above", + "wordSecond": "encima de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "below", + "wordSecond": "abajo", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "inside", + "wordSecond": "dentro de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "outside", + "wordSecond": "fuera de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "near", + "wordSecond": "cerca de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "far from", + "wordSecond": "lejos de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "across from", + "wordSecond": "enfrente de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "through", + "wordSecond": "a través de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "around", + "wordSecond": "alrededor de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "along", + "wordSecond": "a lo largo de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "against", + "wordSecond": "contra", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "before", + "wordSecond": "antes de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "after", + "wordSecond": "después de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "during", + "wordSecond": "durante", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "since", + "wordSecond": "desde", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "until", + "wordSecond": "hasta", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "by", + "wordSecond": "para", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "from", + "wordSecond": "de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to", + "wordSecond": "a", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "at", + "wordSecond": "en", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "on (day)", + "wordSecond": "el", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "in (month/year)", + "wordSecond": "en", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "for", + "wordSecond": "por", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "with", + "wordSecond": "con", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "without", + "wordSecond": "sin", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "about", + "wordSecond": "sobre", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "of", + "wordSecond": "de", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "and", + "wordSecond": "y", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "or", + "wordSecond": "o", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "but", + "wordSecond": "pero", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "because", + "wordSecond": "porque", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "although", + "wordSecond": "aunque", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "however", + "wordSecond": "sin embargo", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "therefore", + "wordSecond": "por lo tanto", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "moreover", + "wordSecond": "además", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "unless", + "wordSecond": "a menos que", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "if", + "wordSecond": "si", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "so", + "wordSecond": "así que", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "then", + "wordSecond": "entonces", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "while", + "wordSecond": "mientras", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "as", + "wordSecond": "como", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "when", + "wordSecond": "cuando", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "where", + "wordSecond": "donde", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "why", + "wordSecond": "por qué", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "how", + "wordSecond": "cómo", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "which", + "wordSecond": "cuál", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "that", + "wordSecond": "que", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "who", + "wordSecond": "quién", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "what", + "wordSecond": "qué", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "also", + "wordSecond": "también", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "even", + "wordSecond": "incluso", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "only", + "wordSecond": "solo", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "except", + "wordSecond": "excepto", + "createdAt": "2026-02-19T15:47:23.791Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_prepositions_connectors_en_pt_B1.json b/output/2026_02_19_prepositions_connectors_en_pt_B1.json new file mode 100644 index 0000000..e2e4b4e --- /dev/null +++ b/output/2026_02_19_prepositions_connectors_en_pt_B1.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:47:34.349Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Prepositions & Connectors" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Prepositions & Connectors" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "in", + "wordSecond": "em", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "on", + "wordSecond": "sobre", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "under", + "wordSecond": "embaixo de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "between", + "wordSecond": "entre", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "next to", + "wordSecond": "ao lado de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "behind", + "wordSecond": "atrás de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "in front of", + "wordSecond": "na frente de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "above", + "wordSecond": "acima de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "below", + "wordSecond": "abaixo de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "inside", + "wordSecond": "dentro de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "outside", + "wordSecond": "fora de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "near", + "wordSecond": "perto de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "far from", + "wordSecond": "longe de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "across from", + "wordSecond": "em frente a", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "through", + "wordSecond": "através de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "around", + "wordSecond": "ao redor de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "along", + "wordSecond": "ao longo de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "up", + "wordSecond": "para cima", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "down", + "wordSecond": "para baixo", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "into", + "wordSecond": "para dentro de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "onto", + "wordSecond": "sobre", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "off", + "wordSecond": "fora de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "out of", + "wordSecond": "para fora de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "before", + "wordSecond": "antes de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "after", + "wordSecond": "depois de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "during", + "wordSecond": "durante", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "since", + "wordSecond": "desde", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "until", + "wordSecond": "até", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "by", + "wordSecond": "por", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "at", + "wordSecond": "às", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "on (day)", + "wordSecond": "no", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "in (month/year)", + "wordSecond": "em", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "for", + "wordSecond": "por", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "from", + "wordSecond": "de", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to", + "wordSecond": "para", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "with", + "wordSecond": "com", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "without", + "wordSecond": "sem", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "about", + "wordSecond": "sobre", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "against", + "wordSecond": "contra", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "among", + "wordSecond": "entre", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "as", + "wordSecond": "como", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "because", + "wordSecond": "porque", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "although", + "wordSecond": "embora", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "however", + "wordSecond": "no entanto", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "therefore", + "wordSecond": "portanto", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "moreover", + "wordSecond": "além disso", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "unless", + "wordSecond": "a menos que", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "if", + "wordSecond": "se", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "and", + "wordSecond": "e", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "but", + "wordSecond": "mas", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "or", + "wordSecond": "ou", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "so", + "wordSecond": "então", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "yet", + "wordSecond": "ainda", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "while", + "wordSecond": "enquanto", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "since (because)", + "wordSecond": "já que", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "as soon as", + "wordSecond": "assim que", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "even though", + "wordSecond": "mesmo que", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "in order to", + "wordSecond": "para", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "so that", + "wordSecond": "para que", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "neither... nor", + "wordSecond": "nem... nem", + "createdAt": "2026-02-19T15:47:34.349Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_prepositions_connectors_es_pt_B1.json b/output/2026_02_19_prepositions_connectors_es_pt_B1.json new file mode 100644 index 0000000..85d8849 --- /dev/null +++ b/output/2026_02_19_prepositions_connectors_es_pt_B1.json @@ -0,0 +1,825 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:47:46.843Z", + "metadata": { + "itemCount": 62, + "categoryCount": 1, + "exportScope": "Category: Prepositions & Connectors" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Prepositions & Connectors" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "en", + "wordSecond": "em", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sobre", + "wordSecond": "sobre", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "debajo de", + "wordSecond": "embaixo de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "entre", + "wordSecond": "entre", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "al lado de", + "wordSecond": "ao lado de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "detrás de", + "wordSecond": "atrás de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "delante de", + "wordSecond": "na frente de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dentro de", + "wordSecond": "dentro de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fuera de", + "wordSecond": "fora de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cerca de", + "wordSecond": "perto de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lejos de", + "wordSecond": "longe de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "encima de", + "wordSecond": "em cima de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "a través de", + "wordSecond": "através de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hacia", + "wordSecond": "para", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desde", + "wordSecond": "desde", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hasta", + "wordSecond": "até", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "con", + "wordSecond": "com", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sin", + "wordSecond": "sem", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "por", + "wordSecond": "por", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "para", + "wordSecond": "para", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "antes de", + "wordSecond": "antes de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "después de", + "wordSecond": "depois de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "durante", + "wordSecond": "durante", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desde", + "wordSecond": "desde", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hasta", + "wordSecond": "até", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "en", + "wordSecond": "em", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "a", + "wordSecond": "a", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "de", + "wordSecond": "de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sobre", + "wordSecond": "sobre", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bajo", + "wordSecond": "sob", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "entre", + "wordSecond": "entre", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "contra", + "wordSecond": "contra", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "según", + "wordSecond": "segundo", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mediante", + "wordSecond": "mediante", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "excepto", + "wordSecond": "exceto", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "incluso", + "wordSecond": "inclusive", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "salvo", + "wordSecond": "salvo", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "frente a", + "wordSecond": "em frente a", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "junto a", + "wordSecond": "junto a", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alrededor de", + "wordSecond": "ao redor de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "a lo largo de", + "wordSecond": "ao longo de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "a causa de", + "wordSecond": "por causa de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "debido a", + "wordSecond": "devido a", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gracias a", + "wordSecond": "graças a", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "a pesar de", + "wordSecond": "apesar de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "en vez de", + "wordSecond": "em vez de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "en lugar de", + "wordSecond": "no lugar de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "además de", + "wordSecond": "além de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aparte de", + "wordSecond": "além de", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "antes de que", + "wordSecond": "antes que", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "después de que", + "wordSecond": "depois que", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mientras", + "wordSecond": "enquanto", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuando", + "wordSecond": "quando", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "siempre que", + "wordSecond": "sempre que", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aunque", + "wordSecond": "embora", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "porque", + "wordSecond": "porque", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ya que", + "wordSecond": "já que", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "puesto que", + "wordSecond": "visto que", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "como", + "wordSecond": "como", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sin embargo", + "wordSecond": "entretanto", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "no obstante", + "wordSecond": "no entanto", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "por lo tanto", + "wordSecond": "portanto", + "createdAt": "2026-02-19T15:47:46.843Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_science_technology_en_es_B2.json b/output/2026_02_19_science_technology_en_es_B2.json new file mode 100644 index 0000000..da1a41b --- /dev/null +++ b/output/2026_02_19_science_technology_en_es_B2.json @@ -0,0 +1,1124 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T16:14:28.816Z", + "metadata": { + "itemCount": 85, + "categoryCount": 1, + "exportScope": "Category: Science & Technology" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Science & Technology" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "physics", + "wordSecond": "física", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "chemistry", + "wordSecond": "química", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "biology", + "wordSecond": "biología", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "astronomy", + "wordSecond": "astronomía", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "experiment", + "wordSecond": "experimento", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hypothesis", + "wordSecond": "hipótesis", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "data", + "wordSecond": "datos", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "analysis", + "wordSecond": "análisis", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "conclusion", + "wordSecond": "conclusión", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "energy", + "wordSecond": "energía", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "force", + "wordSecond": "fuerza", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "gravity", + "wordSecond": "gravedad", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wave", + "wordSecond": "onda", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "particle", + "wordSecond": "partícula", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cell", + "wordSecond": "célula", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "DNA", + "wordSecond": "ADN", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "evolution", + "wordSecond": "evolución", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "organism", + "wordSecond": "organismo", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ecosystem", + "wordSecond": "ecosistema", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "theory", + "wordSecond": "teoría", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "research", + "wordSecond": "investigación", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "laboratory", + "wordSecond": "laboratorio", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "scientist", + "wordSecond": "científico", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "discovery", + "wordSecond": "descubrimiento", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "observation", + "wordSecond": "observación", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "measurement", + "wordSecond": "medición", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "variable", + "wordSecond": "variable", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "control", + "wordSecond": "control", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "result", + "wordSecond": "resultado", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "evidence", + "wordSecond": "evidencia", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "method", + "wordSecond": "método", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "technology", + "wordSecond": "tecnología", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "innovation", + "wordSecond": "innovación", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "invention", + "wordSecond": "invención", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "device", + "wordSecond": "dispositivo", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "software", + "wordSecond": "software", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hardware", + "wordSecond": "hardware", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "network", + "wordSecond": "red", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "algorithm", + "wordSecond": "algoritmo", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "code", + "wordSecond": "código", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "program", + "wordSecond": "programa", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "system", + "wordSecond": "sistema", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "function", + "wordSecond": "función", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "process", + "wordSecond": "proceso", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "structure", + "wordSecond": "estructura", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "property", + "wordSecond": "propiedad", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "molecule", + "wordSecond": "molécula", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "atom", + "wordSecond": "átomo", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "electron", + "wordSecond": "electrón", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "reaction", + "wordSecond": "reacción", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "compound", + "wordSecond": "compuesto", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "element", + "wordSecond": "elemento", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mass", + "wordSecond": "masa", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "velocity", + "wordSecond": "velocidad", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "acceleration", + "wordSecond": "aceleración", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "friction", + "wordSecond": "fricción", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "magnetism", + "wordSecond": "magnetismo", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "electricity", + "wordSecond": "electricidad", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "circuit", + "wordSecond": "circuito", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "radiation", + "wordSecond": "radiación", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "telescope", + "wordSecond": "telescopio", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "microscope", + "wordSecond": "microscopio", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tissue", + "wordSecond": "tejido", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "gene", + "wordSecond": "gen", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mutation", + "wordSecond": "mutación", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "species", + "wordSecond": "especie", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "habitat", + "wordSecond": "hábitat", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "biodiversity", + "wordSecond": "biodiversidad", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "photosynthesis", + "wordSecond": "fotosíntesis", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "respiration", + "wordSecond": "respiración", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "digestion", + "wordSecond": "digestión", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "neuron", + "wordSecond": "neurona", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "planet", + "wordSecond": "planeta", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "star", + "wordSecond": "estrella", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "galaxy", + "wordSecond": "galaxia", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "universe", + "wordSecond": "universo", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "orbit", + "wordSecond": "órbita", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "satellite", + "wordSecond": "satélite", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "engineer", + "wordSecond": "ingeniero", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "design", + "wordSecond": "diseño", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "prototype", + "wordSecond": "prototipo", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "application", + "wordSecond": "aplicación", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "interface", + "wordSecond": "interfaz", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "database", + "wordSecond": "base de datos", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "encryption", + "wordSecond": "cifrado", + "createdAt": "2026-02-19T16:14:28.816Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_science_technology_en_pt_B2.json b/output/2026_02_19_science_technology_en_pt_B2.json new file mode 100644 index 0000000..bd9a195 --- /dev/null +++ b/output/2026_02_19_science_technology_en_pt_B2.json @@ -0,0 +1,1137 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T16:14:44.085Z", + "metadata": { + "itemCount": 86, + "categoryCount": 1, + "exportScope": "Category: Science & Technology" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Science & Technology" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "physics", + "wordSecond": "física", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chemistry", + "wordSecond": "química", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "biology", + "wordSecond": "biologia", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "astronomy", + "wordSecond": "astronomia", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "geology", + "wordSecond": "geologia", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mathematics", + "wordSecond": "matemática", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "engineering", + "wordSecond": "engenharia", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "experiment", + "wordSecond": "experimento", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hypothesis", + "wordSecond": "hipótese", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "data", + "wordSecond": "dados", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "analysis", + "wordSecond": "análise", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "conclusion", + "wordSecond": "conclusão", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "research", + "wordSecond": "pesquisa", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "theory", + "wordSecond": "teoria", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "observation", + "wordSecond": "observação", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "method", + "wordSecond": "método", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "evidence", + "wordSecond": "evidência", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "variable", + "wordSecond": "variável", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "control", + "wordSecond": "controle", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "measurement", + "wordSecond": "medição", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "energy", + "wordSecond": "energia", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "force", + "wordSecond": "força", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "gravity", + "wordSecond": "gravidade", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wave", + "wordSecond": "onda", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "particle", + "wordSecond": "partícula", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "matter", + "wordSecond": "matéria", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "atom", + "wordSecond": "átomo", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "molecule", + "wordSecond": "molécula", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "electron", + "wordSecond": "elétron", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "proton", + "wordSecond": "próton", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "neutron", + "wordSecond": "nêutron", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "nucleus", + "wordSecond": "núcleo", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "reaction", + "wordSecond": "reação", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "compound", + "wordSecond": "composto", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "element", + "wordSecond": "elemento", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "solution", + "wordSecond": "solução", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "acid", + "wordSecond": "ácido", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "base", + "wordSecond": "base", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cell", + "wordSecond": "célula", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "DNA", + "wordSecond": "DNA", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "evolution", + "wordSecond": "evolução", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "organism", + "wordSecond": "organismo", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ecosystem", + "wordSecond": "ecossistema", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "gene", + "wordSecond": "gene", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "chromosome", + "wordSecond": "cromossomo", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mutation", + "wordSecond": "mutação", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "species", + "wordSecond": "espécie", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "habitat", + "wordSecond": "habitat", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "biodiversity", + "wordSecond": "biodiversidade", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "photosynthesis", + "wordSecond": "fotossíntese", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "respiration", + "wordSecond": "respiração", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "digestion", + "wordSecond": "digestão", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tissue", + "wordSecond": "tecido", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "organ", + "wordSecond": "órgão", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "virus", + "wordSecond": "vírus", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bacteria", + "wordSecond": "bactéria", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "vaccine", + "wordSecond": "vacina", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "antibiotic", + "wordSecond": "antibiótico", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "immune", + "wordSecond": "imune", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "galaxy", + "wordSecond": "galáxia", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "planet", + "wordSecond": "planeta", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "star", + "wordSecond": "estrela", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "comet", + "wordSecond": "cometa", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "asteroid", + "wordSecond": "asteroide", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "orbit", + "wordSecond": "órbita", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "telescope", + "wordSecond": "telescópio", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "satellite", + "wordSecond": "satélite", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "spacecraft", + "wordSecond": "nave espacial", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "technology", + "wordSecond": "tecnologia", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "innovation", + "wordSecond": "inovação", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "device", + "wordSecond": "dispositivo", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "software", + "wordSecond": "software", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hardware", + "wordSecond": "hardware", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "algorithm", + "wordSecond": "algoritmo", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "network", + "wordSecond": "rede", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "digital", + "wordSecond": "digital", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "artificial intelligence", + "wordSecond": "inteligência artificial", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "robot", + "wordSecond": "robô", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "automation", + "wordSecond": "automação", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "simulation", + "wordSecond": "simulação", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "nanotechnology", + "wordSecond": "nanotecnologia", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "biotechnology", + "wordSecond": "biotecnologia", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "renewable", + "wordSecond": "renovável", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sustainable", + "wordSecond": "sustentável", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "climate", + "wordSecond": "clima", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "environment", + "wordSecond": "meio ambiente", + "createdAt": "2026-02-19T16:14:44.085Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_shopping_money_de_fr_A2.json b/output/2026_02_19_shopping_money_de_fr_A2.json new file mode 100644 index 0000000..8625659 --- /dev/null +++ b/output/2026_02_19_shopping_money_de_fr_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:42:57.308Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Shopping & Money" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Shopping & Money" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Laden", + "wordSecond": "le magasin", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Preis", + "wordSecond": "le prix", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Quittung", + "wordSecond": "le reçu", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Rabatt", + "wordSecond": "la réduction", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Schlange", + "wordSecond": "la file", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Kassierer", + "wordSecond": "le caissier", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Rückerstattung", + "wordSecond": "le remboursement", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Bargeld", + "wordSecond": "l'argent liquide", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Karte", + "wordSecond": "la carte", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Überweisung", + "wordSecond": "le virement", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Budget", + "wordSecond": "le budget", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Ersparnisse", + "wordSecond": "les économies", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Kredit", + "wordSecond": "le prêt", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Steuer", + "wordSecond": "l'impôt", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Rechnung", + "wordSecond": "la facture", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Kosten", + "wordSecond": "le coût", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Supermarkt", + "wordSecond": "le supermarché", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Geschäft", + "wordSecond": "la boutique", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Einkaufszentrum", + "wordSecond": "le centre commercial", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Markt", + "wordSecond": "le marché", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Verkäufer", + "wordSecond": "le vendeur", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Verkäuferin", + "wordSecond": "la vendeuse", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Kunde", + "wordSecond": "le client", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Kundin", + "wordSecond": "la cliente", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Einkauf", + "wordSecond": "le shopping", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Einkaufswagen", + "wordSecond": "le chariot", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Korb", + "wordSecond": "le panier", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Kasse", + "wordSecond": "la caisse", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Sonderangebot", + "wordSecond": "la promotion", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Ausverkauf", + "wordSecond": "les soldes", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Gutschein", + "wordSecond": "le bon", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Ware", + "wordSecond": "la marchandise", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Produkt", + "wordSecond": "le produit", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Lebensmittel", + "wordSecond": "les courses", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Kleidung", + "wordSecond": "les vêtements", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Schuhe", + "wordSecond": "les chaussures", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Größe", + "wordSecond": "la taille", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Farbe", + "wordSecond": "la couleur", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Anprobe", + "wordSecond": "l'essayage", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Umkleidekabine", + "wordSecond": "la cabine d'essayage", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Bank", + "wordSecond": "la banque", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Geldautomat", + "wordSecond": "le distributeur", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Münze", + "wordSecond": "la pièce", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Schein", + "wordSecond": "le billet", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Portemonnaie", + "wordSecond": "le portefeuille", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Geldbörse", + "wordSecond": "le porte-monnaie", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Betrag", + "wordSecond": "le montant", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Wechselkurs", + "wordSecond": "le taux de change", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Währung", + "wordSecond": "la monnaie", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "der Euro", + "wordSecond": "l'euro", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "das Gehalt", + "wordSecond": "le salaire", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Ausgabe", + "wordSecond": "la dépense", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Einnahme", + "wordSecond": "le revenu", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Schulden", + "wordSecond": "la dette", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Sparen", + "wordSecond": "épargner", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Ausleihe", + "wordSecond": "l'emprunt", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Zinsen", + "wordSecond": "les intérêts", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Rechnung", + "wordSecond": "l'addition", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Bezahlung", + "wordSecond": "le paiement", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "die Kreditkarte", + "wordSecond": "la carte de crédit", + "createdAt": "2026-02-19T15:42:57.308Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_shopping_money_de_it_A2.json b/output/2026_02_19_shopping_money_de_it_A2.json new file mode 100644 index 0000000..1abed7a --- /dev/null +++ b/output/2026_02_19_shopping_money_de_it_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:43:09.061Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Shopping & Money" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Shopping & Money" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Einkaufen", + "wordSecond": "fare acquisti", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Geld", + "wordSecond": "denaro", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Laden", + "wordSecond": "negozio", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Preis", + "wordSecond": "prezzo", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kasse", + "wordSecond": "cassa", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kassierer", + "wordSecond": "cassiere", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Quittung", + "wordSecond": "ricevuta", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rabatt", + "wordSecond": "sconto", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schlange", + "wordSecond": "coda", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rückerstattung", + "wordSecond": "rimborso", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bargeld", + "wordSecond": "contanti", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Karte", + "wordSecond": "carta", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kreditkarte", + "wordSecond": "carta di credito", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Überweisung", + "wordSecond": "bonifico", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Budget", + "wordSecond": "budget", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ersparnisse", + "wordSecond": "risparmi", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kredit", + "wordSecond": "credito", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Steuer", + "wordSecond": "tassa", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rechnung", + "wordSecond": "fattura", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kosten", + "wordSecond": "costi", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Markt", + "wordSecond": "mercato", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Supermarkt", + "wordSecond": "supermercato", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bäckerei", + "wordSecond": "panetteria", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Metzgerei", + "wordSecond": "macelleria", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Apotheke", + "wordSecond": "farmacia", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kleidung", + "wordSecond": "abbigliamento", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schuhe", + "wordSecond": "scarpe", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tasche", + "wordSecond": "borsa", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schmuck", + "wordSecond": "gioielli", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Lebensmittel", + "wordSecond": "alimenti", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Obst", + "wordSecond": "frutta", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gemüse", + "wordSecond": "verdura", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Brot", + "wordSecond": "pane", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Milch", + "wordSecond": "latte", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Eier", + "wordSecond": "uova", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fleisch", + "wordSecond": "carne", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fisch", + "wordSecond": "pesce", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Getränk", + "wordSecond": "bevanda", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wasser", + "wordSecond": "acqua", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Saft", + "wordSecond": "succo", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wein", + "wordSecond": "vino", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bier", + "wordSecond": "birra", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kaffee", + "wordSecond": "caffè", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tee", + "wordSecond": "tè", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zucker", + "wordSecond": "zucchero", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Salz", + "wordSecond": "sale", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Öl", + "wordSecond": "olio", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Essig", + "wordSecond": "aceto", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mehl", + "wordSecond": "farina", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Reis", + "wordSecond": "riso", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nudeln", + "wordSecond": "pasta", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Käse", + "wordSecond": "formaggio", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Butter", + "wordSecond": "burro", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Joghurt", + "wordSecond": "yogurt", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schokolade", + "wordSecond": "cioccolato", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Keks", + "wordSecond": "biscotto", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Eis", + "wordSecond": "gelato", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Seife", + "wordSecond": "sapone", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Shampoo", + "wordSecond": "shampoo", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zahnpasta", + "wordSecond": "dentifricio", + "createdAt": "2026-02-19T15:43:09.061Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_shopping_money_en_de_A2.json b/output/2026_02_19_shopping_money_en_de_A2.json new file mode 100644 index 0000000..ca3e45e --- /dev/null +++ b/output/2026_02_19_shopping_money_en_de_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:40:57.598Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Shopping & Money" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Shopping & Money" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shop", + "wordSecond": "Geschäft", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "price", + "wordSecond": "Preis", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "receipt", + "wordSecond": "Quittung", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "discount", + "wordSecond": "Rabatt", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "queue", + "wordSecond": "Schlange", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cashier", + "wordSecond": "Kassierer", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "refund", + "wordSecond": "Rückerstattung", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cash", + "wordSecond": "Bargeld", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "card", + "wordSecond": "Karte", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "transfer", + "wordSecond": "Überweisung", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "budget", + "wordSecond": "Budget", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "savings", + "wordSecond": "Ersparnisse", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "loan", + "wordSecond": "Kredit", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tax", + "wordSecond": "Steuer", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "invoice", + "wordSecond": "Rechnung", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cost", + "wordSecond": "Kosten", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "money", + "wordSecond": "Geld", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bank", + "wordSecond": "Bank", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "coin", + "wordSecond": "Münze", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "note", + "wordSecond": "Schein", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wallet", + "wordSecond": "Geldbörse", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "purse", + "wordSecond": "Geldbeutel", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "buy", + "wordSecond": "kaufen", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sell", + "wordSecond": "verkaufen", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pay", + "wordSecond": "bezahlen", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "expensive", + "wordSecond": "teuer", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cheap", + "wordSecond": "billig", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sale", + "wordSecond": "Verkauf", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "market", + "wordSecond": "Markt", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "supermarket", + "wordSecond": "Supermarkt", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "mall", + "wordSecond": "Einkaufszentrum", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "window shopping", + "wordSecond": "Schaufensterbummel", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "basket", + "wordSecond": "Korb", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "trolley", + "wordSecond": "Einkaufswagen", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bag", + "wordSecond": "Tasche", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "size", + "wordSecond": "Größe", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "color", + "wordSecond": "Farbe", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "change", + "wordSecond": "Wechselgeld", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bill", + "wordSecond": "Rechnung", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tip", + "wordSecond": "Trinkgeld", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "price tag", + "wordSecond": "Preisschild", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shelf", + "wordSecond": "Regal", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "counter", + "wordSecond": "Theke", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "customer", + "wordSecond": "Kunde", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "seller", + "wordSecond": "Verkäufer", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "online", + "wordSecond": "online", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "order", + "wordSecond": "Bestellung", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "delivery", + "wordSecond": "Lieferung", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "return", + "wordSecond": "Rückgabe", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "exchange", + "wordSecond": "Umtausch", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bargain", + "wordSecond": "Schnäppchen", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "luxury", + "wordSecond": "Luxus", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "necessity", + "wordSecond": "Notwendigkeit", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "spend", + "wordSecond": "ausgeben", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "save", + "wordSecond": "sparen", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "earn", + "wordSecond": "verdienen", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "income", + "wordSecond": "Einkommen", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "expense", + "wordSecond": "Ausgabe", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "debt", + "wordSecond": "Schulden", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wealth", + "wordSecond": "Reichtum", + "createdAt": "2026-02-19T15:40:57.598Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_shopping_money_en_es_A2.json b/output/2026_02_19_shopping_money_en_es_A2.json new file mode 100644 index 0000000..2956bc1 --- /dev/null +++ b/output/2026_02_19_shopping_money_en_es_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:40:35.570Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Shopping & Money" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Shopping & Money" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shop", + "wordSecond": "tienda", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "price", + "wordSecond": "precio", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "receipt", + "wordSecond": "recibo", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "discount", + "wordSecond": "descuento", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "queue", + "wordSecond": "cola", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cashier", + "wordSecond": "cajero", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "refund", + "wordSecond": "reembolso", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cash", + "wordSecond": "efectivo", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "card", + "wordSecond": "tarjeta", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "transfer", + "wordSecond": "transferencia", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "budget", + "wordSecond": "presupuesto", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "savings", + "wordSecond": "ahorros", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "loan", + "wordSecond": "préstamo", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tax", + "wordSecond": "impuesto", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "invoice", + "wordSecond": "factura", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cost", + "wordSecond": "costo", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "money", + "wordSecond": "dinero", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "buy", + "wordSecond": "comprar", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sell", + "wordSecond": "vender", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pay", + "wordSecond": "pagar", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "expensive", + "wordSecond": "caro", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cheap", + "wordSecond": "barato", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sale", + "wordSecond": "rebaja", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "market", + "wordSecond": "mercado", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "supermarket", + "wordSecond": "supermercado", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mall", + "wordSecond": "centro comercial", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "online", + "wordSecond": "en línea", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "delivery", + "wordSecond": "entrega", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "order", + "wordSecond": "pedido", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "customer", + "wordSecond": "cliente", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "seller", + "wordSecond": "vendedor", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "product", + "wordSecond": "producto", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "item", + "wordSecond": "artículo", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "brand", + "wordSecond": "marca", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "size", + "wordSecond": "talla", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "color", + "wordSecond": "color", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "quantity", + "wordSecond": "cantidad", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "total", + "wordSecond": "total", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "change", + "wordSecond": "cambio", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bill", + "wordSecond": "billete", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "coin", + "wordSecond": "moneda", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wallet", + "wordSecond": "cartera", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "purse", + "wordSecond": "bolso", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bag", + "wordSecond": "bolsa", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cart", + "wordSecond": "carrito", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "basket", + "wordSecond": "cesta", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "checkout", + "wordSecond": "caja", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "counter", + "wordSecond": "mostrador", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shelf", + "wordSecond": "estante", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "window", + "wordSecond": "escaparate", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "advertisement", + "wordSecond": "anuncio", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "offer", + "wordSecond": "oferta", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "gift", + "wordSecond": "regalo", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "receipt", + "wordSecond": "ticket", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bank", + "wordSecond": "banco", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "account", + "wordSecond": "cuenta", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "debit", + "wordSecond": "débito", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "credit", + "wordSecond": "crédito", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "interest", + "wordSecond": "interés", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "salary", + "wordSecond": "salario", + "createdAt": "2026-02-19T15:40:35.570Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_shopping_money_en_fr_A2.json b/output/2026_02_19_shopping_money_en_fr_A2.json new file mode 100644 index 0000000..95f1949 --- /dev/null +++ b/output/2026_02_19_shopping_money_en_fr_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:41:08.373Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Shopping & Money" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Shopping & Money" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shop", + "wordSecond": "magasin", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "price", + "wordSecond": "prix", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "receipt", + "wordSecond": "reçu", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "discount", + "wordSecond": "réduction", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "queue", + "wordSecond": "file", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cashier", + "wordSecond": "caissier", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "refund", + "wordSecond": "remboursement", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cash", + "wordSecond": "espèces", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "card", + "wordSecond": "carte", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "transfer", + "wordSecond": "virement", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "budget", + "wordSecond": "budget", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "savings", + "wordSecond": "économies", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "loan", + "wordSecond": "prêt", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tax", + "wordSecond": "taxe", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "invoice", + "wordSecond": "facture", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cost", + "wordSecond": "coût", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "money", + "wordSecond": "argent", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bank", + "wordSecond": "banque", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "account", + "wordSecond": "compte", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "payment", + "wordSecond": "paiement", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sale", + "wordSecond": "soldes", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "store", + "wordSecond": "boutique", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "market", + "wordSecond": "marché", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "mall", + "wordSecond": "centre commercial", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "window", + "wordSecond": "vitrine", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "basket", + "wordSecond": "panier", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cart", + "wordSecond": "chariot", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "change", + "wordSecond": "monnaie", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "coin", + "wordSecond": "pièce", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bill", + "wordSecond": "billet", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "expensive", + "wordSecond": "cher", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cheap", + "wordSecond": "bon marché", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "free", + "wordSecond": "gratuit", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "total", + "wordSecond": "total", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bill", + "wordSecond": "addition", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "checkout", + "wordSecond": "caisse", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "counter", + "wordSecond": "comptoir", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shelf", + "wordSecond": "étagère", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "size", + "wordSecond": "taille", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "color", + "wordSecond": "couleur", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "brand", + "wordSecond": "marque", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "quality", + "wordSecond": "qualité", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "quantity", + "wordSecond": "quantité", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "item", + "wordSecond": "article", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "clothes", + "wordSecond": "vêtements", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shoes", + "wordSecond": "chaussures", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "food", + "wordSecond": "nourriture", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "drink", + "wordSecond": "boisson", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "toy", + "wordSecond": "jouet", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "book", + "wordSecond": "livre", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "gift", + "wordSecond": "cadeau", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bag", + "wordSecond": "sac", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "list", + "wordSecond": "liste", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "customer", + "wordSecond": "client", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "seller", + "wordSecond": "vendeur", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "assistant", + "wordSecond": "assistant", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "open", + "wordSecond": "ouvert", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "closed", + "wordSecond": "fermé", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hour", + "wordSecond": "heure", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "day", + "wordSecond": "jour", + "createdAt": "2026-02-19T15:41:08.373Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_shopping_money_en_it_A2.json b/output/2026_02_19_shopping_money_en_it_A2.json new file mode 100644 index 0000000..7a0f588 --- /dev/null +++ b/output/2026_02_19_shopping_money_en_it_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:41:19.167Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Shopping & Money" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Shopping & Money" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shop", + "wordSecond": "negozio", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "price", + "wordSecond": "prezzo", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "receipt", + "wordSecond": "scontrino", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "discount", + "wordSecond": "sconto", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "queue", + "wordSecond": "coda", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cashier", + "wordSecond": "cassiere", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "refund", + "wordSecond": "rimborso", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cash", + "wordSecond": "contanti", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "card", + "wordSecond": "carta", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "transfer", + "wordSecond": "bonifico", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "budget", + "wordSecond": "budget", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "savings", + "wordSecond": "risparmi", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "loan", + "wordSecond": "prestito", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tax", + "wordSecond": "tassa", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "invoice", + "wordSecond": "fattura", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cost", + "wordSecond": "costo", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "money", + "wordSecond": "soldi", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bank", + "wordSecond": "banca", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "coin", + "wordSecond": "moneta", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "note", + "wordSecond": "banconota", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wallet", + "wordSecond": "portafoglio", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "purse", + "wordSecond": "borsellino", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "buy", + "wordSecond": "comprare", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sell", + "wordSecond": "vendere", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pay", + "wordSecond": "pagare", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "expensive", + "wordSecond": "caro", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cheap", + "wordSecond": "economico", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sale", + "wordSecond": "svendita", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "market", + "wordSecond": "mercato", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "supermarket", + "wordSecond": "supermercato", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "mall", + "wordSecond": "centro commerciale", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "window shopping", + "wordSecond": "finestra", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "basket", + "wordSecond": "cestino", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cart", + "wordSecond": "carrello", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bag", + "wordSecond": "borsa", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "size", + "wordSecond": "taglia", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "color", + "wordSecond": "colore", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "change", + "wordSecond": "resto", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bill", + "wordSecond": "conto", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tip", + "wordSecond": "mancia", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "credit", + "wordSecond": "credito", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "debit", + "wordSecond": "debito", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "account", + "wordSecond": "conto", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "interest", + "wordSecond": "interesse", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "salary", + "wordSecond": "stipendio", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "income", + "wordSecond": "reddito", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "expense", + "wordSecond": "spesa", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bargain", + "wordSecond": "affare", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "luxury", + "wordSecond": "lusso", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "necessity", + "wordSecond": "necessità", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "brand", + "wordSecond": "marca", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "quality", + "wordSecond": "qualità", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "quantity", + "wordSecond": "quantità", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "order", + "wordSecond": "ordinare", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "delivery", + "wordSecond": "consegna", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "return", + "wordSecond": "restituire", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "exchange", + "wordSecond": "cambiare", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "gift", + "wordSecond": "regalo", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wishlist", + "wordSecond": "lista dei desideri", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "customer", + "wordSecond": "cliente", + "createdAt": "2026-02-19T15:41:19.167Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_shopping_money_en_pt_A2.json b/output/2026_02_19_shopping_money_en_pt_A2.json new file mode 100644 index 0000000..53798b4 --- /dev/null +++ b/output/2026_02_19_shopping_money_en_pt_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:40:46.318Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Shopping & Money" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Shopping & Money" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shop", + "wordSecond": "loja", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "price", + "wordSecond": "preço", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "receipt", + "wordSecond": "recibo", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "discount", + "wordSecond": "desconto", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "queue", + "wordSecond": "fila", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cashier", + "wordSecond": "caixa", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "refund", + "wordSecond": "reembolso", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cash", + "wordSecond": "dinheiro", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "card", + "wordSecond": "cartão", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "transfer", + "wordSecond": "transferência", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "budget", + "wordSecond": "orçamento", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "savings", + "wordSecond": "economias", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "loan", + "wordSecond": "empréstimo", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tax", + "wordSecond": "imposto", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "invoice", + "wordSecond": "fatura", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cost", + "wordSecond": "custo", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "money", + "wordSecond": "dinheiro", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "buy", + "wordSecond": "comprar", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sell", + "wordSecond": "vender", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pay", + "wordSecond": "pagar", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "expensive", + "wordSecond": "caro", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cheap", + "wordSecond": "barato", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sale", + "wordSecond": "promoção", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "market", + "wordSecond": "mercado", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "supermarket", + "wordSecond": "supermercado", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mall", + "wordSecond": "shopping", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "online", + "wordSecond": "online", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "delivery", + "wordSecond": "entrega", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "order", + "wordSecond": "pedido", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "product", + "wordSecond": "produto", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "item", + "wordSecond": "item", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "brand", + "wordSecond": "marca", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "size", + "wordSecond": "tamanho", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "color", + "wordSecond": "cor", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "quantity", + "wordSecond": "quantidade", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "quality", + "wordSecond": "qualidade", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "checkout", + "wordSecond": "caixa", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bag", + "wordSecond": "sacola", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "trolley", + "wordSecond": "carrinho", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "change", + "wordSecond": "troco", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bill", + "wordSecond": "conta", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "price tag", + "wordSecond": "etiqueta", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "window shopping", + "wordSecond": "vitrine", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "customer", + "wordSecond": "cliente", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "seller", + "wordSecond": "vendedor", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bargain", + "wordSecond": "pechincha", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "installment", + "wordSecond": "parcela", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "credit", + "wordSecond": "crédito", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "debit", + "wordSecond": "débito", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wallet", + "wordSecond": "carteira", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "purse", + "wordSecond": "bolsa", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "coin", + "wordSecond": "moeda", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "note", + "wordSecond": "nota", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bank", + "wordSecond": "banco", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "account", + "wordSecond": "conta", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "income", + "wordSecond": "renda", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "expense", + "wordSecond": "despesa", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "debt", + "wordSecond": "dívida", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "interest", + "wordSecond": "juros", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "profit", + "wordSecond": "lucro", + "createdAt": "2026-02-19T15:40:46.318Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_shopping_money_es_de_A2.json b/output/2026_02_19_shopping_money_es_de_A2.json new file mode 100644 index 0000000..30c330a --- /dev/null +++ b/output/2026_02_19_shopping_money_es_de_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:41:43.366Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Shopping & Money" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Shopping & Money" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tienda", + "wordSecond": "Geschäft", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "precio", + "wordSecond": "Preis", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "recibo", + "wordSecond": "Quittung", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "descuento", + "wordSecond": "Rabatt", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "fila", + "wordSecond": "Schlange", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cajero", + "wordSecond": "Kassierer", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "reembolso", + "wordSecond": "Rückerstattung", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "efectivo", + "wordSecond": "Bargeld", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tarjeta", + "wordSecond": "Karte", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "transferencia", + "wordSecond": "Überweisung", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "presupuesto", + "wordSecond": "Budget", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ahorros", + "wordSecond": "Ersparnisse", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "préstamo", + "wordSecond": "Darlehen", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "impuesto", + "wordSecond": "Steuer", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "factura", + "wordSecond": "Rechnung", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "costo", + "wordSecond": "Kosten", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "comprar", + "wordSecond": "kaufen", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "vender", + "wordSecond": "verkaufen", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pagar", + "wordSecond": "bezahlen", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dinero", + "wordSecond": "Geld", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "moneda", + "wordSecond": "Münze", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "billete", + "wordSecond": "Schein", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "caro", + "wordSecond": "teuer", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "barato", + "wordSecond": "billig", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "oferta", + "wordSecond": "Angebot", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "rebaja", + "wordSecond": "Ausverkauf", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cliente", + "wordSecond": "Kunde", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "vendedor", + "wordSecond": "Verkäufer", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "supermercado", + "wordSecond": "Supermarkt", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "centro comercial", + "wordSecond": "Einkaufszentrum", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mercado", + "wordSecond": "Markt", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cesta", + "wordSecond": "Einkaufskorb", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "bolsa", + "wordSecond": "Tüte", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "caja", + "wordSecond": "Kasse", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cambio", + "wordSecond": "Wechselgeld", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tarjeta de crédito", + "wordSecond": "Kreditkarte", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tarjeta de débito", + "wordSecond": "Debitkarte", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "banco", + "wordSecond": "Bank", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cuenta", + "wordSecond": "Konto", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "gastar", + "wordSecond": "ausgeben", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ahorrar", + "wordSecond": "sparen", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "deuda", + "wordSecond": "Schulden", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "interés", + "wordSecond": "Zinsen", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "saldo", + "wordSecond": "Saldo", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "inversión", + "wordSecond": "Investition", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ganancia", + "wordSecond": "Gewinn", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pérdida", + "wordSecond": "Verlust", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "carrito", + "wordSecond": "Einkaufswagen", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "probador", + "wordSecond": "Umkleidekabine", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "talla", + "wordSecond": "Größe", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "color", + "wordSecond": "Farbe", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "marca", + "wordSecond": "Marke", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "calidad", + "wordSecond": "Qualität", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "garantía", + "wordSecond": "Garantie", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "envío", + "wordSecond": "Versand", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "devolución", + "wordSecond": "Rückgabe", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "regalo", + "wordSecond": "Geschenk", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cupón", + "wordSecond": "Gutschein", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "precio total", + "wordSecond": "Gesamtpreis", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pago", + "wordSecond": "Zahlung", + "createdAt": "2026-02-19T15:41:43.366Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_shopping_money_es_fr_A2.json b/output/2026_02_19_shopping_money_es_fr_A2.json new file mode 100644 index 0000000..6b8663b --- /dev/null +++ b/output/2026_02_19_shopping_money_es_fr_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:41:55.467Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Shopping & Money" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Shopping & Money" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tienda", + "wordSecond": "magasin", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "precio", + "wordSecond": "prix", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "recibo", + "wordSecond": "reçu", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "descuento", + "wordSecond": "réduction", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cola", + "wordSecond": "queue", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cajero", + "wordSecond": "caissier", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "reembolso", + "wordSecond": "remboursement", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "efectivo", + "wordSecond": "espèces", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tarjeta", + "wordSecond": "carte", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "transferencia", + "wordSecond": "virement", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "presupuesto", + "wordSecond": "budget", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ahorros", + "wordSecond": "économies", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "préstamo", + "wordSecond": "prêt", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "impuesto", + "wordSecond": "taxe", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "factura", + "wordSecond": "facture", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "costo", + "wordSecond": "coût", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "comprar", + "wordSecond": "acheter", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vender", + "wordSecond": "vendre", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pagar", + "wordSecond": "payer", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dinero", + "wordSecond": "argent", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "moneda", + "wordSecond": "monnaie", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "billete", + "wordSecond": "billet", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cambio", + "wordSecond": "monnaie", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "caro", + "wordSecond": "cher", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "barato", + "wordSecond": "bon marché", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "oferta", + "wordSecond": "promotion", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "rebaja", + "wordSecond": "solde", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cliente", + "wordSecond": "client", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vendedor", + "wordSecond": "vendeur", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cesta", + "wordSecond": "panier", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "bolsa", + "wordSecond": "sac", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ropa", + "wordSecond": "vêtements", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "zapatos", + "wordSecond": "chaussures", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "alimentos", + "wordSecond": "aliments", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "supermercado", + "wordSecond": "supermarché", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mercado", + "wordSecond": "marché", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "centro comercial", + "wordSecond": "centre commercial", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "caja", + "wordSecond": "caisse", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tarjeta de crédito", + "wordSecond": "carte de crédit", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tarjeta de débito", + "wordSecond": "carte de débit", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cheque", + "wordSecond": "chèque", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "banco", + "wordSecond": "banque", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cuenta", + "wordSecond": "compte", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "saldo", + "wordSecond": "solde", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "deuda", + "wordSecond": "dette", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gastar", + "wordSecond": "dépenser", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ahorrar", + "wordSecond": "économiser", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "invertir", + "wordSecond": "investir", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ganar", + "wordSecond": "gagner", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "perder", + "wordSecond": "perdre", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "carrito", + "wordSecond": "chariot", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "etiqueta", + "wordSecond": "étiquette", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "talla", + "wordSecond": "taille", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "color", + "wordSecond": "couleur", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "probador", + "wordSecond": "cabine d'essayage", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "devolución", + "wordSecond": "retour", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "garantía", + "wordSecond": "garantie", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gasto", + "wordSecond": "dépense", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ingreso", + "wordSecond": "revenu", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "precio total", + "wordSecond": "prix total", + "createdAt": "2026-02-19T15:41:55.467Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_shopping_money_es_it_A2.json b/output/2026_02_19_shopping_money_es_it_A2.json new file mode 100644 index 0000000..c864838 --- /dev/null +++ b/output/2026_02_19_shopping_money_es_it_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:42:07.526Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Shopping & Money" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Shopping & Money" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tienda", + "wordSecond": "negozio", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "comprar", + "wordSecond": "comprare", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vender", + "wordSecond": "vendere", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "precio", + "wordSecond": "prezzo", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "costar", + "wordSecond": "costare", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "barato", + "wordSecond": "economico", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "caro", + "wordSecond": "caro", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "descuento", + "wordSecond": "sconto", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "oferta", + "wordSecond": "offerta", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "rebaja", + "wordSecond": "saldo", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "recibo", + "wordSecond": "ricevuta", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "factura", + "wordSecond": "fattura", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cola", + "wordSecond": "coda", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cajero", + "wordSecond": "cassiere", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cliente", + "wordSecond": "cliente", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vendedor", + "wordSecond": "venditore", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "devolución", + "wordSecond": "rimborso", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cambio", + "wordSecond": "cambio", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "garantía", + "wordSecond": "garanzia", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dinero", + "wordSecond": "denaro", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "efectivo", + "wordSecond": "contanti", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tarjeta", + "wordSecond": "carta", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tarjeta de crédito", + "wordSecond": "carta di credito", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tarjeta de débito", + "wordSecond": "carta di debito", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cheque", + "wordSecond": "assegno", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "transferencia", + "wordSecond": "bonifico", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pago", + "wordSecond": "pagamento", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pagar", + "wordSecond": "pagare", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gastar", + "wordSecond": "spendere", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ahorrar", + "wordSecond": "risparmiare", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ahorros", + "wordSecond": "risparmi", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "presupuesto", + "wordSecond": "budget", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "préstamo", + "wordSecond": "prestito", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "deuda", + "wordSecond": "debito", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "interés", + "wordSecond": "interesse", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "impuesto", + "wordSecond": "tassa", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "costo", + "wordSecond": "costo", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gasto", + "wordSecond": "spesa", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "carrito", + "wordSecond": "carrello", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cesta", + "wordSecond": "cestino", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bolsa", + "wordSecond": "borsa", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "caja", + "wordSecond": "cassa", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "supermercado", + "wordSecond": "supermercato", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mercado", + "wordSecond": "mercato", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "centro comercial", + "wordSecond": "centro commerciale", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "boutique", + "wordSecond": "boutique", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "zapatería", + "wordSecond": "calzoleria", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "joyería", + "wordSecond": "gioielleria", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "panadería", + "wordSecond": "panetteria", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "carnicería", + "wordSecond": "macelleria", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pescadería", + "wordSecond": "pescheria", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "frutería", + "wordSecond": "fruttivendolo", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "farmacia", + "wordSecond": "farmacia", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "librería", + "wordSecond": "libreria", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ropa", + "wordSecond": "abbigliamento", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "zapatos", + "wordSecond": "scarpe", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "comida", + "wordSecond": "cibo", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bebida", + "wordSecond": "bevanda", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "regalo", + "wordSecond": "regalo", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "talla", + "wordSecond": "taglia", + "createdAt": "2026-02-19T15:42:07.526Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_shopping_money_es_pt_A2.json b/output/2026_02_19_shopping_money_es_pt_A2.json new file mode 100644 index 0000000..272006c --- /dev/null +++ b/output/2026_02_19_shopping_money_es_pt_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:41:30.744Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Shopping & Money" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Shopping & Money" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tienda", + "wordSecond": "loja", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "precio", + "wordSecond": "preço", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "recibo", + "wordSecond": "recibo", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "descuento", + "wordSecond": "desconto", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cola", + "wordSecond": "fila", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cajero", + "wordSecond": "caixa", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reembolso", + "wordSecond": "reembolso", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "efectivo", + "wordSecond": "dinheiro", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tarjeta", + "wordSecond": "cartão", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "transferencia", + "wordSecond": "transferência", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "presupuesto", + "wordSecond": "orçamento", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ahorros", + "wordSecond": "economias", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "préstamo", + "wordSecond": "empréstimo", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "impuesto", + "wordSecond": "imposto", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "factura", + "wordSecond": "fatura", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "costo", + "wordSecond": "custo", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "compra", + "wordSecond": "compra", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vender", + "wordSecond": "vender", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cliente", + "wordSecond": "cliente", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vendedor", + "wordSecond": "vendedor", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "producto", + "wordSecond": "produto", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mercado", + "wordSecond": "mercado", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "centro comercial", + "wordSecond": "shopping", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "supermercado", + "wordSecond": "supermercado", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cesta", + "wordSecond": "cesta", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "carrito", + "wordSecond": "carrinho", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "barato", + "wordSecond": "barato", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "caro", + "wordSecond": "caro", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "oferta", + "wordSecond": "oferta", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ganga", + "wordSecond": "pechincha", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pagar", + "wordSecond": "pagar", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dinero", + "wordSecond": "dinheiro", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "moneda", + "wordSecond": "moeda", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "billete", + "wordSecond": "nota", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cambio", + "wordSecond": "troco", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "devolución", + "wordSecond": "devolução", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "garantía", + "wordSecond": "garantia", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "etiqueta", + "wordSecond": "etiqueta", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "talla", + "wordSecond": "tamanho", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "color", + "wordSecond": "cor", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "marca", + "wordSecond": "marca", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "calidad", + "wordSecond": "qualidade", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cantidad", + "wordSecond": "quantidade", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "total", + "wordSecond": "total", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "saldo", + "wordSecond": "saldo", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuenta", + "wordSecond": "conta", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "banco", + "wordSecond": "banco", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cajero automático", + "wordSecond": "caixa eletrônico", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cheque", + "wordSecond": "cheque", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "deuda", + "wordSecond": "dívida", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gasto", + "wordSecond": "gasto", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ingreso", + "wordSecond": "renda", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "inversión", + "wordSecond": "investimento", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lujo", + "wordSecond": "luxo", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "necesidad", + "wordSecond": "necessidade", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pobre", + "wordSecond": "pobre", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rico", + "wordSecond": "rico", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "venta", + "wordSecond": "venda", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alquiler", + "wordSecond": "aluguel", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "propina", + "wordSecond": "gorjeta", + "createdAt": "2026-02-19T15:41:30.744Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_shopping_money_fr_it_A2.json b/output/2026_02_19_shopping_money_fr_it_A2.json new file mode 100644 index 0000000..7d15225 --- /dev/null +++ b/output/2026_02_19_shopping_money_fr_it_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:43:20.773Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Shopping & Money" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Shopping & Money" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "magasin", + "wordSecond": "negozio", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "prix", + "wordSecond": "prezzo", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "reçu", + "wordSecond": "ricevuta", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "remise", + "wordSecond": "sconto", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "file", + "wordSecond": "coda", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "caissier", + "wordSecond": "cassiere", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "remboursement", + "wordSecond": "rimborso", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "argent", + "wordSecond": "denaro", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "carte", + "wordSecond": "carta", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "virement", + "wordSecond": "bonifico", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "budget", + "wordSecond": "budget", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "épargne", + "wordSecond": "risparmio", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "prêt", + "wordSecond": "prestito", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "taxe", + "wordSecond": "tassa", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "facture", + "wordSecond": "fattura", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "coût", + "wordSecond": "costo", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "achat", + "wordSecond": "acquisto", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vendre", + "wordSecond": "vendere", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "payer", + "wordSecond": "pagare", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "client", + "wordSecond": "cliente", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vendeur", + "wordSecond": "venditore", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "panier", + "wordSecond": "carrello", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sac", + "wordSecond": "borsa", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "étiquette", + "wordSecond": "etichetta", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "solde", + "wordSecond": "saldo", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "promotion", + "wordSecond": "promozione", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "marché", + "wordSecond": "mercato", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "centre commercial", + "wordSecond": "centro commerciale", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "boutique", + "wordSecond": "boutique", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "supermarché", + "wordSecond": "supermercato", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "banque", + "wordSecond": "banca", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "compte", + "wordSecond": "conto", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dépense", + "wordSecond": "spesa", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "économie", + "wordSecond": "economia", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "investissement", + "wordSecond": "investimento", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dette", + "wordSecond": "debito", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "intérêt", + "wordSecond": "interesse", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "monnaie", + "wordSecond": "moneta", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "billet", + "wordSecond": "banconota", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pièce", + "wordSecond": "moneta", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "porte-monnaie", + "wordSecond": "portafoglio", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "carte de crédit", + "wordSecond": "carta di credito", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chèque", + "wordSecond": "assegno", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "espèces", + "wordSecond": "contanti", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "distributeur", + "wordSecond": "bancomat", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "guichet", + "wordSecond": "sportello", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "solde", + "wordSecond": "saldo", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "débit", + "wordSecond": "addebito", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "crédit", + "wordSecond": "credito", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "taux", + "wordSecond": "tasso", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "impôt", + "wordSecond": "imposta", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bénéfice", + "wordSecond": "profitto", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "perte", + "wordSecond": "perdita", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "valeur", + "wordSecond": "valore", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cher", + "wordSecond": "caro", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bon marché", + "wordSecond": "economico", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "gratuit", + "wordSecond": "gratuito", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "livraison", + "wordSecond": "consegna", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "commande", + "wordSecond": "ordine", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "retour", + "wordSecond": "resoconto", + "createdAt": "2026-02-19T15:43:20.773Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_shopping_money_pt_de_A2.json b/output/2026_02_19_shopping_money_pt_de_A2.json new file mode 100644 index 0000000..16f615b --- /dev/null +++ b/output/2026_02_19_shopping_money_pt_de_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:42:19.594Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Shopping & Money" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Shopping & Money" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "loja", + "wordSecond": "Geschäft", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "preço", + "wordSecond": "Preis", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "recibo", + "wordSecond": "Quittung", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "desconto", + "wordSecond": "Rabatt", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fila", + "wordSecond": "Schlange", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "caixa", + "wordSecond": "Kassierer", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "reembolso", + "wordSecond": "Rückerstattung", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dinheiro", + "wordSecond": "Bargeld", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cartão", + "wordSecond": "Karte", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "transferência", + "wordSecond": "Überweisung", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "orçamento", + "wordSecond": "Budget", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "economias", + "wordSecond": "Ersparnisse", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "empréstimo", + "wordSecond": "Darlehen", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "imposto", + "wordSecond": "Steuer", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fatura", + "wordSecond": "Rechnung", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "custo", + "wordSecond": "Kosten", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "comprar", + "wordSecond": "kaufen", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vender", + "wordSecond": "verkaufen", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pagamento", + "wordSecond": "Zahlung", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "troco", + "wordSecond": "Wechselgeld", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "carteira", + "wordSecond": "Geldbörse", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "moeda", + "wordSecond": "Münze", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nota", + "wordSecond": "Schein", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "banco", + "wordSecond": "Bank", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "conta", + "wordSecond": "Konto", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "saldo", + "wordSecond": "Saldo", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "débito", + "wordSecond": "Schuld", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "crédito", + "wordSecond": "Kredit", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "juros", + "wordSecond": "Zinsen", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "poupança", + "wordSecond": "Sparen", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "gasto", + "wordSecond": "Ausgabe", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lucro", + "wordSecond": "Gewinn", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "perda", + "wordSecond": "Verlust", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "valor", + "wordSecond": "Wert", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "barato", + "wordSecond": "billig", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "caro", + "wordSecond": "teuer", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "oferta", + "wordSecond": "Angebot", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "promoção", + "wordSecond": "Aktion", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "carrinho", + "wordSecond": "Einkaufswagen", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sacola", + "wordSecond": "Tüte", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "etiqueta", + "wordSecond": "Preisschild", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "marca", + "wordSecond": "Marke", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "produto", + "wordSecond": "Produkt", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "qualidade", + "wordSecond": "Qualität", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quantidade", + "wordSecond": "Menge", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tamanho", + "wordSecond": "Größe", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cor", + "wordSecond": "Farbe", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "garantia", + "wordSecond": "Garantie", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "devolução", + "wordSecond": "Rückgabe", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "troca", + "wordSecond": "Umtausch", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cliente", + "wordSecond": "Kunde", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vendedor", + "wordSecond": "Verkäufer", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "supermercado", + "wordSecond": "Supermarkt", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "shopping", + "wordSecond": "Einkaufszentrum", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mercado", + "wordSecond": "Markt", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "feira", + "wordSecond": "Marktplatz", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "atacado", + "wordSecond": "Großhandel", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "varejo", + "wordSecond": "Einzelhandel", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "brinde", + "wordSecond": "Geschenk", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cupom", + "wordSecond": "Gutschein", + "createdAt": "2026-02-19T15:42:19.594Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_shopping_money_pt_fr_A2.json b/output/2026_02_19_shopping_money_pt_fr_A2.json new file mode 100644 index 0000000..75ab37b --- /dev/null +++ b/output/2026_02_19_shopping_money_pt_fr_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:42:30.942Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Shopping & Money" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Shopping & Money" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "loja", + "wordSecond": "magasin", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "preço", + "wordSecond": "prix", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "recibo", + "wordSecond": "reçu", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "desconto", + "wordSecond": "réduction", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fila", + "wordSecond": "file", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "caixa", + "wordSecond": "caissier", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "reembolso", + "wordSecond": "remboursement", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dinheiro", + "wordSecond": "argent", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cartão", + "wordSecond": "carte", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "transferência", + "wordSecond": "virement", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "orçamento", + "wordSecond": "budget", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "economias", + "wordSecond": "économies", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "empréstimo", + "wordSecond": "prêt", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "imposto", + "wordSecond": "impôt", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fatura", + "wordSecond": "facture", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "custo", + "wordSecond": "coût", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "comprar", + "wordSecond": "acheter", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vender", + "wordSecond": "vendre", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cliente", + "wordSecond": "client", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "produto", + "wordSecond": "produit", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mercado", + "wordSecond": "marché", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "centro comercial", + "wordSecond": "centre commercial", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "supermercado", + "wordSecond": "supermarché", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "farmácia", + "wordSecond": "pharmacie", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "roupa", + "wordSecond": "vêtements", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sapato", + "wordSecond": "chaussure", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "bolsa", + "wordSecond": "sac", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "joia", + "wordSecond": "bijou", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "eletrônico", + "wordSecond": "électronique", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "brinquedo", + "wordSecond": "jouet", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "alimento", + "wordSecond": "aliment", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "bebida", + "wordSecond": "boisson", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "caro", + "wordSecond": "cher", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "barato", + "wordSecond": "bon marché", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "promoção", + "wordSecond": "promotion", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "oferta", + "wordSecond": "offre", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "venda", + "wordSecond": "vente", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "troco", + "wordSecond": "monnaie", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "nota", + "wordSecond": "billet", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "moeda", + "wordSecond": "pièce", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "carteira", + "wordSecond": "portefeuille", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "bolso", + "wordSecond": "poche", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "carrinho", + "wordSecond": "chariot", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cesta", + "wordSecond": "panier", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "etiqueta", + "wordSecond": "étiquette", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tamanho", + "wordSecond": "taille", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cor", + "wordSecond": "couleur", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "marca", + "wordSecond": "marque", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "qualidade", + "wordSecond": "qualité", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quantidade", + "wordSecond": "quantité", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "peso", + "wordSecond": "poids", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "medida", + "wordSecond": "mesure", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "garantia", + "wordSecond": "garantie", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "devolução", + "wordSecond": "retour", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "troca", + "wordSecond": "échange", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "entrega", + "wordSecond": "livraison", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "frete", + "wordSecond": "frais de port", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pagamento", + "wordSecond": "paiement", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dívida", + "wordSecond": "dette", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "saldo", + "wordSecond": "solde", + "createdAt": "2026-02-19T15:42:30.942Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_shopping_money_pt_it_A2.json b/output/2026_02_19_shopping_money_pt_it_A2.json new file mode 100644 index 0000000..77efc38 --- /dev/null +++ b/output/2026_02_19_shopping_money_pt_it_A2.json @@ -0,0 +1,799 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:42:43.253Z", + "metadata": { + "itemCount": 60, + "categoryCount": 1, + "exportScope": "Category: Shopping & Money" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Shopping & Money" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "loja", + "wordSecond": "negozio", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "preço", + "wordSecond": "prezzo", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "recibo", + "wordSecond": "ricevuta", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "desconto", + "wordSecond": "sconto", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fila", + "wordSecond": "coda", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "caixa", + "wordSecond": "cassa", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "reembolso", + "wordSecond": "rimborso", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dinheiro", + "wordSecond": "contanti", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cartão", + "wordSecond": "carta", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "transferência", + "wordSecond": "bonifico", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "orçamento", + "wordSecond": "budget", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "economias", + "wordSecond": "risparmi", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "empréstimo", + "wordSecond": "prestito", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "imposto", + "wordSecond": "tassa", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fatura", + "wordSecond": "fattura", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "custo", + "wordSecond": "costo", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "comprar", + "wordSecond": "comprare", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vender", + "wordSecond": "vendere", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pagamento", + "wordSecond": "pagamento", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "troco", + "wordSecond": "resto", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "carteira", + "wordSecond": "portafoglio", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bolsa", + "wordSecond": "borsa", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mercado", + "wordSecond": "mercato", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "centro comercial", + "wordSecond": "centro commerciale", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vitrine", + "wordSecond": "vetrina", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "produto", + "wordSecond": "prodotto", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "marca", + "wordSecond": "marca", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "qualidade", + "wordSecond": "qualità", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quantidade", + "wordSecond": "quantità", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "oferta", + "wordSecond": "offerta", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "promoção", + "wordSecond": "promozione", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "carrinho", + "wordSecond": "carrello", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sacola", + "wordSecond": "borsa", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "etiqueta", + "wordSecond": "etichetta", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tamanho", + "wordSecond": "taglia", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cor", + "wordSecond": "colore", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tentar", + "wordSecond": "provare", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cabine", + "wordSecond": "cabina", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "garantia", + "wordSecond": "garanzia", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "devolução", + "wordSecond": "resoconto", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cliente", + "wordSecond": "cliente", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vendedor", + "wordSecond": "venditore", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cheque", + "wordSecond": "assegno", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "poupança", + "wordSecond": "risparmio", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dívida", + "wordSecond": "debito", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "juros", + "wordSecond": "interessi", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "salário", + "wordSecond": "stipendio", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gasto", + "wordSecond": "spesa", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lucro", + "wordSecond": "profitto", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "prejuízo", + "wordSecond": "perdita", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "barato", + "wordSecond": "economico", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "caro", + "wordSecond": "costoso", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "grátis", + "wordSecond": "gratuito", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "valor", + "wordSecond": "valore", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "moeda", + "wordSecond": "moneta", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nota", + "wordSecond": "banconota", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "caixa eletrônico", + "wordSecond": "bancomat", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "conta", + "wordSecond": "conto", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "banco", + "wordSecond": "banca", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "investimento", + "wordSecond": "investimento", + "createdAt": "2026-02-19T15:42:43.253Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_sports_leisure_de_fr_A2.json b/output/2026_02_19_sports_leisure_de_fr_A2.json new file mode 100644 index 0000000..8ca8c31 --- /dev/null +++ b/output/2026_02_19_sports_leisure_de_fr_A2.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:32:51.030Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Sports & Leisure" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Sports & Leisure" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fußball", + "wordSecond": "football", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Basketball", + "wordSecond": "basketball", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tennis", + "wordSecond": "tennis", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schwimmen", + "wordSecond": "natation", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Radfahren", + "wordSecond": "cyclisme", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Laufen", + "wordSecond": "course", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Springen", + "wordSecond": "saut", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Werfen", + "wordSecond": "lancer", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fangen", + "wordSecond": "attraper", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tor", + "wordSecond": "but", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Mannschaft", + "wordSecond": "équipe", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Spiel", + "wordSecond": "match", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Punkt", + "wordSecond": "point", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Champion", + "wordSecond": "champion", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schiedsrichter", + "wordSecond": "arbitre", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ball", + "wordSecond": "ballon", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Platz", + "wordSecond": "terrain", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Sieg", + "wordSecond": "victoire", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Niederlage", + "wordSecond": "défaite", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Trainer", + "wordSecond": "entraîneur", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Spieler", + "wordSecond": "joueur", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wettkampf", + "wordSecond": "compétition", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Medaille", + "wordSecond": "médaille", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pokal", + "wordSecond": "coupe", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wandern", + "wordSecond": "randonnée", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Angeln", + "wordSecond": "pêche", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tanzen", + "wordSecond": "danse", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Lesen", + "wordSecond": "lecture", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gaming", + "wordSecond": "jeu vidéo", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Musik", + "wordSecond": "musique", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Film", + "wordSecond": "film", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Konzert", + "wordSecond": "concert", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Theater", + "wordSecond": "théâtre", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Museum", + "wordSecond": "musée", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Park", + "wordSecond": "parc", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Strand", + "wordSecond": "plage", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schwimmbad", + "wordSecond": "piscine", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fahrrad", + "wordSecond": "vélo", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schuhe", + "wordSecond": "chaussures", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Trikot", + "wordSecond": "maillot", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hose", + "wordSecond": "pantalon", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Handschuh", + "wordSecond": "gant", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schläger", + "wordSecond": "raquette", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Netz", + "wordSecond": "filet", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pfeife", + "wordSecond": "sifflet", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Regel", + "wordSecond": "règle", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pause", + "wordSecond": "pause", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Training", + "wordSecond": "entraînement", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fitness", + "wordSecond": "fitness", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Yoga", + "wordSecond": "yoga", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gymnastik", + "wordSecond": "gymnastique", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Boxen", + "wordSecond": "boxe", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Skifahren", + "wordSecond": "ski", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schlittschuhlaufen", + "wordSecond": "patinage", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Surfen", + "wordSecond": "surf", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Segeln", + "wordSecond": "voile", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Klettern", + "wordSecond": "escalade", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Camping", + "wordSecond": "camping", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Picknick", + "wordSecond": "pique-nique", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Grillen", + "wordSecond": "barbecue", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Spaziergang", + "wordSecond": "promenade", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Reiten", + "wordSecond": "équitation", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Golf", + "wordSecond": "golf", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tischtennis", + "wordSecond": "tennis de table", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Badminton", + "wordSecond": "badminton", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Volleyball", + "wordSecond": "volley-ball", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Handball", + "wordSecond": "handball", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Rugby", + "wordSecond": "rugby", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Baseball", + "wordSecond": "baseball", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Eishockey", + "wordSecond": "hockey sur glace", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Turnen", + "wordSecond": "gymnastique artistique", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Leichtathletik", + "wordSecond": "athlétisme", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Marathon", + "wordSecond": "marathon", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Sprint", + "wordSecond": "sprint", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Weitsprung", + "wordSecond": "saut en longueur", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hochsprung", + "wordSecond": "saut en hauteur", + "createdAt": "2026-02-19T15:32:51.030Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_sports_leisure_de_it_A2.json b/output/2026_02_19_sports_leisure_de_it_A2.json new file mode 100644 index 0000000..3376ae1 --- /dev/null +++ b/output/2026_02_19_sports_leisure_de_it_A2.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:33:05.681Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Sports & Leisure" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Sports & Leisure" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fußball", + "wordSecond": "calcio", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Basketball", + "wordSecond": "pallacanestro", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tennis", + "wordSecond": "tennis", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schwimmen", + "wordSecond": "nuoto", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Radfahren", + "wordSecond": "ciclismo", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Laufen", + "wordSecond": "corsa", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Volleyball", + "wordSecond": "pallavolo", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Handball", + "wordSecond": "pallamano", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Golf", + "wordSecond": "golf", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Skifahren", + "wordSecond": "sci", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Eishockey", + "wordSecond": "hockey su ghiaccio", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Boxen", + "wordSecond": "pugilato", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rugby", + "wordSecond": "rugby", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tischtennis", + "wordSecond": "tennis da tavolo", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Badminton", + "wordSecond": "badminton", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Turnen", + "wordSecond": "ginnastica", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Reiten", + "wordSecond": "equitazione", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Segeln", + "wordSecond": "vela", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Klettern", + "wordSecond": "arrampicata", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wandern", + "wordSecond": "escursionismo", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Angeln", + "wordSecond": "pesca", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tanzen", + "wordSecond": "ballo", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Lesen", + "wordSecond": "lettura", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Spielen", + "wordSecond": "gioco", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gaming", + "wordSecond": "videogioco", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mannschaft", + "wordSecond": "squadra", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Spieler", + "wordSecond": "giocatore", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Trainer", + "wordSecond": "allenatore", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schiedsrichter", + "wordSecond": "arbitro", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tor", + "wordSecond": "porta", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ball", + "wordSecond": "palla", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Punkt", + "wordSecond": "punto", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Punkte", + "wordSecond": "punti", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sieg", + "wordSecond": "vittoria", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Niederlage", + "wordSecond": "sconfitta", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Unentschieden", + "wordSecond": "pareggio", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Meisterschaft", + "wordSecond": "campionato", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Meister", + "wordSecond": "campione", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pokal", + "wordSecond": "coppa", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Medaille", + "wordSecond": "medaglia", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Stadion", + "wordSecond": "stadio", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Platz", + "wordSecond": "campo", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schwimmbad", + "wordSecond": "piscina", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fahrrad", + "wordSecond": "bicicletta", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schuhe", + "wordSecond": "scarpe", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Trikot", + "wordSecond": "maglietta", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hose", + "wordSecond": "pantaloni", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schläger", + "wordSecond": "racchetta", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Netz", + "wordSecond": "rete", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wettkampf", + "wordSecond": "gara", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Spiel", + "wordSecond": "partita", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Halbzeit", + "wordSecond": "intervallo", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pause", + "wordSecond": "pausa", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Training", + "wordSecond": "allenamento", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fitness", + "wordSecond": "fitness", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Yoga", + "wordSecond": "yoga", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Joggen", + "wordSecond": "jogging", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Spaziergang", + "wordSecond": "passeggiata", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Picknick", + "wordSecond": "picnic", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kino", + "wordSecond": "cinema", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Musik", + "wordSecond": "musica", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Konzert", + "wordSecond": "concerto", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Theater", + "wordSecond": "teatro", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Museum", + "wordSecond": "museo", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Park", + "wordSecond": "parco", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Strand", + "wordSecond": "spiaggia", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "See", + "wordSecond": "lago", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Berg", + "wordSecond": "montagna", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wald", + "wordSecond": "bosco", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Camping", + "wordSecond": "campeggio", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Grillen", + "wordSecond": "grigliata", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kochen", + "wordSecond": "cucina", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Basteln", + "wordSecond": "bricolage", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Malen", + "wordSecond": "pittura", + "createdAt": "2026-02-19T15:33:05.681Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_sports_leisure_en_de_A2.json b/output/2026_02_19_sports_leisure_en_de_A2.json new file mode 100644 index 0000000..e13e247 --- /dev/null +++ b/output/2026_02_19_sports_leisure_en_de_A2.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:30:27.519Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Sports & Leisure" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Sports & Leisure" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "football", + "wordSecond": "Fußball", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "basketball", + "wordSecond": "Basketball", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tennis", + "wordSecond": "Tennis", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "swimming", + "wordSecond": "Schwimmen", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cycling", + "wordSecond": "Radfahren", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "goal", + "wordSecond": "Tor", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "team", + "wordSecond": "Mannschaft", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "match", + "wordSecond": "Spiel", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "score", + "wordSecond": "Punktestand", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "champion", + "wordSecond": "Meister", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "referee", + "wordSecond": "Schiedsrichter", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "player", + "wordSecond": "Spieler", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ball", + "wordSecond": "Ball", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "field", + "wordSecond": "Feld", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "court", + "wordSecond": "Platz", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pool", + "wordSecond": "Schwimmbad", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bicycle", + "wordSecond": "Fahrrad", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hiking", + "wordSecond": "Wandern", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fishing", + "wordSecond": "Angeln", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "dancing", + "wordSecond": "Tanzen", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "reading", + "wordSecond": "Lesen", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "gaming", + "wordSecond": "Spielen", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sport", + "wordSecond": "Sport", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "game", + "wordSecond": "Spiel", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "win", + "wordSecond": "gewinnen", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lose", + "wordSecond": "verlieren", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "train", + "wordSecond": "trainieren", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "practice", + "wordSecond": "üben", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "exercise", + "wordSecond": "Bewegung", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "run", + "wordSecond": "laufen", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "jump", + "wordSecond": "springen", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "throw", + "wordSecond": "werfen", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "catch", + "wordSecond": "fangen", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "kick", + "wordSecond": "treten", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hit", + "wordSecond": "schlagen", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "swim", + "wordSecond": "schwimmen", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ride", + "wordSecond": "fahren", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "walk", + "wordSecond": "gehen", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "climb", + "wordSecond": "klettern", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "skiing", + "wordSecond": "Skifahren", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "skating", + "wordSecond": "Skaten", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "golf", + "wordSecond": "Golf", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "volleyball", + "wordSecond": "Volleyball", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "baseball", + "wordSecond": "Baseball", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "handball", + "wordSecond": "Handball", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "badminton", + "wordSecond": "Badminton", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "boxing", + "wordSecond": "Boxen", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "running", + "wordSecond": "Laufen", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "jogging", + "wordSecond": "Joggen", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "yoga", + "wordSecond": "Yoga", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "gym", + "wordSecond": "Fitnessstudio", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stadium", + "wordSecond": "Stadion", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "league", + "wordSecond": "Liga", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tournament", + "wordSecond": "Turnier", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "medal", + "wordSecond": "Medaille", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cup", + "wordSecond": "Pokal", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "victory", + "wordSecond": "Sieg", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "defeat", + "wordSecond": "Niederlage", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "coach", + "wordSecond": "Trainer", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fan", + "wordSecond": "Fan", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "spectator", + "wordSecond": "Zuschauer", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "leisure", + "wordSecond": "Freizeit", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hobby", + "wordSecond": "Hobby", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "music", + "wordSecond": "Musik", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "film", + "wordSecond": "Film", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "book", + "wordSecond": "Buch", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "park", + "wordSecond": "Park", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "beach", + "wordSecond": "Strand", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "mountain", + "wordSecond": "Berg", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "river", + "wordSecond": "Fluss", + "createdAt": "2026-02-19T15:30:27.519Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_sports_leisure_en_es_A2.json b/output/2026_02_19_sports_leisure_en_es_A2.json new file mode 100644 index 0000000..6d3f836 --- /dev/null +++ b/output/2026_02_19_sports_leisure_en_es_A2.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:30:00.508Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Sports & Leisure" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Sports & Leisure" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "football", + "wordSecond": "fútbol", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "basketball", + "wordSecond": "baloncesto", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tennis", + "wordSecond": "tenis", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "swimming", + "wordSecond": "natación", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cycling", + "wordSecond": "ciclismo", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "goal", + "wordSecond": "gol", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "team", + "wordSecond": "equipo", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "match", + "wordSecond": "partido", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "score", + "wordSecond": "puntuación", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "champion", + "wordSecond": "campeón", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "referee", + "wordSecond": "árbitro", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "player", + "wordSecond": "jugador", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ball", + "wordSecond": "pelota", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "field", + "wordSecond": "campo", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "court", + "wordSecond": "pista", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pool", + "wordSecond": "piscina", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bicycle", + "wordSecond": "bicicleta", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "race", + "wordSecond": "carrera", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "winner", + "wordSecond": "ganador", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "medal", + "wordSecond": "medalla", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sport", + "wordSecond": "deporte", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "game", + "wordSecond": "juego", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hiking", + "wordSecond": "senderismo", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fishing", + "wordSecond": "pesca", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dancing", + "wordSecond": "baile", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "reading", + "wordSecond": "lectura", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "gaming", + "wordSecond": "juegos", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "walk", + "wordSecond": "caminata", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "run", + "wordSecond": "carrera", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "jump", + "wordSecond": "salto", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "throw", + "wordSecond": "lanzamiento", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "catch", + "wordSecond": "atrapar", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "kick", + "wordSecond": "patada", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hit", + "wordSecond": "golpe", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "swim", + "wordSecond": "nadar", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ride", + "wordSecond": "montar", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "climb", + "wordSecond": "escalar", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "exercise", + "wordSecond": "ejercicio", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "stadium", + "wordSecond": "estadio", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "gym", + "wordSecond": "gimnasio", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "park", + "wordSecond": "parque", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "beach", + "wordSecond": "playa", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mountain", + "wordSecond": "montaña", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "river", + "wordSecond": "río", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lake", + "wordSecond": "lago", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "boat", + "wordSecond": "barco", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rod", + "wordSecond": "caña", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "book", + "wordSecond": "libro", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "music", + "wordSecond": "música", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dance", + "wordSecond": "bailar", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "song", + "wordSecond": "canción", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "film", + "wordSecond": "película", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "TV", + "wordSecond": "televisión", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "computer", + "wordSecond": "ordenador", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "phone", + "wordSecond": "teléfono", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "friend", + "wordSecond": "amigo", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "family", + "wordSecond": "familia", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "holiday", + "wordSecond": "vacaciones", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "weekend", + "wordSecond": "fin de semana", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "free time", + "wordSecond": "tiempo libre", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fun", + "wordSecond": "diversión", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "relax", + "wordSecond": "relajarse", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rest", + "wordSecond": "descanso", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "picnic", + "wordSecond": "picnic", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "camping", + "wordSecond": "camping", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tournament", + "wordSecond": "torneo", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "league", + "wordSecond": "liga", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "coach", + "wordSecond": "entrenador", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "uniform", + "wordSecond": "uniforme", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shoes", + "wordSecond": "zapatos", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "water", + "wordSecond": "agua", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sun", + "wordSecond": "sol", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "air", + "wordSecond": "aire", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "health", + "wordSecond": "salud", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "energy", + "wordSecond": "energía", + "createdAt": "2026-02-19T15:30:00.508Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_sports_leisure_en_fr_A2.json b/output/2026_02_19_sports_leisure_en_fr_A2.json new file mode 100644 index 0000000..dc7a991 --- /dev/null +++ b/output/2026_02_19_sports_leisure_en_fr_A2.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:30:40.802Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Sports & Leisure" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Sports & Leisure" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "football", + "wordSecond": "football", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "basketball", + "wordSecond": "basketball", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tennis", + "wordSecond": "tennis", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "swimming", + "wordSecond": "natation", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cycling", + "wordSecond": "cyclisme", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "goal", + "wordSecond": "but", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "team", + "wordSecond": "équipe", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "match", + "wordSecond": "match", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "score", + "wordSecond": "score", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "champion", + "wordSecond": "champion", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "referee", + "wordSecond": "arbitre", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "player", + "wordSecond": "joueur", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ball", + "wordSecond": "balle", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "game", + "wordSecond": "jeu", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sport", + "wordSecond": "sport", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hiking", + "wordSecond": "randonnée", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fishing", + "wordSecond": "pêche", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "dancing", + "wordSecond": "danse", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "reading", + "wordSecond": "lecture", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "gaming", + "wordSecond": "jeu vidéo", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "running", + "wordSecond": "course", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "walking", + "wordSecond": "marche", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "jogging", + "wordSecond": "jogging", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "yoga", + "wordSecond": "yoga", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "gym", + "wordSecond": "gymnase", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "exercise", + "wordSecond": "exercice", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "training", + "wordSecond": "entraînement", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "coach", + "wordSecond": "entraîneur", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "stadium", + "wordSecond": "stade", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "field", + "wordSecond": "terrain", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "court", + "wordSecond": "court", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pool", + "wordSecond": "piscine", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bike", + "wordSecond": "vélo", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "helmet", + "wordSecond": "casque", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shoes", + "wordSecond": "chaussures", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "uniform", + "wordSecond": "maillot", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "winner", + "wordSecond": "gagnant", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "loser", + "wordSecond": "perdant", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "victory", + "wordSecond": "victoire", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "defeat", + "wordSecond": "défaite", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "competition", + "wordSecond": "compétition", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tournament", + "wordSecond": "tournoi", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "league", + "wordSecond": "ligue", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "season", + "wordSecond": "saison", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "medal", + "wordSecond": "médaille", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "trophy", + "wordSecond": "trophée", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "prize", + "wordSecond": "prix", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fan", + "wordSecond": "fan", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "spectator", + "wordSecond": "spectateur", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cheer", + "wordSecond": "encourager", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "swim", + "wordSecond": "nager", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "run", + "wordSecond": "courir", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "jump", + "wordSecond": "sauter", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "throw", + "wordSecond": "lancer", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "catch", + "wordSecond": "attraper", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "kick", + "wordSecond": "frapper", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hit", + "wordSecond": "frapper", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pass", + "wordSecond": "passer", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shoot", + "wordSecond": "tirer", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "defend", + "wordSecond": "défendre", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "attack", + "wordSecond": "attaquer", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "camping", + "wordSecond": "camping", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "picnic", + "wordSecond": "pique-nique", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "park", + "wordSecond": "parc", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "beach", + "wordSecond": "plage", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "movie", + "wordSecond": "film", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "music", + "wordSecond": "musique", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "concert", + "wordSecond": "concert", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "party", + "wordSecond": "fête", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "holiday", + "wordSecond": "vacances", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "relax", + "wordSecond": "se détendre", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fun", + "wordSecond": "amusant", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "play", + "wordSecond": "jouer", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "watch", + "wordSecond": "regarder", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "listen", + "wordSecond": "écouter", + "createdAt": "2026-02-19T15:30:40.802Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_sports_leisure_en_it_A2.json b/output/2026_02_19_sports_leisure_en_it_A2.json new file mode 100644 index 0000000..7190b30 --- /dev/null +++ b/output/2026_02_19_sports_leisure_en_it_A2.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:30:54.244Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Sports & Leisure" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Sports & Leisure" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "football", + "wordSecond": "calcio", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "basketball", + "wordSecond": "pallacanestro", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tennis", + "wordSecond": "tennis", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "swimming", + "wordSecond": "nuoto", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cycling", + "wordSecond": "ciclismo", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "goal", + "wordSecond": "gol", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "team", + "wordSecond": "squadra", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "match", + "wordSecond": "partita", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "score", + "wordSecond": "punteggio", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "champion", + "wordSecond": "campione", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "referee", + "wordSecond": "arbitro", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "player", + "wordSecond": "giocatore", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ball", + "wordSecond": "palla", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "game", + "wordSecond": "gioco", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sport", + "wordSecond": "sport", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hiking", + "wordSecond": "escursionismo", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fishing", + "wordSecond": "pesca", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dancing", + "wordSecond": "ballo", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "reading", + "wordSecond": "lettura", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "gaming", + "wordSecond": "gioco", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "run", + "wordSecond": "corsa", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "walk", + "wordSecond": "passeggiata", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "jump", + "wordSecond": "salto", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "win", + "wordSecond": "vincere", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lose", + "wordSecond": "perdere", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "train", + "wordSecond": "allenarsi", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "practice", + "wordSecond": "pratica", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "competition", + "wordSecond": "competizione", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "victory", + "wordSecond": "vittoria", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "defeat", + "wordSecond": "sconfitta", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "stadium", + "wordSecond": "stadio", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "field", + "wordSecond": "campo", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "court", + "wordSecond": "campo", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pool", + "wordSecond": "piscina", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bicycle", + "wordSecond": "bicicletta", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "helmet", + "wordSecond": "casco", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shoes", + "wordSecond": "scarpe", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "uniform", + "wordSecond": "divisa", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "coach", + "wordSecond": "allenatore", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fan", + "wordSecond": "tifoso", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "league", + "wordSecond": "lega", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tournament", + "wordSecond": "torneo", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "medal", + "wordSecond": "medaglia", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "trophy", + "wordSecond": "trofeo", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "prize", + "wordSecond": "premio", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "record", + "wordSecond": "record", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "time", + "wordSecond": "tempo", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "speed", + "wordSecond": "velocità", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "strength", + "wordSecond": "forza", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "energy", + "wordSecond": "energia", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fun", + "wordSecond": "divertimento", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "relax", + "wordSecond": "rilassarsi", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "holiday", + "wordSecond": "vacanza", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "park", + "wordSecond": "parco", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "beach", + "wordSecond": "spiaggia", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "mountain", + "wordSecond": "montagna", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "river", + "wordSecond": "fiume", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lake", + "wordSecond": "lago", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "camping", + "wordSecond": "campeggio", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "picnic", + "wordSecond": "picnic", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "barbecue", + "wordSecond": "barbecue", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "music", + "wordSecond": "musica", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "film", + "wordSecond": "film", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "book", + "wordSecond": "libro", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "magazine", + "wordSecond": "rivista", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "newspaper", + "wordSecond": "giornale", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "television", + "wordSecond": "televisione", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "computer", + "wordSecond": "computer", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "internet", + "wordSecond": "internet", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "friends", + "wordSecond": "amici", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "family", + "wordSecond": "famiglia", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "weekend", + "wordSecond": "fine settimana", + "createdAt": "2026-02-19T15:30:54.244Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_sports_leisure_en_pt_A2.json b/output/2026_02_19_sports_leisure_en_pt_A2.json new file mode 100644 index 0000000..adb1ceb --- /dev/null +++ b/output/2026_02_19_sports_leisure_en_pt_A2.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:30:14.964Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Sports & Leisure" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Sports & Leisure" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "football", + "wordSecond": "futebol", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "basketball", + "wordSecond": "basquete", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tennis", + "wordSecond": "tênis", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "swimming", + "wordSecond": "natação", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cycling", + "wordSecond": "ciclismo", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "goal", + "wordSecond": "gol", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "team", + "wordSecond": "time", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "match", + "wordSecond": "partida", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "score", + "wordSecond": "placar", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "champion", + "wordSecond": "campeão", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "referee", + "wordSecond": "árbitro", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "player", + "wordSecond": "jogador", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ball", + "wordSecond": "bola", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "field", + "wordSecond": "campo", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "court", + "wordSecond": "quadra", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pool", + "wordSecond": "piscina", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "race", + "wordSecond": "corrida", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "win", + "wordSecond": "vencer", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lose", + "wordSecond": "perder", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "game", + "wordSecond": "jogo", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sport", + "wordSecond": "esporte", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "exercise", + "wordSecond": "exercício", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "run", + "wordSecond": "correr", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "jump", + "wordSecond": "pular", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "throw", + "wordSecond": "lançar", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "catch", + "wordSecond": "pegar", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "kick", + "wordSecond": "chutar", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "swim", + "wordSecond": "nadar", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ride", + "wordSecond": "andar", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "walk", + "wordSecond": "caminhar", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hiking", + "wordSecond": "caminhada", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fishing", + "wordSecond": "pesca", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dancing", + "wordSecond": "dança", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "reading", + "wordSecond": "leitura", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "gaming", + "wordSecond": "jogar", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "music", + "wordSecond": "música", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "movie", + "wordSecond": "filme", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "book", + "wordSecond": "livro", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "park", + "wordSecond": "parque", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "beach", + "wordSecond": "praia", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "gym", + "wordSecond": "academia", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shoes", + "wordSecond": "tênis", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "uniform", + "wordSecond": "uniforme", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "medal", + "wordSecond": "medalha", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "trophy", + "wordSecond": "troféu", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cup", + "wordSecond": "copa", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "league", + "wordSecond": "liga", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tournament", + "wordSecond": "torneio", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "training", + "wordSecond": "treino", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "coach", + "wordSecond": "treinador", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fan", + "wordSecond": "torcedor", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stadium", + "wordSecond": "estádio", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bicycle", + "wordSecond": "bicicleta", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "helmet", + "wordSecond": "capacete", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bat", + "wordSecond": "bastão", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "racket", + "wordSecond": "raquete", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "net", + "wordSecond": "rede", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "goalpost", + "wordSecond": "trave", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "whistle", + "wordSecond": "apito", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "card", + "wordSecond": "cartão", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "penalty", + "wordSecond": "pênalti", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "half", + "wordSecond": "tempo", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "victory", + "wordSecond": "vitória", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "defeat", + "wordSecond": "derrota", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "draw", + "wordSecond": "empate", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "season", + "wordSecond": "temporada", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "championship", + "wordSecond": "campeonato", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "soccer", + "wordSecond": "futebol", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "volleyball", + "wordSecond": "vôlei", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "baseball", + "wordSecond": "beisebol", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "golf", + "wordSecond": "golfe", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "boxing", + "wordSecond": "boxe", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "skiing", + "wordSecond": "esqui", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "surfing", + "wordSecond": "surfe", + "createdAt": "2026-02-19T15:30:14.964Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_sports_leisure_es_de_A2.json b/output/2026_02_19_sports_leisure_es_de_A2.json new file mode 100644 index 0000000..9b66fbc --- /dev/null +++ b/output/2026_02_19_sports_leisure_es_de_A2.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:31:23.667Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Sports & Leisure" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Sports & Leisure" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "fútbol", + "wordSecond": "Fußball", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "baloncesto", + "wordSecond": "Basketball", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tenis", + "wordSecond": "Tennis", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "natación", + "wordSecond": "Schwimmen", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ciclismo", + "wordSecond": "Radfahren", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "gol", + "wordSecond": "Tor", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "equipo", + "wordSecond": "Mannschaft", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "partido", + "wordSecond": "Spiel", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "puntuación", + "wordSecond": "Punktzahl", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "campeón", + "wordSecond": "Meister", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "árbitro", + "wordSecond": "Schiedsrichter", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "jugador", + "wordSecond": "Spieler", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pelota", + "wordSecond": "Ball", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cancha", + "wordSecond": "Platz", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "red", + "wordSecond": "Netz", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "raqueta", + "wordSecond": "Schläger", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "piscina", + "wordSecond": "Schwimmbad", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "bicicleta", + "wordSecond": "Fahrrad", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "carrera", + "wordSecond": "Rennen", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "victoria", + "wordSecond": "Sieg", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "derrota", + "wordSecond": "Niederlage", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "entrenador", + "wordSecond": "Trainer", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ejercicio", + "wordSecond": "Übung", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "correr", + "wordSecond": "laufen", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "saltar", + "wordSecond": "springen", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lanzar", + "wordSecond": "werfen", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "atrapar", + "wordSecond": "fangen", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "gritar", + "wordSecond": "schreien", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "celebrar", + "wordSecond": "feiern", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "espectador", + "wordSecond": "Zuschauer", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "estadio", + "wordSecond": "Stadion", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "trofeo", + "wordSecond": "Pokal", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "medalla", + "wordSecond": "Medaille", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "reglas", + "wordSecond": "Regeln", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "competencia", + "wordSecond": "Wettbewerb", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "senderismo", + "wordSecond": "Wandern", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pesca", + "wordSecond": "Angeln", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "baile", + "wordSecond": "Tanzen", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lectura", + "wordSecond": "Lesen", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "juego", + "wordSecond": "Spiel", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "videojuego", + "wordSecond": "Videospiel", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "música", + "wordSecond": "Musik", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cine", + "wordSecond": "Kino", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "televisión", + "wordSecond": "Fernsehen", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "parque", + "wordSecond": "Park", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "playa", + "wordSecond": "Strand", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "montaña", + "wordSecond": "Berg", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lago", + "wordSecond": "See", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "camping", + "wordSecond": "Camping", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "picnic", + "wordSecond": "Picknick", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "fiesta", + "wordSecond": "Party", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "amigo", + "wordSecond": "Freund", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "familia", + "wordSecond": "Familie", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "diversión", + "wordSecond": "Spaß", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "relajación", + "wordSecond": "Entspannung", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "vacaciones", + "wordSecond": "Ferien", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "fin de semana", + "wordSecond": "Wochenende", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tiempo libre", + "wordSecond": "Freizeit", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pasatiempo", + "wordSecond": "Hobby", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "instrumento", + "wordSecond": "Instrument", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pintura", + "wordSecond": "Malerei", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "fotografía", + "wordSecond": "Fotografie", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cocina", + "wordSecond": "Kochen", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "viaje", + "wordSecond": "Reise", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "libro", + "wordSecond": "Buch", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "revista", + "wordSecond": "Zeitschrift", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "periódico", + "wordSecond": "Zeitung", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "internet", + "wordSecond": "Internet", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "computadora", + "wordSecond": "Computer", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "teléfono", + "wordSecond": "Telefon", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "deporte", + "wordSecond": "Sport", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "actividad", + "wordSecond": "Aktivität", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "salud", + "wordSecond": "Gesundheit", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "energía", + "wordSecond": "Energie", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "fuerza", + "wordSecond": "Kraft", + "createdAt": "2026-02-19T15:31:23.667Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_sports_leisure_es_fr_A2.json b/output/2026_02_19_sports_leisure_es_fr_A2.json new file mode 100644 index 0000000..d593d72 --- /dev/null +++ b/output/2026_02_19_sports_leisure_es_fr_A2.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:31:37.481Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Sports & Leisure" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Sports & Leisure" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fútbol", + "wordSecond": "football", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "baloncesto", + "wordSecond": "basket-ball", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tenis", + "wordSecond": "tennis", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "natación", + "wordSecond": "natation", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ciclismo", + "wordSecond": "cyclisme", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "correr", + "wordSecond": "courir", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "saltar", + "wordSecond": "sauter", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gol", + "wordSecond": "but", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "equipo", + "wordSecond": "équipe", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "partido", + "wordSecond": "match", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "puntuación", + "wordSecond": "score", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "campeón", + "wordSecond": "champion", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "árbitro", + "wordSecond": "arbitre", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "jugador", + "wordSecond": "joueur", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "entrenador", + "wordSecond": "entraîneur", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pelota", + "wordSecond": "balle", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "raqueta", + "wordSecond": "raquette", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "piscina", + "wordSecond": "piscine", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "bicicleta", + "wordSecond": "vélo", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "estadio", + "wordSecond": "stade", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cancha", + "wordSecond": "terrain", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "red", + "wordSecond": "filet", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "portería", + "wordSecond": "cage", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cesta", + "wordSecond": "panier", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ganar", + "wordSecond": "gagner", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "perder", + "wordSecond": "perdre", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "jugar", + "wordSecond": "jouer", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "competir", + "wordSecond": "concourir", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "entrenar", + "wordSecond": "s'entraîner", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "descanso", + "wordSecond": "repos", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "victoria", + "wordSecond": "victoire", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "derrota", + "wordSecond": "défaite", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "empate", + "wordSecond": "match nul", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "medalla", + "wordSecond": "médaille", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "trofeo", + "wordSecond": "trophée", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "senderismo", + "wordSecond": "randonnée", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pesca", + "wordSecond": "pêche", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "baile", + "wordSecond": "danse", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lectura", + "wordSecond": "lecture", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "juego", + "wordSecond": "jeu", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cine", + "wordSecond": "cinéma", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "música", + "wordSecond": "musique", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "televisión", + "wordSecond": "télévision", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "parque", + "wordSecond": "parc", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "playa", + "wordSecond": "plage", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "montaña", + "wordSecond": "montagne", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "río", + "wordSecond": "rivière", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lago", + "wordSecond": "lac", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "campo", + "wordSecond": "campagne", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gimnasio", + "wordSecond": "gymnase", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ejercicio", + "wordSecond": "exercice", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "salud", + "wordSecond": "santé", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "diversión", + "wordSecond": "amusement", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vacaciones", + "wordSecond": "vacances", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "viaje", + "wordSecond": "voyage", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "paseo", + "wordSecond": "promenade", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "picnic", + "wordSecond": "pique-nique", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fiesta", + "wordSecond": "fête", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "concierto", + "wordSecond": "concert", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "museo", + "wordSecond": "musée", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "libro", + "wordSecond": "livre", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "película", + "wordSecond": "film", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "canción", + "wordSecond": "chanson", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "instrumento", + "wordSecond": "instrument", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pintura", + "wordSecond": "peinture", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fotografía", + "wordSecond": "photographie", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cocina", + "wordSecond": "cuisine", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "jardinería", + "wordSecond": "jardinage", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "coleccionar", + "wordSecond": "collectionner", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "relajarse", + "wordSecond": "se détendre", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pasatiempo", + "wordSecond": "passe-temps", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ocio", + "wordSecond": "loisir", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "amigo", + "wordSecond": "ami", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "familia", + "wordSecond": "famille", + "createdAt": "2026-02-19T15:31:37.481Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_sports_leisure_es_it_A2.json b/output/2026_02_19_sports_leisure_es_it_A2.json new file mode 100644 index 0000000..4adc6e3 --- /dev/null +++ b/output/2026_02_19_sports_leisure_es_it_A2.json @@ -0,0 +1,1033 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:31:52.478Z", + "metadata": { + "itemCount": 78, + "categoryCount": 1, + "exportScope": "Category: Sports & Leisure" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Sports & Leisure" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "fútbol", + "wordSecond": "calcio", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "baloncesto", + "wordSecond": "pallacanestro", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tenis", + "wordSecond": "tennis", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "natación", + "wordSecond": "nuoto", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ciclismo", + "wordSecond": "ciclismo", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gol", + "wordSecond": "gol", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "equipo", + "wordSecond": "squadra", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "partido", + "wordSecond": "partita", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "puntuación", + "wordSecond": "punteggio", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "campeón", + "wordSecond": "campione", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "árbitro", + "wordSecond": "arbitro", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "jugador", + "wordSecond": "giocatore", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pelota", + "wordSecond": "palla", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cancha", + "wordSecond": "campo", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "red", + "wordSecond": "rete", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "portería", + "wordSecond": "porta", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "entrenador", + "wordSecond": "allenatore", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "victoria", + "wordSecond": "vittoria", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "derrota", + "wordSecond": "sconfitta", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "empate", + "wordSecond": "pareggio", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "liga", + "wordSecond": "lega", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "trofeo", + "wordSecond": "trofeo", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "medalla", + "wordSecond": "medaglia", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estadio", + "wordSecond": "stadio", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "piscina", + "wordSecond": "piscina", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bicicleta", + "wordSecond": "bicicletta", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "raqueta", + "wordSecond": "racchetta", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "balón", + "wordSecond": "pallone", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cesta", + "wordSecond": "canestro", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pista", + "wordSecond": "pista", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "senderismo", + "wordSecond": "escursionismo", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pesca", + "wordSecond": "pesca", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "baile", + "wordSecond": "ballo", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lectura", + "wordSecond": "lettura", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "juego", + "wordSecond": "gioco", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "correr", + "wordSecond": "correre", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "saltar", + "wordSecond": "saltare", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nadar", + "wordSecond": "nuotare", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "montar", + "wordSecond": "cavalcare", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "esquiar", + "wordSecond": "sciare", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "patinar", + "wordSecond": "pattinare", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "surf", + "wordSecond": "surf", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "boxeo", + "wordSecond": "boxe", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gimnasio", + "wordSecond": "palestra", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ejercicio", + "wordSecond": "esercizio", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "carrera", + "wordSecond": "corsa", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "maratón", + "wordSecond": "maratona", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tiempo", + "wordSecond": "tempo", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "récord", + "wordSecond": "record", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "aficionado", + "wordSecond": "tifoso", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "silbato", + "wordSecond": "fischietto", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "falta", + "wordSecond": "fallo", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "penalti", + "wordSecond": "rigore", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "saque", + "wordSecond": "calcio d'inizio", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "defensa", + "wordSecond": "difesa", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ataque", + "wordSecond": "attacco", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "centro", + "wordSecond": "centro", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pase", + "wordSecond": "passaggio", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tiro", + "wordSecond": "tiro", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "parada", + "wordSecond": "parata", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lesión", + "wordSecond": "infortunio", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "descanso", + "wordSecond": "intervallo", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "final", + "wordSecond": "finale", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "semifinal", + "wordSecond": "semifinale", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cuartos", + "wordSecond": "quarti", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "octavos", + "wordSecond": "ottavi", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "grupo", + "wordSecond": "gruppo", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "clasificación", + "wordSecond": "classifica", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "puesto", + "wordSecond": "posizione", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "punto", + "wordSecond": "punto", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ocio", + "wordSecond": "tempo libero", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vacaciones", + "wordSecond": "vacanze", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "playa", + "wordSecond": "spiaggia", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "parque", + "wordSecond": "parco", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "campamento", + "wordSecond": "campeggio", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "concierto", + "wordSecond": "concerto", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cine", + "wordSecond": "cinema", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "museo", + "wordSecond": "museo", + "createdAt": "2026-02-19T15:31:52.478Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_sports_leisure_es_pt_A2.json b/output/2026_02_19_sports_leisure_es_pt_A2.json new file mode 100644 index 0000000..7884f7d --- /dev/null +++ b/output/2026_02_19_sports_leisure_es_pt_A2.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:31:08.940Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Sports & Leisure" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Sports & Leisure" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fútbol", + "wordSecond": "futebol", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "baloncesto", + "wordSecond": "basquete", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tenis", + "wordSecond": "tênis", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "natación", + "wordSecond": "natação", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ciclismo", + "wordSecond": "ciclismo", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gol", + "wordSecond": "gol", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "equipo", + "wordSecond": "time", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "partido", + "wordSecond": "partida", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "puntuación", + "wordSecond": "pontuação", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "campeón", + "wordSecond": "campeão", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "árbitro", + "wordSecond": "árbitro", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "jugador", + "wordSecond": "jogador", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pelota", + "wordSecond": "bola", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cancha", + "wordSecond": "quadra", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "red", + "wordSecond": "rede", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "portería", + "wordSecond": "gol", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "entrenador", + "wordSecond": "treinador", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "victoria", + "wordSecond": "vitória", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "derrota", + "wordSecond": "derrota", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "empate", + "wordSecond": "empate", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "liga", + "wordSecond": "liga", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "trofeo", + "wordSecond": "troféu", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "medalla", + "wordSecond": "medalha", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ejercicio", + "wordSecond": "exercício", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "correr", + "wordSecond": "correr", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "saltar", + "wordSecond": "pular", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lanzar", + "wordSecond": "lançar", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "atrapar", + "wordSecond": "pegar", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "patear", + "wordSecond": "chutar", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nadar", + "wordSecond": "nadar", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "montar", + "wordSecond": "andar", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "esquiar", + "wordSecond": "esquiar", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "patinar", + "wordSecond": "patinar", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "surf", + "wordSecond": "surfe", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vóleibol", + "wordSecond": "vôlei", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "béisbol", + "wordSecond": "beisebol", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rugby", + "wordSecond": "rúgbi", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "golf", + "wordSecond": "golfe", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "boxeo", + "wordSecond": "boxe", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "atletismo", + "wordSecond": "atletismo", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gimnasio", + "wordSecond": "academia", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pesas", + "wordSecond": "pesos", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estadio", + "wordSecond": "estádio", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "espectador", + "wordSecond": "torcedor", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "afición", + "wordSecond": "torcida", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "silbato", + "wordSecond": "apito", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tiempo", + "wordSecond": "tempo", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ronda", + "wordSecond": "rodada", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "final", + "wordSecond": "final", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "senderismo", + "wordSecond": "caminhada", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pesca", + "wordSecond": "pescaria", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "baile", + "wordSecond": "dança", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lectura", + "wordSecond": "leitura", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "juego", + "wordSecond": "jogo", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "videojuego", + "wordSecond": "videogame", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cine", + "wordSecond": "cinema", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "música", + "wordSecond": "música", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "teatro", + "wordSecond": "teatro", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "concierto", + "wordSecond": "show", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pintura", + "wordSecond": "pintura", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fotografía", + "wordSecond": "fotografia", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cocina", + "wordSecond": "culinária", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "jardinería", + "wordSecond": "jardinagem", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "viaje", + "wordSecond": "viagem", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "camping", + "wordSecond": "acampamento", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "playa", + "wordSecond": "praia", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "parque", + "wordSecond": "parque", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "piscina", + "wordSecond": "piscina", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bicicleta", + "wordSecond": "bicicleta", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "raqueta", + "wordSecond": "raquete", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "guantes", + "wordSecond": "luvas", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "casco", + "wordSecond": "capacete", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "uniforme", + "wordSecond": "uniforme", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "zapatillas", + "wordSecond": "tênis", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "diversión", + "wordSecond": "diversão", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "descanso", + "wordSecond": "descanso", + "createdAt": "2026-02-19T15:31:08.940Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_sports_leisure_fr_it_A2.json b/output/2026_02_19_sports_leisure_fr_it_A2.json new file mode 100644 index 0000000..b1e071a --- /dev/null +++ b/output/2026_02_19_sports_leisure_fr_it_A2.json @@ -0,0 +1,1020 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:33:22.328Z", + "metadata": { + "itemCount": 77, + "categoryCount": 1, + "exportScope": "Category: Sports & Leisure" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Sports & Leisure" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le football", + "wordSecond": "il calcio", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le basket-ball", + "wordSecond": "la pallacanestro", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le tennis", + "wordSecond": "il tennis", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la natation", + "wordSecond": "il nuoto", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le cyclisme", + "wordSecond": "il ciclismo", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le but", + "wordSecond": "il gol", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'équipe", + "wordSecond": "la squadra", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le match", + "wordSecond": "la partita", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le score", + "wordSecond": "il punteggio", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le champion", + "wordSecond": "il campione", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'arbitre", + "wordSecond": "l'arbitro", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le joueur", + "wordSecond": "il giocatore", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le stade", + "wordSecond": "lo stadio", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le terrain", + "wordSecond": "il campo", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le ballon", + "wordSecond": "il pallone", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la course", + "wordSecond": "la corsa", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la victoire", + "wordSecond": "la vittoria", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la défaite", + "wordSecond": "la sconfitta", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le sport", + "wordSecond": "lo sport", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'entraînement", + "wordSecond": "l'allenamento", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la randonnée", + "wordSecond": "l'escursionismo", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la pêche", + "wordSecond": "la pesca", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la danse", + "wordSecond": "la danza", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la lecture", + "wordSecond": "la lettura", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le jeu vidéo", + "wordSecond": "il videogioco", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le loisir", + "wordSecond": "il tempo libero", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le vélo", + "wordSecond": "la bicicletta", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la piscine", + "wordSecond": "la piscina", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la raquette", + "wordSecond": "la racchetta", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le filet", + "wordSecond": "la rete", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le maillot", + "wordSecond": "la maglietta", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "les chaussures", + "wordSecond": "le scarpe", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le temps", + "wordSecond": "il tempo", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la compétition", + "wordSecond": "la competizione", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la médaille", + "wordSecond": "la medaglia", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la coupe", + "wordSecond": "la coppa", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le tournoi", + "wordSecond": "il torneo", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le gymnase", + "wordSecond": "la palestra", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la musculation", + "wordSecond": "il bodybuilding", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le yoga", + "wordSecond": "lo yoga", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la course à pied", + "wordSecond": "la corsa", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le saut", + "wordSecond": "il salto", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le lancer", + "wordSecond": "il lancio", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le nageur", + "wordSecond": "il nuotatore", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le plongeon", + "wordSecond": "il tuffo", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le ski", + "wordSecond": "lo sci", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le patinage", + "wordSecond": "il pattinaggio", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le hockey", + "wordSecond": "l'hockey", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le rugby", + "wordSecond": "il rugby", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le golf", + "wordSecond": "il golf", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le baseball", + "wordSecond": "il baseball", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le volley-ball", + "wordSecond": "la pallavolo", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le handball", + "wordSecond": "la pallamano", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le badminton", + "wordSecond": "il badminton", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le judo", + "wordSecond": "il judo", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la boxe", + "wordSecond": "la boxe", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'escalade", + "wordSecond": "l'arrampicata", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le surf", + "wordSecond": "il surf", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la planche à voile", + "wordSecond": "il windsurf", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la voile", + "wordSecond": "la vela", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le canoë", + "wordSecond": "la canoa", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'aviron", + "wordSecond": "il canottaggio", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "l'équitation", + "wordSecond": "l'equitazione", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le tir à l'arc", + "wordSecond": "il tiro con l'arco", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le bowling", + "wordSecond": "il bowling", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le billard", + "wordSecond": "il biliardo", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "les échecs", + "wordSecond": "gli scacchi", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "les cartes", + "wordSecond": "le carte", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le puzzle", + "wordSecond": "il puzzle", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le cinéma", + "wordSecond": "il cinema", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la télévision", + "wordSecond": "la televisione", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la musique", + "wordSecond": "la musica", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le concert", + "wordSecond": "il concerto", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le théâtre", + "wordSecond": "il teatro", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "le parc", + "wordSecond": "il parco", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la plage", + "wordSecond": "la spiaggia", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "la montagne", + "wordSecond": "la montagna", + "createdAt": "2026-02-19T15:33:22.328Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_sports_leisure_pt_de_A2.json b/output/2026_02_19_sports_leisure_pt_de_A2.json new file mode 100644 index 0000000..2404e93 --- /dev/null +++ b/output/2026_02_19_sports_leisure_pt_de_A2.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:32:07.331Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Sports & Leisure" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Sports & Leisure" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "futebol", + "wordSecond": "Fußball", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "basquete", + "wordSecond": "Basketball", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tênis", + "wordSecond": "Tennis", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "natação", + "wordSecond": "Schwimmen", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ciclismo", + "wordSecond": "Radfahren", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "gol", + "wordSecond": "Tor", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "time", + "wordSecond": "Mannschaft", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "partida", + "wordSecond": "Spiel", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "placar", + "wordSecond": "Punktestand", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "campeão", + "wordSecond": "Meister", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "árbitro", + "wordSecond": "Schiedsrichter", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "bola", + "wordSecond": "Ball", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "jogador", + "wordSecond": "Spieler", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "treinador", + "wordSecond": "Trainer", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "campo", + "wordSecond": "Feld", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quadra", + "wordSecond": "Platz", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "piscina", + "wordSecond": "Schwimmbad", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "bicicleta", + "wordSecond": "Fahrrad", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "corrida", + "wordSecond": "Laufen", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ginástica", + "wordSecond": "Gymnastik", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vôlei", + "wordSecond": "Volleyball", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "handebol", + "wordSecond": "Handball", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "beisebol", + "wordSecond": "Baseball", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "golfe", + "wordSecond": "Golf", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "boxe", + "wordSecond": "Boxen", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "judô", + "wordSecond": "Judo", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "esqui", + "wordSecond": "Skifahren", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "patinação", + "wordSecond": "Schlittschuhlaufen", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "surfe", + "wordSecond": "Surfen", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "caminhada", + "wordSecond": "Wandern", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pesca", + "wordSecond": "Angeln", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dança", + "wordSecond": "Tanzen", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "leitura", + "wordSecond": "Lesen", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "jogo", + "wordSecond": "Spiel", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lazer", + "wordSecond": "Freizeit", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "competição", + "wordSecond": "Wettbewerb", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vitória", + "wordSecond": "Sieg", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "derrota", + "wordSecond": "Niederlage", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "empate", + "wordSecond": "Unentschieden", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "torcida", + "wordSecond": "Fans", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "estádio", + "wordSecond": "Stadion", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ginásio", + "wordSecond": "Turnhalle", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "uniforme", + "wordSecond": "Trikot", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tênis", + "wordSecond": "Turnschuhe", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "medalha", + "wordSecond": "Medaille", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "troféu", + "wordSecond": "Pokal", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "regras", + "wordSecond": "Regeln", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "exercício", + "wordSecond": "Übung", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "aquecimento", + "wordSecond": "Aufwärmen", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "descanso", + "wordSecond": "Pause", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "prática", + "wordSecond": "Training", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "amador", + "wordSecond": "Amateur", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "profissional", + "wordSecond": "Professionell", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "olímpico", + "wordSecond": "Olympisch", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "maratona", + "wordSecond": "Marathon", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "meta", + "wordSecond": "Ziel", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ponto", + "wordSecond": "Punkt", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "falta", + "wordSecond": "Foul", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pênalti", + "wordSecond": "Elfmeter", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escanteio", + "wordSecond": "Ecke", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ataque", + "wordSecond": "Angriff", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "defesa", + "wordSecond": "Verteidigung", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "goleiro", + "wordSecond": "Torwart", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "capitão", + "wordSecond": "Kapitän", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "árbitro assistente", + "wordSecond": "Linienrichter", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "apito", + "wordSecond": "Pfeife", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cronômetro", + "wordSecond": "Stoppuhr", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "resultado", + "wordSecond": "Ergebnis", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "classificação", + "wordSecond": "Tabelle", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "campeonato", + "wordSecond": "Meisterschaft", + "createdAt": "2026-02-19T15:32:07.331Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_sports_leisure_pt_fr_A2.json b/output/2026_02_19_sports_leisure_pt_fr_A2.json new file mode 100644 index 0000000..806bfb0 --- /dev/null +++ b/output/2026_02_19_sports_leisure_pt_fr_A2.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:32:21.912Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Sports & Leisure" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Sports & Leisure" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "futebol", + "wordSecond": "football", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "basquete", + "wordSecond": "basketball", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tênis", + "wordSecond": "tennis", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "natação", + "wordSecond": "natation", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ciclismo", + "wordSecond": "cyclisme", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "corrida", + "wordSecond": "course", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vôlei", + "wordSecond": "volley-ball", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "golfe", + "wordSecond": "golf", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "boxe", + "wordSecond": "boxe", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "judô", + "wordSecond": "judo", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ginástica", + "wordSecond": "gymnastique", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "esqui", + "wordSecond": "ski", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "patinação", + "wordSecond": "patinage", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "surfe", + "wordSecond": "surf", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "caminhada", + "wordSecond": "randonnée", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pesca", + "wordSecond": "pêche", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dança", + "wordSecond": "danse", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "leitura", + "wordSecond": "lecture", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "jogo", + "wordSecond": "jeu", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "time", + "wordSecond": "équipe", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "jogador", + "wordSecond": "joueur", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "treinador", + "wordSecond": "entraîneur", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "árbitro", + "wordSecond": "arbitre", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "gol", + "wordSecond": "but", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ponto", + "wordSecond": "point", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "placar", + "wordSecond": "score", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "campeão", + "wordSecond": "champion", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "campeonato", + "wordSecond": "championnat", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "partida", + "wordSecond": "match", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estádio", + "wordSecond": "stade", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quadra", + "wordSecond": "terrain", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "piscina", + "wordSecond": "piscine", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "bicicleta", + "wordSecond": "vélo", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "bola", + "wordSecond": "ballon", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "rede", + "wordSecond": "filet", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "raquete", + "wordSecond": "raquette", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "luva", + "wordSecond": "gant", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "capacete", + "wordSecond": "casque", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tênis", + "wordSecond": "baskets", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "uniforme", + "wordSecond": "maillot", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "medalha", + "wordSecond": "médaille", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "troféu", + "wordSecond": "trophée", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vitória", + "wordSecond": "victoire", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "derrota", + "wordSecond": "défaite", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "empate", + "wordSecond": "match nul", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "competição", + "wordSecond": "compétition", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "exercício", + "wordSecond": "exercice", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "aquecimento", + "wordSecond": "échauffement", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "descanso", + "wordSecond": "repos", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "torcida", + "wordSecond": "supporters", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "esporte", + "wordSecond": "sport", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lazer", + "wordSecond": "loisir", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "férias", + "wordSecond": "vacances", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "parque", + "wordSecond": "parc", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "praia", + "wordSecond": "plage", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "piquenique", + "wordSecond": "pique-nique", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "filme", + "wordSecond": "film", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "música", + "wordSecond": "musique", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "televisão", + "wordSecond": "télévision", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "computador", + "wordSecond": "ordinateur", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "console", + "wordSecond": "console", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "carta", + "wordSecond": "carte", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quebra-cabeça", + "wordSecond": "puzzle", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "passeio", + "wordSecond": "promenade", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "acampamento", + "wordSecond": "camping", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "barco", + "wordSecond": "bateau", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cavalo", + "wordSecond": "cheval", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "instrumento", + "wordSecond": "instrument", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pintura", + "wordSecond": "peinture", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fotografia", + "wordSecond": "photographie", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cozinha", + "wordSecond": "cuisine", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "jardinagem", + "wordSecond": "jardinage", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "shopping", + "wordSecond": "shopping", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "amigo", + "wordSecond": "ami", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "família", + "wordSecond": "famille", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "diversão", + "wordSecond": "amusement", + "createdAt": "2026-02-19T15:32:21.912Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_sports_leisure_pt_it_A2.json b/output/2026_02_19_sports_leisure_pt_it_A2.json new file mode 100644 index 0000000..2ea89ea --- /dev/null +++ b/output/2026_02_19_sports_leisure_pt_it_A2.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:32:36.215Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Sports & Leisure" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Sports & Leisure" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "futebol", + "wordSecond": "calcio", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "basquete", + "wordSecond": "pallacanestro", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tênis", + "wordSecond": "tennis", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "natação", + "wordSecond": "nuoto", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ciclismo", + "wordSecond": "ciclismo", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gol", + "wordSecond": "gol", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "time", + "wordSecond": "squadra", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "partida", + "wordSecond": "partita", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "placar", + "wordSecond": "punteggio", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "campeão", + "wordSecond": "campione", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "árbitro", + "wordSecond": "arbitro", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "jogador", + "wordSecond": "giocatore", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bola", + "wordSecond": "palla", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "campo", + "wordSecond": "campo", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quadra", + "wordSecond": "campo", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "piscina", + "wordSecond": "piscina", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bicicleta", + "wordSecond": "bicicletta", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "corrida", + "wordSecond": "corsa", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "maratona", + "wordSecond": "maratona", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ginástica", + "wordSecond": "ginnastica", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vôlei", + "wordSecond": "pallavolo", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "handebol", + "wordSecond": "pallamano", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "boxe", + "wordSecond": "boxe", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "judô", + "wordSecond": "judo", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "esqui", + "wordSecond": "sci", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "patinação", + "wordSecond": "pattinaggio", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "surfe", + "wordSecond": "surf", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "caminhada", + "wordSecond": "escursione", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pesca", + "wordSecond": "pesca", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dança", + "wordSecond": "ballo", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "leitura", + "wordSecond": "lettura", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "jogo", + "wordSecond": "gioco", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "videogame", + "wordSecond": "videogioco", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "filme", + "wordSecond": "film", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "música", + "wordSecond": "musica", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "teatro", + "wordSecond": "teatro", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cinema", + "wordSecond": "cinema", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "parque", + "wordSecond": "parco", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "praia", + "wordSecond": "spiaggia", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "piquenique", + "wordSecond": "picnic", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "férias", + "wordSecond": "vacanze", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "viagem", + "wordSecond": "viaggio", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "acampamento", + "wordSecond": "campeggio", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "barco", + "wordSecond": "barca", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nadar", + "wordSecond": "nuotare", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "correr", + "wordSecond": "correre", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pular", + "wordSecond": "saltare", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chutar", + "wordSecond": "calciare", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lançar", + "wordSecond": "lanciare", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pegar", + "wordSecond": "prendere", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vencer", + "wordSecond": "vincere", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "perder", + "wordSecond": "perdere", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "empatar", + "wordSecond": "pareggiare", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "competição", + "wordSecond": "competizione", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "troféu", + "wordSecond": "trofeo", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "medalha", + "wordSecond": "medaglia", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "treinador", + "wordSecond": "allenatore", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "torcida", + "wordSecond": "tifosi", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estádio", + "wordSecond": "stadio", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "uniforme", + "wordSecond": "uniforme", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tênis", + "wordSecond": "scarpe da ginnastica", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "óculos de natação", + "wordSecond": "occhialini", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "capacete", + "wordSecond": "casco", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "raquete", + "wordSecond": "racchetta", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "rede", + "wordSecond": "rete", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cesta", + "wordSecond": "canestro", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pênalti", + "wordSecond": "rigore", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "escanteio", + "wordSecond": "calcio d'angolo", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "intervalo", + "wordSecond": "intervallo", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lesão", + "wordSecond": "infortunio", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vitória", + "wordSecond": "vittoria", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "derrota", + "wordSecond": "sconfitta", + "createdAt": "2026-02-19T15:32:36.215Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_technology_internet_de_fr_B1.json b/output/2026_02_19_technology_internet_de_fr_B1.json new file mode 100644 index 0000000..70fbe2a --- /dev/null +++ b/output/2026_02_19_technology_internet_de_fr_B1.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:36:20.092Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Technology & Internet" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Technology & Internet" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Laptop", + "wordSecond": "ordinateur portable", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tastatur", + "wordSecond": "clavier", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bildschirm", + "wordSecond": "écran", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Prozessor", + "wordSecond": "processeur", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Batterie", + "wordSecond": "batterie", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Website", + "wordSecond": "site web", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "herunterladen", + "wordSecond": "télécharger", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "hochladen", + "wordSecond": "téléverser", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Passwort", + "wordSecond": "mot de passe", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Browser", + "wordSecond": "navigateur", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "suchen", + "wordSecond": "rechercher", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Profil", + "wordSecond": "profil", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Beitrag", + "wordSecond": "publication", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "teilen", + "wordSecond": "partager", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "folgen", + "wordSecond": "suivre", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Nachricht", + "wordSecond": "message", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "App", + "wordSecond": "application", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Update", + "wordSecond": "mise à jour", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "abstürzen", + "wordSecond": "planter", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "installieren", + "wordSecond": "installer", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Cloud", + "wordSecond": "nuage", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Maus", + "wordSecond": "souris", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Lautsprecher", + "wordSecond": "haut-parleur", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Mikrofon", + "wordSecond": "microphone", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kamera", + "wordSecond": "caméra", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Drucker", + "wordSecond": "imprimante", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Scanner", + "wordSecond": "scanner", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Festplatte", + "wordSecond": "disque dur", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Speicher", + "wordSecond": "mémoire", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Software", + "wordSecond": "logiciel", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Programm", + "wordSecond": "programme", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Datei", + "wordSecond": "fichier", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ordner", + "wordSecond": "dossier", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Internet", + "wordSecond": "internet", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "WLAN", + "wordSecond": "Wi-Fi", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Netzwerk", + "wordSecond": "réseau", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "E-Mail", + "wordSecond": "courriel", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Anhang", + "wordSecond": "pièce jointe", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Link", + "wordSecond": "lien", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Startseite", + "wordSecond": "page d'accueil", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Konto", + "wordSecond": "compte", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Benutzername", + "wordSecond": "nom d'utilisateur", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Sicherheit", + "wordSecond": "sécurité", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Virus", + "wordSecond": "virus", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Firewall", + "wordSecond": "pare-feu", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Backup", + "wordSecond": "sauvegarde", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wiederherstellen", + "wordSecond": "restaurer", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Einstellungen", + "wordSecond": "paramètres", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Menü", + "wordSecond": "menu", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Symbol", + "wordSecond": "icône", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fenster", + "wordSecond": "fenêtre", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tab", + "wordSecond": "onglet", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Verlauf", + "wordSecond": "historique", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Lesezeichen", + "wordSecond": "favoris", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Suchmaschine", + "wordSecond": "moteur de recherche", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ergebnis", + "wordSecond": "résultat", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Online", + "wordSecond": "en ligne", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Offline", + "wordSecond": "hors ligne", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Streaming", + "wordSecond": "diffusion en continu", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Video", + "wordSecond": "vidéo", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Audio", + "wordSecond": "audio", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Chat", + "wordSecond": "discussion", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kommentar", + "wordSecond": "commentaire", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Like", + "wordSecond": "j'aime", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Abonnent", + "wordSecond": "abonné", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hashtag", + "wordSecond": "mot-dièse", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Privat", + "wordSecond": "privé", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Öffentlich", + "wordSecond": "public", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Benachrichtigung", + "wordSecond": "notification", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Filter", + "wordSecond": "filtre", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Daten", + "wordSecond": "données", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Server", + "wordSecond": "serveur", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Router", + "wordSecond": "routeur", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kabel", + "wordSecond": "câble", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ladegerät", + "wordSecond": "chargeur", + "createdAt": "2026-02-19T15:36:20.092Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_technology_internet_de_it_B1.json b/output/2026_02_19_technology_internet_de_it_B1.json new file mode 100644 index 0000000..ef8a70b --- /dev/null +++ b/output/2026_02_19_technology_internet_de_it_B1.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:36:33.405Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Technology & Internet" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Technology & Internet" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Laptop", + "wordSecond": "laptop", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tastatur", + "wordSecond": "tastiera", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bildschirm", + "wordSecond": "schermo", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Prozessor", + "wordSecond": "processore", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Batterie", + "wordSecond": "batteria", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Maus", + "wordSecond": "mouse", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Lautsprecher", + "wordSecond": "altoparlante", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kopfhörer", + "wordSecond": "cuffie", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Mikrofon", + "wordSecond": "microfono", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Webcam", + "wordSecond": "webcam", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Drucker", + "wordSecond": "stampante", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Scanner", + "wordSecond": "scanner", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Festplatte", + "wordSecond": "hard disk", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "USB-Stick", + "wordSecond": "chiavetta USB", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kabel", + "wordSecond": "cavo", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Stecker", + "wordSecond": "spina", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Netzteil", + "wordSecond": "alimentatore", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Website", + "wordSecond": "sito web", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Download", + "wordSecond": "download", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Upload", + "wordSecond": "upload", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Passwort", + "wordSecond": "password", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Browser", + "wordSecond": "browser", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Suche", + "wordSecond": "ricerca", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Link", + "wordSecond": "link", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Online", + "wordSecond": "online", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Offline", + "wordSecond": "offline", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "E-Mail", + "wordSecond": "email", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Anhang", + "wordSecond": "allegato", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Benutzername", + "wordSecond": "nome utente", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Konto", + "wordSecond": "account", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Profil", + "wordSecond": "profilo", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Post", + "wordSecond": "post", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Teilen", + "wordSecond": "condividere", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Folgen", + "wordSecond": "seguire", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nachricht", + "wordSecond": "messaggio", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kommentar", + "wordSecond": "commento", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Like", + "wordSecond": "mi piace", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hashtag", + "wordSecond": "hashtag", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Newsfeed", + "wordSecond": "newsfeed", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Privat", + "wordSecond": "privato", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Öffentlich", + "wordSecond": "pubblico", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "App", + "wordSecond": "app", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Update", + "wordSecond": "aggiornamento", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Absturz", + "wordSecond": "crash", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Installieren", + "wordSecond": "installare", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Cloud", + "wordSecond": "cloud", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Software", + "wordSecond": "software", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Programm", + "wordSecond": "programma", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Datei", + "wordSecond": "file", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ordner", + "wordSecond": "cartella", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Speichern", + "wordSecond": "salvare", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Löschen", + "wordSecond": "eliminare", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kopieren", + "wordSecond": "copiare", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Einfügen", + "wordSecond": "incollare", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Menü", + "wordSecond": "menu", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Einstellung", + "wordSecond": "impostazione", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sicherheit", + "wordSecond": "sicurezza", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Virus", + "wordSecond": "virus", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Firewall", + "wordSecond": "firewall", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "WLAN", + "wordSecond": "Wi-Fi", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Netzwerk", + "wordSecond": "rete", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Router", + "wordSecond": "router", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Modem", + "wordSecond": "modem", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Geschwindigkeit", + "wordSecond": "velocità", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Daten", + "wordSecond": "dati", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Speicher", + "wordSecond": "memoria", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Internetverbindung", + "wordSecond": "connessione internet", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Startseite", + "wordSecond": "homepage", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Favoriten", + "wordSecond": "preferiti", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Verlauf", + "wordSecond": "cronologia", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tab", + "wordSecond": "scheda", + "createdAt": "2026-02-19T15:36:33.405Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_technology_internet_en_de_B1.json b/output/2026_02_19_technology_internet_en_de_B1.json new file mode 100644 index 0000000..f531556 --- /dev/null +++ b/output/2026_02_19_technology_internet_en_de_B1.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:34:00.705Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Technology & Internet" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Technology & Internet" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "laptop", + "wordSecond": "Laptop", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "keyboard", + "wordSecond": "Tastatur", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "screen", + "wordSecond": "Bildschirm", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "processor", + "wordSecond": "Prozessor", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "battery", + "wordSecond": "Batterie", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "website", + "wordSecond": "Webseite", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "download", + "wordSecond": "herunterladen", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "upload", + "wordSecond": "hochladen", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "password", + "wordSecond": "Passwort", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "browser", + "wordSecond": "Browser", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "search", + "wordSecond": "suchen", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "profile", + "wordSecond": "Profil", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "post", + "wordSecond": "Beitrag", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "share", + "wordSecond": "teilen", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "follow", + "wordSecond": "folgen", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "message", + "wordSecond": "Nachricht", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "app", + "wordSecond": "App", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "update", + "wordSecond": "Update", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "crash", + "wordSecond": "abstürzen", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "install", + "wordSecond": "installieren", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cloud", + "wordSecond": "Cloud", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "mouse", + "wordSecond": "Maus", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "printer", + "wordSecond": "Drucker", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "speaker", + "wordSecond": "Lautsprecher", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "headphones", + "wordSecond": "Kopfhörer", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "microphone", + "wordSecond": "Mikrofon", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "camera", + "wordSecond": "Kamera", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tablet", + "wordSecond": "Tablet", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "smartphone", + "wordSecond": "Smartphone", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "monitor", + "wordSecond": "Monitor", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "router", + "wordSecond": "Router", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "modem", + "wordSecond": "Modem", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "Wi-Fi", + "wordSecond": "WLAN", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "network", + "wordSecond": "Netzwerk", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "connection", + "wordSecond": "Verbindung", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "online", + "wordSecond": "online", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "offline", + "wordSecond": "offline", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "link", + "wordSecond": "Link", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "email", + "wordSecond": "E-Mail", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "attachment", + "wordSecond": "Anhang", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "username", + "wordSecond": "Benutzername", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "login", + "wordSecond": "anmelden", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "logout", + "wordSecond": "abmelden", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "account", + "wordSecond": "Konto", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "settings", + "wordSecond": "Einstellungen", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "menu", + "wordSecond": "Menü", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "icon", + "wordSecond": "Symbol", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "file", + "wordSecond": "Datei", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "folder", + "wordSecond": "Ordner", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "desktop", + "wordSecond": "Desktop", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "software", + "wordSecond": "Software", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hardware", + "wordSecond": "Hardware", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "program", + "wordSecond": "Programm", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "data", + "wordSecond": "Daten", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "memory", + "wordSecond": "Speicher", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "storage", + "wordSecond": "Speicherplatz", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "backup", + "wordSecond": "Backup", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "virus", + "wordSecond": "Virus", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "firewall", + "wordSecond": "Firewall", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "security", + "wordSecond": "Sicherheit", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "privacy", + "wordSecond": "Datenschutz", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "blog", + "wordSecond": "Blog", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "forum", + "wordSecond": "Forum", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "chat", + "wordSecond": "Chat", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "video call", + "wordSecond": "Videoanruf", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stream", + "wordSecond": "streamen", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "subscribe", + "wordSecond": "abonnieren", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "like", + "wordSecond": "gefällt mir", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "comment", + "wordSecond": "Kommentar", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "notification", + "wordSecond": "Benachrichtigung", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "feed", + "wordSecond": "Feed", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hashtag", + "wordSecond": "Hashtag", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "filter", + "wordSecond": "Filter", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tag", + "wordSecond": "taggen", + "createdAt": "2026-02-19T15:34:00.705Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_technology_internet_en_es_B1.json b/output/2026_02_19_technology_internet_en_es_B1.json new file mode 100644 index 0000000..5044664 --- /dev/null +++ b/output/2026_02_19_technology_internet_en_es_B1.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:33:35.080Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Technology & Internet" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Technology & Internet" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "laptop", + "wordSecond": "portátil", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "keyboard", + "wordSecond": "teclado", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "screen", + "wordSecond": "pantalla", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "processor", + "wordSecond": "procesador", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "battery", + "wordSecond": "batería", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "website", + "wordSecond": "sitio web", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "download", + "wordSecond": "descargar", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "upload", + "wordSecond": "subir", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "password", + "wordSecond": "contraseña", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "browser", + "wordSecond": "navegador", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "search", + "wordSecond": "buscar", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "profile", + "wordSecond": "perfil", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "post", + "wordSecond": "publicación", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "share", + "wordSecond": "compartir", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "follow", + "wordSecond": "seguir", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "message", + "wordSecond": "mensaje", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "app", + "wordSecond": "aplicación", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "update", + "wordSecond": "actualización", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "crash", + "wordSecond": "fallo", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "install", + "wordSecond": "instalar", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cloud", + "wordSecond": "nube", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mouse", + "wordSecond": "ratón", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "printer", + "wordSecond": "impresora", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "speaker", + "wordSecond": "altavoz", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "headphones", + "wordSecond": "auriculares", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cable", + "wordSecond": "cable", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "charger", + "wordSecond": "cargador", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "memory", + "wordSecond": "memoria", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "storage", + "wordSecond": "almacenamiento", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "file", + "wordSecond": "archivo", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "folder", + "wordSecond": "carpeta", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "link", + "wordSecond": "enlace", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "email", + "wordSecond": "correo electrónico", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "address", + "wordSecond": "dirección", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "account", + "wordSecond": "cuenta", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "username", + "wordSecond": "nombre de usuario", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "login", + "wordSecond": "iniciar sesión", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "logout", + "wordSecond": "cerrar sesión", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "homepage", + "wordSecond": "página principal", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "page", + "wordSecond": "página", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tab", + "wordSecond": "pestaña", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "window", + "wordSecond": "ventana", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "icon", + "wordSecond": "icono", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "menu", + "wordSecond": "menú", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "setting", + "wordSecond": "configuración", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "notification", + "wordSecond": "notificación", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "feed", + "wordSecond": "fuente", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "like", + "wordSecond": "me gusta", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "comment", + "wordSecond": "comentario", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tag", + "wordSecond": "etiqueta", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "friend", + "wordSecond": "amigo", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "group", + "wordSecond": "grupo", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "photo", + "wordSecond": "foto", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "video", + "wordSecond": "vídeo", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "stream", + "wordSecond": "transmisión", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "live", + "wordSecond": "en directo", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "chat", + "wordSecond": "chat", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "call", + "wordSecond": "llamada", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "voice", + "wordSecond": "voz", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "text", + "wordSecond": "texto", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "software", + "wordSecond": "software", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "program", + "wordSecond": "programa", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "version", + "wordSecond": "versión", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bug", + "wordSecond": "error", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "save", + "wordSecond": "guardar", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "delete", + "wordSecond": "eliminar", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "copy", + "wordSecond": "copiar", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "paste", + "wordSecond": "pegar", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cut", + "wordSecond": "cortar", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "undo", + "wordSecond": "deshacer", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "redo", + "wordSecond": "rehacer", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "backup", + "wordSecond": "copia de seguridad", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "security", + "wordSecond": "seguridad", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "virus", + "wordSecond": "virus", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "firewall", + "wordSecond": "cortafuegos", + "createdAt": "2026-02-19T15:33:35.080Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_technology_internet_en_fr_B1.json b/output/2026_02_19_technology_internet_en_fr_B1.json new file mode 100644 index 0000000..c341f7a --- /dev/null +++ b/output/2026_02_19_technology_internet_en_fr_B1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:34:13.575Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Technology & Internet" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Technology & Internet" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "laptop", + "wordSecond": "ordinateur portable", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "keyboard", + "wordSecond": "clavier", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "screen", + "wordSecond": "écran", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "processor", + "wordSecond": "processeur", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "battery", + "wordSecond": "batterie", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "website", + "wordSecond": "site web", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "download", + "wordSecond": "télécharger", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "upload", + "wordSecond": "téléverser", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "password", + "wordSecond": "mot de passe", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "browser", + "wordSecond": "navigateur", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "search", + "wordSecond": "recherche", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "profile", + "wordSecond": "profil", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "post", + "wordSecond": "publication", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "share", + "wordSecond": "partager", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "follow", + "wordSecond": "suivre", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "message", + "wordSecond": "message", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "app", + "wordSecond": "application", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "update", + "wordSecond": "mise à jour", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "crash", + "wordSecond": "planter", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "install", + "wordSecond": "installer", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cloud", + "wordSecond": "cloud", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "computer", + "wordSecond": "ordinateur", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "mouse", + "wordSecond": "souris", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "printer", + "wordSecond": "imprimante", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "speaker", + "wordSecond": "haut-parleur", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "headphones", + "wordSecond": "casque", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "microphone", + "wordSecond": "micro", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "camera", + "wordSecond": "caméra", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "charger", + "wordSecond": "chargeur", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cable", + "wordSecond": "câble", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "Wi-Fi", + "wordSecond": "Wi-Fi", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "network", + "wordSecond": "réseau", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "connection", + "wordSecond": "connexion", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "link", + "wordSecond": "lien", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "page", + "wordSecond": "page", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "homepage", + "wordSecond": "page d'accueil", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "email", + "wordSecond": "courriel", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "username", + "wordSecond": "nom d'utilisateur", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "login", + "wordSecond": "se connecter", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "logout", + "wordSecond": "se déconnecter", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "account", + "wordSecond": "compte", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "settings", + "wordSecond": "paramètres", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "icon", + "wordSecond": "icône", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "folder", + "wordSecond": "dossier", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "file", + "wordSecond": "fichier", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "save", + "wordSecond": "enregistrer", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "delete", + "wordSecond": "supprimer", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "copy", + "wordSecond": "copier", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "paste", + "wordSecond": "coller", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cut", + "wordSecond": "couper", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "undo", + "wordSecond": "annuler", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "redo", + "wordSecond": "rétablir", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "scroll", + "wordSecond": "défiler", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "click", + "wordSecond": "cliquer", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "tap", + "wordSecond": "toucher", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "swipe", + "wordSecond": "glisser", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "zoom", + "wordSecond": "zoomer", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "notification", + "wordSecond": "notification", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "alert", + "wordSecond": "alerte", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "error", + "wordSecond": "erreur", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bug", + "wordSecond": "bogue", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "virus", + "wordSecond": "virus", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "firewall", + "wordSecond": "pare-feu", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "backup", + "wordSecond": "sauvegarde", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "restore", + "wordSecond": "restaurer", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "stream", + "wordSecond": "diffuser", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "buffer", + "wordSecond": "tampon", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bandwidth", + "wordSecond": "bande passante", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "data", + "wordSecond": "données", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "memory", + "wordSecond": "mémoire", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "storage", + "wordSecond": "stockage", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "speed", + "wordSecond": "vitesse", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "traffic", + "wordSecond": "trafic", + "createdAt": "2026-02-19T15:34:13.575Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_technology_internet_en_it_B1.json b/output/2026_02_19_technology_internet_en_it_B1.json new file mode 100644 index 0000000..122cb2d --- /dev/null +++ b/output/2026_02_19_technology_internet_en_it_B1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:34:25.726Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Technology & Internet" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Technology & Internet" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "laptop", + "wordSecond": "portatile", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "keyboard", + "wordSecond": "tastiera", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "screen", + "wordSecond": "schermo", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "processor", + "wordSecond": "processore", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "battery", + "wordSecond": "batteria", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "website", + "wordSecond": "sito web", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "download", + "wordSecond": "scaricare", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "upload", + "wordSecond": "caricare", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "password", + "wordSecond": "password", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "browser", + "wordSecond": "browser", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "search", + "wordSecond": "cercare", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "profile", + "wordSecond": "profilo", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "post", + "wordSecond": "post", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "share", + "wordSecond": "condividere", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "follow", + "wordSecond": "seguire", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "message", + "wordSecond": "messaggio", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "app", + "wordSecond": "app", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "update", + "wordSecond": "aggiornamento", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "crash", + "wordSecond": "blocco", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "install", + "wordSecond": "installare", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cloud", + "wordSecond": "cloud", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "mouse", + "wordSecond": "mouse", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "printer", + "wordSecond": "stampante", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "speaker", + "wordSecond": "altoparlante", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "headphones", + "wordSecond": "cuffie", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cable", + "wordSecond": "cavo", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "charger", + "wordSecond": "caricabatterie", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tablet", + "wordSecond": "tablet", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "smartphone", + "wordSecond": "smartphone", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "monitor", + "wordSecond": "monitor", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hard drive", + "wordSecond": "hard disk", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "memory", + "wordSecond": "memoria", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "software", + "wordSecond": "software", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hardware", + "wordSecond": "hardware", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "link", + "wordSecond": "link", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "email", + "wordSecond": "email", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "attachment", + "wordSecond": "allegato", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "username", + "wordSecond": "nome utente", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "login", + "wordSecond": "accesso", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "logout", + "wordSecond": "uscita", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "homepage", + "wordSecond": "homepage", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "page", + "wordSecond": "pagina", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "online", + "wordSecond": "online", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "offline", + "wordSecond": "offline", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "connection", + "wordSecond": "connessione", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "Wi-Fi", + "wordSecond": "Wi-Fi", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "network", + "wordSecond": "rete", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "data", + "wordSecond": "dati", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "file", + "wordSecond": "file", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "folder", + "wordSecond": "cartella", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "icon", + "wordSecond": "icona", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "menu", + "wordSecond": "menu", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "settings", + "wordSecond": "impostazioni", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "backup", + "wordSecond": "backup", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "virus", + "wordSecond": "virus", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "firewall", + "wordSecond": "firewall", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "spam", + "wordSecond": "spam", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "blog", + "wordSecond": "blog", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "forum", + "wordSecond": "forum", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "chat", + "wordSecond": "chat", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "video call", + "wordSecond": "videochiamata", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "streaming", + "wordSecond": "streaming", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "social network", + "wordSecond": "social network", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "like", + "wordSecond": "mi piace", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "comment", + "wordSecond": "commento", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "notification", + "wordSecond": "notifica", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "feed", + "wordSecond": "feed", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hashtag", + "wordSecond": "hashtag", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "filter", + "wordSecond": "filtro", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "account", + "wordSecond": "account", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "privacy", + "wordSecond": "privacy", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "security", + "wordSecond": "sicurezza", + "createdAt": "2026-02-19T15:34:25.726Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_technology_internet_en_pt_B1.json b/output/2026_02_19_technology_internet_en_pt_B1.json new file mode 100644 index 0000000..ad5cfb3 --- /dev/null +++ b/output/2026_02_19_technology_internet_en_pt_B1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:33:48.109Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Technology & Internet" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Technology & Internet" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "laptop", + "wordSecond": "laptop", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "keyboard", + "wordSecond": "teclado", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "screen", + "wordSecond": "tela", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "processor", + "wordSecond": "processador", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "battery", + "wordSecond": "bateria", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "website", + "wordSecond": "site", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "download", + "wordSecond": "baixar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "upload", + "wordSecond": "enviar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "password", + "wordSecond": "senha", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "browser", + "wordSecond": "navegador", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "search", + "wordSecond": "buscar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "profile", + "wordSecond": "perfil", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "post", + "wordSecond": "postar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "share", + "wordSecond": "compartilhar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "follow", + "wordSecond": "seguir", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "message", + "wordSecond": "mensagem", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "app", + "wordSecond": "aplicativo", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "update", + "wordSecond": "atualização", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "crash", + "wordSecond": "travar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "install", + "wordSecond": "instalar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cloud", + "wordSecond": "nuvem", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "computer", + "wordSecond": "computador", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mouse", + "wordSecond": "mouse", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "printer", + "wordSecond": "impressora", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "speaker", + "wordSecond": "alto-falante", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "headphones", + "wordSecond": "fones de ouvido", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "microphone", + "wordSecond": "microfone", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "camera", + "wordSecond": "câmera", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "charger", + "wordSecond": "carregador", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cable", + "wordSecond": "cabo", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "Wi-Fi", + "wordSecond": "Wi-Fi", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "connection", + "wordSecond": "conexão", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "network", + "wordSecond": "rede", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "link", + "wordSecond": "link", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "page", + "wordSecond": "página", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "homepage", + "wordSecond": "página inicial", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "email", + "wordSecond": "e-mail", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "address", + "wordSecond": "endereço", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "username", + "wordSecond": "nome de usuário", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "login", + "wordSecond": "entrar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "logout", + "wordSecond": "sair", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "account", + "wordSecond": "conta", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "settings", + "wordSecond": "configurações", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "menu", + "wordSecond": "menu", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "icon", + "wordSecond": "ícone", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "file", + "wordSecond": "arquivo", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "folder", + "wordSecond": "pasta", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "save", + "wordSecond": "salvar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "delete", + "wordSecond": "excluir", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "copy", + "wordSecond": "copiar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "paste", + "wordSecond": "colar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cut", + "wordSecond": "recortar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "undo", + "wordSecond": "desfazer", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "redo", + "wordSecond": "refazer", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "scroll", + "wordSecond": "rolar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "click", + "wordSecond": "clicar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tap", + "wordSecond": "tocar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "swipe", + "wordSecond": "deslizar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "zoom", + "wordSecond": "zoom", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "notification", + "wordSecond": "notificação", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "alert", + "wordSecond": "alerta", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "error", + "wordSecond": "erro", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bug", + "wordSecond": "bug", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "virus", + "wordSecond": "vírus", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "firewall", + "wordSecond": "firewall", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "backup", + "wordSecond": "backup", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "restore", + "wordSecond": "restaurar", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stream", + "wordSecond": "transmitir", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "buffer", + "wordSecond": "buffer", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lag", + "wordSecond": "lag", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "offline", + "wordSecond": "offline", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "online", + "wordSecond": "online", + "createdAt": "2026-02-19T15:33:48.109Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_technology_internet_es_de_B1.json b/output/2026_02_19_technology_internet_es_de_B1.json new file mode 100644 index 0000000..29280d6 --- /dev/null +++ b/output/2026_02_19_technology_internet_es_de_B1.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:34:54.996Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Technology & Internet" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Technology & Internet" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ordenador portátil", + "wordSecond": "Laptop", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "teclado", + "wordSecond": "Tastatur", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pantalla", + "wordSecond": "Bildschirm", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "procesador", + "wordSecond": "Prozessor", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "batería", + "wordSecond": "Batterie", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ratón", + "wordSecond": "Maus", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "auriculares", + "wordSecond": "Kopfhörer", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "altavoz", + "wordSecond": "Lautsprecher", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "impresora", + "wordSecond": "Drucker", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "escáner", + "wordSecond": "Scanner", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "memoria", + "wordSecond": "Speicher", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "disco duro", + "wordSecond": "Festplatte", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cámara web", + "wordSecond": "Webcam", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "teléfono móvil", + "wordSecond": "Handy", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tableta", + "wordSecond": "Tablet", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "monitor", + "wordSecond": "Monitor", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cargador", + "wordSecond": "Ladegerät", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cable", + "wordSecond": "Kabel", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "conexión", + "wordSecond": "Verbindung", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "wifi", + "wordSecond": "WLAN", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sitio web", + "wordSecond": "Website", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "descargar", + "wordSecond": "herunterladen", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "subir", + "wordSecond": "hochladen", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "contraseña", + "wordSecond": "Passwort", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "navegador", + "wordSecond": "Browser", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "buscar", + "wordSecond": "suchen", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "enlace", + "wordSecond": "Link", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "correo electrónico", + "wordSecond": "E-Mail", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mensaje", + "wordSecond": "Nachricht", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "archivo", + "wordSecond": "Datei", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "carpeta", + "wordSecond": "Ordner", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "internet", + "wordSecond": "Internet", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "red", + "wordSecond": "Netzwerk", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "velocidad", + "wordSecond": "Geschwindigkeit", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "datos", + "wordSecond": "Daten", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "perfil", + "wordSecond": "Profil", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "publicación", + "wordSecond": "Post", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "compartir", + "wordSecond": "teilen", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "seguir", + "wordSecond": "folgen", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mensaje directo", + "wordSecond": "Direktnachricht", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "amigo", + "wordSecond": "Freund", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "grupo", + "wordSecond": "Gruppe", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "comentario", + "wordSecond": "Kommentar", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "me gusta", + "wordSecond": "Gefällt mir", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "notificación", + "wordSecond": "Benachrichtigung", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "configuración", + "wordSecond": "Einstellungen", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "privacidad", + "wordSecond": "Datenschutz", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "aplicación", + "wordSecond": "App", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "actualización", + "wordSecond": "Update", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "fallar", + "wordSecond": "abstürzen", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "instalar", + "wordSecond": "installieren", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "nube", + "wordSecond": "Cloud", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "programa", + "wordSecond": "Programm", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "software", + "wordSecond": "Software", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "virus", + "wordSecond": "Virus", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "seguridad", + "wordSecond": "Sicherheit", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "copia de seguridad", + "wordSecond": "Backup", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sistema operativo", + "wordSecond": "Betriebssystem", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "icono", + "wordSecond": "Symbol", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "menú", + "wordSecond": "Menü", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ventana", + "wordSecond": "Fenster", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "usuario", + "wordSecond": "Benutzer", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "contraseña", + "wordSecond": "Kennwort", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "iniciar sesión", + "wordSecond": "einloggen", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cerrar sesión", + "wordSecond": "ausloggen", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "registrarse", + "wordSecond": "registrieren", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "página de inicio", + "wordSecond": "Startseite", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "motor de búsqueda", + "wordSecond": "Suchmaschine", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "resultados", + "wordSecond": "Ergebnisse", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "descarga", + "wordSecond": "Download", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "subida", + "wordSecond": "Upload", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "almacenamiento", + "wordSecond": "Speicherplatz", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "servidor", + "wordSecond": "Server", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "conexión", + "wordSecond": "Anschluss", + "createdAt": "2026-02-19T15:34:54.996Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_technology_internet_es_fr_B1.json b/output/2026_02_19_technology_internet_es_fr_B1.json new file mode 100644 index 0000000..7896a59 --- /dev/null +++ b/output/2026_02_19_technology_internet_es_fr_B1.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:35:09.028Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Technology & Internet" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Technology & Internet" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ordenador portátil", + "wordSecond": "ordinateur portable", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "teclado", + "wordSecond": "clavier", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pantalla", + "wordSecond": "écran", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "procesador", + "wordSecond": "processeur", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "batería", + "wordSecond": "batterie", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ratón", + "wordSecond": "souris", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "auriculares", + "wordSecond": "écouteurs", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "altavoz", + "wordSecond": "haut-parleur", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "impresora", + "wordSecond": "imprimante", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "escáner", + "wordSecond": "scanner", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "memoria USB", + "wordSecond": "clé USB", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "disco duro", + "wordSecond": "disque dur", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cámara web", + "wordSecond": "webcam", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "micrófono", + "wordSecond": "microphone", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cargador", + "wordSecond": "chargeur", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "enchufe", + "wordSecond": "prise", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cable", + "wordSecond": "câble", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "conexión", + "wordSecond": "connexion", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "wifi", + "wordSecond": "wifi", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "red", + "wordSecond": "réseau", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sitio web", + "wordSecond": "site web", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "descargar", + "wordSecond": "télécharger", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "subir", + "wordSecond": "téléverser", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "contraseña", + "wordSecond": "mot de passe", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "navegador", + "wordSecond": "navigateur", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "buscar", + "wordSecond": "rechercher", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "enlace", + "wordSecond": "lien", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "página de inicio", + "wordSecond": "page d'accueil", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "correo electrónico", + "wordSecond": "courriel", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mensaje", + "wordSecond": "message", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "archivo", + "wordSecond": "fichier", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "carpeta", + "wordSecond": "dossier", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "icono", + "wordSecond": "icône", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ventana", + "wordSecond": "fenêtre", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "menú", + "wordSecond": "menu", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "botón", + "wordSecond": "bouton", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "perfil", + "wordSecond": "profil", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "publicación", + "wordSecond": "publication", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "compartir", + "wordSecond": "partager", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "seguir", + "wordSecond": "suivre", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mensaje privado", + "wordSecond": "message privé", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "amigo", + "wordSecond": "ami", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "grupo", + "wordSecond": "groupe", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "comentario", + "wordSecond": "commentaire", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "me gusta", + "wordSecond": "j'aime", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "notificación", + "wordSecond": "notification", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "configuración", + "wordSecond": "paramètres", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "aplicación", + "wordSecond": "application", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "actualización", + "wordSecond": "mise à jour", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fallar", + "wordSecond": "planter", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "instalar", + "wordSecond": "installer", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "desinstalar", + "wordSecond": "désinstaller", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nube", + "wordSecond": "cloud", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "programa", + "wordSecond": "logiciel", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sistema operativo", + "wordSecond": "système d'exploitation", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "virus", + "wordSecond": "virus", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "antivirus", + "wordSecond": "antivirus", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "copia de seguridad", + "wordSecond": "sauvegarde", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "restaurar", + "wordSecond": "restaurer", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "formatear", + "wordSecond": "formater", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "velocidad", + "wordSecond": "vitesse", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "datos", + "wordSecond": "données", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "almacenamiento", + "wordSecond": "stockage", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "memoria", + "wordSecond": "mémoire", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tarjeta gráfica", + "wordSecond": "carte graphique", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "placa base", + "wordSecond": "carte mère", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ventilador", + "wordSecond": "ventilateur", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tableta", + "wordSecond": "tablette", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "teléfono inteligente", + "wordSecond": "smartphone", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "auriculares inalámbricos", + "wordSecond": "écouteurs sans fil", + "createdAt": "2026-02-19T15:35:09.028Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_technology_internet_es_it_B1.json b/output/2026_02_19_technology_internet_es_it_B1.json new file mode 100644 index 0000000..43a5706 --- /dev/null +++ b/output/2026_02_19_technology_internet_es_it_B1.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:35:23.549Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Technology & Internet" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Technology & Internet" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ordenador", + "wordSecond": "computer", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "portátil", + "wordSecond": "laptop", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "teclado", + "wordSecond": "tastiera", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ratón", + "wordSecond": "mouse", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pantalla", + "wordSecond": "schermo", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "monitor", + "wordSecond": "monitor", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "impresora", + "wordSecond": "stampante", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "escáner", + "wordSecond": "scanner", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "procesador", + "wordSecond": "processore", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "memoria", + "wordSecond": "memoria", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "disco duro", + "wordSecond": "disco rigido", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "batería", + "wordSecond": "batteria", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cargador", + "wordSecond": "caricatore", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "auriculares", + "wordSecond": "cuffie", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "altavoz", + "wordSecond": "altoparlante", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "micrófono", + "wordSecond": "microfono", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cámara", + "wordSecond": "fotocamera", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "teléfono", + "wordSecond": "telefono", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tableta", + "wordSecond": "tablet", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "internet", + "wordSecond": "internet", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sitio web", + "wordSecond": "sito web", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "página web", + "wordSecond": "pagina web", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "enlace", + "wordSecond": "link", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "descargar", + "wordSecond": "scaricare", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "subir", + "wordSecond": "caricare", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "contraseña", + "wordSecond": "password", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "usuario", + "wordSecond": "utente", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "correo electrónico", + "wordSecond": "email", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "navegador", + "wordSecond": "browser", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "buscar", + "wordSecond": "cercare", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "motor de búsqueda", + "wordSecond": "motore di ricerca", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "conexión", + "wordSecond": "connessione", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "wifi", + "wordSecond": "wifi", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "red", + "wordSecond": "rete", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "servidor", + "wordSecond": "server", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "datos", + "wordSecond": "dati", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "archivo", + "wordSecond": "file", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "carpeta", + "wordSecond": "cartella", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "perfil", + "wordSecond": "profilo", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "publicar", + "wordSecond": "postare", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "compartir", + "wordSecond": "condividere", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "seguir", + "wordSecond": "seguire", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mensaje", + "wordSecond": "messaggio", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "chat", + "wordSecond": "chat", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "comentario", + "wordSecond": "commento", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "me gusta", + "wordSecond": "mi piace", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "notificación", + "wordSecond": "notifica", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "grupo", + "wordSecond": "gruppo", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "amigo", + "wordSecond": "amico", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "contacto", + "wordSecond": "contatto", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "aplicación", + "wordSecond": "app", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "software", + "wordSecond": "software", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "programa", + "wordSecond": "programma", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "actualizar", + "wordSecond": "aggiornare", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "instalar", + "wordSecond": "installare", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "desinstalar", + "wordSecond": "disinstallare", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "abrir", + "wordSecond": "aprire", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cerrar", + "wordSecond": "chiudere", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "guardar", + "wordSecond": "salvare", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "eliminar", + "wordSecond": "eliminare", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "copiar", + "wordSecond": "copiare", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pegar", + "wordSecond": "incollare", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "error", + "wordSecond": "errore", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "fallar", + "wordSecond": "bloccarsi", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nube", + "wordSecond": "cloud", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "seguridad", + "wordSecond": "sicurezza", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "virus", + "wordSecond": "virus", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "antivirus", + "wordSecond": "antivirus", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "copia de seguridad", + "wordSecond": "backup", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "velocidad", + "wordSecond": "velocità", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "almacenamiento", + "wordSecond": "archiviazione", + "createdAt": "2026-02-19T15:35:23.549Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_technology_internet_es_pt_B1.json b/output/2026_02_19_technology_internet_es_pt_B1.json new file mode 100644 index 0000000..97cf634 --- /dev/null +++ b/output/2026_02_19_technology_internet_es_pt_B1.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:34:40.384Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Technology & Internet" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Technology & Internet" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "computadora portátil", + "wordSecond": "laptop", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "teclado", + "wordSecond": "teclado", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pantalla", + "wordSecond": "tela", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "procesador", + "wordSecond": "processador", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "batería", + "wordSecond": "bateria", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ratón", + "wordSecond": "mouse", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "auriculares", + "wordSecond": "fones de ouvido", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "altavoz", + "wordSecond": "alto-falante", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "impresora", + "wordSecond": "impressora", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escáner", + "wordSecond": "scanner", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cámara web", + "wordSecond": "webcam", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "memoria USB", + "wordSecond": "pen drive", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "disco duro", + "wordSecond": "disco rígido", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tarjeta de memoria", + "wordSecond": "cartão de memória", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cargador", + "wordSecond": "carregador", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "conexión", + "wordSecond": "conexão", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "internet", + "wordSecond": "internet", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sitio web", + "wordSecond": "site", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "página web", + "wordSecond": "página da web", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "descargar", + "wordSecond": "baixar", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "subir", + "wordSecond": "subir", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "contraseña", + "wordSecond": "senha", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "navegador", + "wordSecond": "navegador", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "buscador", + "wordSecond": "buscador", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "búsqueda", + "wordSecond": "busca", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "enlace", + "wordSecond": "link", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "correo electrónico", + "wordSecond": "e-mail", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mensaje", + "wordSecond": "mensagem", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "archivo", + "wordSecond": "arquivo", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "carpeta", + "wordSecond": "pasta", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "red", + "wordSecond": "rede", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "wifi", + "wordSecond": "wi-fi", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "datos", + "wordSecond": "dados", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "velocidad", + "wordSecond": "velocidade", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "perfil", + "wordSecond": "perfil", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "publicación", + "wordSecond": "post", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "compartir", + "wordSecond": "compartilhar", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "seguir", + "wordSecond": "seguir", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "me gusta", + "wordSecond": "curtir", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "comentario", + "wordSecond": "comentário", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mensaje directo", + "wordSecond": "mensagem direta", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "notificación", + "wordSecond": "notificação", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "amigo", + "wordSecond": "amigo", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "seguidor", + "wordSecond": "seguidor", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "historia", + "wordSecond": "stories", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "etiqueta", + "wordSecond": "hashtag", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aplicación", + "wordSecond": "aplicativo", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "actualización", + "wordSecond": "atualização", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fallo", + "wordSecond": "crash", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "instalar", + "wordSecond": "instalar", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desinstalar", + "wordSecond": "desinstalar", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "programa", + "wordSecond": "programa", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "software", + "wordSecond": "software", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nube", + "wordSecond": "nuvem", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "guardar", + "wordSecond": "salvar", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "eliminar", + "wordSecond": "excluir", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "copiar", + "wordSecond": "copiar", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pegar", + "wordSecond": "colar", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "menú", + "wordSecond": "menu", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "icono", + "wordSecond": "ícone", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ventana", + "wordSecond": "janela", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "usuario", + "wordSecond": "usuário", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuenta", + "wordSecond": "conta", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "inicio de sesión", + "wordSecond": "login", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cerrar sesión", + "wordSecond": "logout", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "privacidad", + "wordSecond": "privacidade", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "configuración", + "wordSecond": "configuração", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ayuda", + "wordSecond": "ajuda", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "soporte técnico", + "wordSecond": "suporte técnico", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "virus", + "wordSecond": "vírus", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "antivirus", + "wordSecond": "antivírus", + "createdAt": "2026-02-19T15:34:40.384Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_technology_internet_fr_it_B1.json b/output/2026_02_19_technology_internet_fr_it_B1.json new file mode 100644 index 0000000..abdb477 --- /dev/null +++ b/output/2026_02_19_technology_internet_fr_it_B1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:36:47.103Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Technology & Internet" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Technology & Internet" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ordinateur portable", + "wordSecond": "laptop", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "clavier", + "wordSecond": "tastiera", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "écran", + "wordSecond": "schermo", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "processeur", + "wordSecond": "processore", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "batterie", + "wordSecond": "batteria", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "souris", + "wordSecond": "mouse", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "imprimante", + "wordSecond": "stampante", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "casque", + "wordSecond": "cuffie", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "microphone", + "wordSecond": "microfono", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "haut-parleur", + "wordSecond": "altoparlante", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "câble", + "wordSecond": "cavo", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "prise", + "wordSecond": "presa", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chargeur", + "wordSecond": "caricabatterie", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "disque dur", + "wordSecond": "disco rigido", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mémoire", + "wordSecond": "memoria", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "clé USB", + "wordSecond": "chiavetta USB", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "site web", + "wordSecond": "sito web", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "télécharger", + "wordSecond": "scaricare", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mettre en ligne", + "wordSecond": "caricare", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mot de passe", + "wordSecond": "password", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "navigateur", + "wordSecond": "browser", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "recherche", + "wordSecond": "ricerca", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "lien", + "wordSecond": "link", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "page d'accueil", + "wordSecond": "homepage", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "connexion", + "wordSecond": "connessione", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "Wi-Fi", + "wordSecond": "Wi-Fi", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "données", + "wordSecond": "dati", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "e-mail", + "wordSecond": "email", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "en ligne", + "wordSecond": "online", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "hors ligne", + "wordSecond": "offline", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "profil", + "wordSecond": "profilo", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "publication", + "wordSecond": "post", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "partager", + "wordSecond": "condividere", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "suivre", + "wordSecond": "seguire", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "message", + "wordSecond": "messaggio", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ami", + "wordSecond": "amico", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "groupe", + "wordSecond": "gruppo", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "commentaire", + "wordSecond": "commento", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "j'aime", + "wordSecond": "mi piace", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "hashtag", + "wordSecond": "hashtag", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "application", + "wordSecond": "app", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mise à jour", + "wordSecond": "aggiornamento", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "planter", + "wordSecond": "bloccarsi", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "installer", + "wordSecond": "installare", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "nuage", + "wordSecond": "cloud", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "logiciel", + "wordSecond": "software", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "système d'exploitation", + "wordSecond": "sistema operativo", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fichier", + "wordSecond": "file", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dossier", + "wordSecond": "cartella", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sauvegarder", + "wordSecond": "salvare", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "supprimer", + "wordSecond": "cancellare", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "copier", + "wordSecond": "copiare", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "coller", + "wordSecond": "incollare", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "imprimer", + "wordSecond": "stampare", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "numériser", + "wordSecond": "scansionare", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "réseau", + "wordSecond": "rete", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sécurité", + "wordSecond": "sicurezza", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "virus", + "wordSecond": "virus", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "antivirus", + "wordSecond": "antivirus", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pare-feu", + "wordSecond": "firewall", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mot-clé", + "wordSecond": "parola chiave", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "résultat", + "wordSecond": "risultato", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "forum", + "wordSecond": "forum", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "blog", + "wordSecond": "blog", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vidéo", + "wordSecond": "video", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "audio", + "wordSecond": "audio", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "image", + "wordSecond": "immagine", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "téléchargement", + "wordSecond": "download", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "téléversement", + "wordSecond": "upload", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "streaming", + "wordSecond": "streaming", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chat", + "wordSecond": "chat", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "notification", + "wordSecond": "notifica", + "createdAt": "2026-02-19T15:36:47.103Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_technology_internet_pt_de_B1.json b/output/2026_02_19_technology_internet_pt_de_B1.json new file mode 100644 index 0000000..f4df859 --- /dev/null +++ b/output/2026_02_19_technology_internet_pt_de_B1.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:35:37.666Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Technology & Internet" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Technology & Internet" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "laptop", + "wordSecond": "Laptop", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "teclado", + "wordSecond": "Tastatur", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tela", + "wordSecond": "Bildschirm", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "processador", + "wordSecond": "Prozessor", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "bateria", + "wordSecond": "Batterie", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "site", + "wordSecond": "Website", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "baixar", + "wordSecond": "herunterladen", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "enviar", + "wordSecond": "hochladen", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "senha", + "wordSecond": "Passwort", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "navegador", + "wordSecond": "Browser", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pesquisar", + "wordSecond": "suchen", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "perfil", + "wordSecond": "Profil", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "postar", + "wordSecond": "posten", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "compartilhar", + "wordSecond": "teilen", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "seguir", + "wordSecond": "folgen", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mensagem", + "wordSecond": "Nachricht", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "aplicativo", + "wordSecond": "App", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "atualização", + "wordSecond": "Update", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "travamento", + "wordSecond": "Absturz", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "instalar", + "wordSecond": "installieren", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nuvem", + "wordSecond": "Cloud", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "computador", + "wordSecond": "Computer", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mouse", + "wordSecond": "Maus", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "impressora", + "wordSecond": "Drucker", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "scanner", + "wordSecond": "Scanner", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fone de ouvido", + "wordSecond": "Kopfhörer", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "alto-falante", + "wordSecond": "Lautsprecher", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "microfone", + "wordSecond": "Mikrofon", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "câmera", + "wordSecond": "Kamera", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "roteador", + "wordSecond": "Router", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "wi-fi", + "wordSecond": "WLAN", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "conexão", + "wordSecond": "Verbindung", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "rede", + "wordSecond": "Netzwerk", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "servidor", + "wordSecond": "Server", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "domínio", + "wordSecond": "Domain", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "link", + "wordSecond": "Link", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "página inicial", + "wordSecond": "Startseite", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "blog", + "wordSecond": "Blog", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fórum", + "wordSecond": "Forum", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "e-mail", + "wordSecond": "E-Mail", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "anexo", + "wordSecond": "Anhang", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "spam", + "wordSecond": "Spam", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vírus", + "wordSecond": "Virus", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "firewall", + "wordSecond": "Firewall", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "backup", + "wordSecond": "Backup", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "arquivo", + "wordSecond": "Datei", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pasta", + "wordSecond": "Ordner", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ícone", + "wordSecond": "Symbol", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "menu", + "wordSecond": "Menü", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "janela", + "wordSecond": "Fenster", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "programa", + "wordSecond": "Programm", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sistema operacional", + "wordSecond": "Betriebssystem", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "driver", + "wordSecond": "Treiber", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "configuração", + "wordSecond": "Einstellung", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ajuda", + "wordSecond": "Hilfe", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "erro", + "wordSecond": "Fehler", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "login", + "wordSecond": "Anmeldung", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "logout", + "wordSecond": "Abmeldung", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "conta", + "wordSecond": "Konto", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "usuário", + "wordSecond": "Benutzer", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "administrador", + "wordSecond": "Administrator", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "moderador", + "wordSecond": "Moderator", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "comentário", + "wordSecond": "Kommentar", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "curtir", + "wordSecond": "gefällt mir", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "notificação", + "wordSecond": "Benachrichtigung", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "feed", + "wordSecond": "Feed", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "hashtag", + "wordSecond": "Hashtag", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "streaming", + "wordSecond": "Streaming", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "download", + "wordSecond": "Download", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "upload", + "wordSecond": "Upload", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "online", + "wordSecond": "online", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "offline", + "wordSecond": "offline", + "createdAt": "2026-02-19T15:35:37.666Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_technology_internet_pt_fr_B1.json b/output/2026_02_19_technology_internet_pt_fr_B1.json new file mode 100644 index 0000000..2ee921a --- /dev/null +++ b/output/2026_02_19_technology_internet_pt_fr_B1.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:35:51.479Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Technology & Internet" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Technology & Internet" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "laptop", + "wordSecond": "ordinateur portable", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "teclado", + "wordSecond": "clavier", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tela", + "wordSecond": "écran", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "processador", + "wordSecond": "processeur", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "bateria", + "wordSecond": "batterie", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "site", + "wordSecond": "site web", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "baixar", + "wordSecond": "télécharger", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "enviar", + "wordSecond": "envoyer", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "senha", + "wordSecond": "mot de passe", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "navegador", + "wordSecond": "navigateur", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pesquisar", + "wordSecond": "rechercher", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "perfil", + "wordSecond": "profil", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "postar", + "wordSecond": "publier", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "compartilhar", + "wordSecond": "partager", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "seguir", + "wordSecond": "suivre", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mensagem", + "wordSecond": "message", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "aplicativo", + "wordSecond": "application", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "atualização", + "wordSecond": "mise à jour", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "travar", + "wordSecond": "planter", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "instalar", + "wordSecond": "installer", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "nuvem", + "wordSecond": "cloud", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mouse", + "wordSecond": "souris", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "impressora", + "wordSecond": "imprimante", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fone de ouvido", + "wordSecond": "casque", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "câmera", + "wordSecond": "caméra", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "microfone", + "wordSecond": "microphone", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "alto-falante", + "wordSecond": "haut-parleur", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "memória", + "wordSecond": "mémoire", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "disco rígido", + "wordSecond": "disque dur", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "conexão", + "wordSecond": "connexion", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "wi-fi", + "wordSecond": "wi-fi", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "rede", + "wordSecond": "réseau", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "link", + "wordSecond": "lien", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "página", + "wordSecond": "page", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "início", + "wordSecond": "accueil", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "e-mail", + "wordSecond": "courriel", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "anexo", + "wordSecond": "pièce jointe", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "spam", + "wordSecond": "spam", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vírus", + "wordSecond": "virus", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "firewall", + "wordSecond": "pare-feu", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "login", + "wordSecond": "identifiant", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "logout", + "wordSecond": "déconnexion", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "conta", + "wordSecond": "compte", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "configuração", + "wordSecond": "configuration", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "menu", + "wordSecond": "menu", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ícone", + "wordSecond": "icône", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "janela", + "wordSecond": "fenêtre", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "arquivo", + "wordSecond": "fichier", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pasta", + "wordSecond": "dossier", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "salvar", + "wordSecond": "enregistrer", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "imprimir", + "wordSecond": "imprimer", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "copiar", + "wordSecond": "copier", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "colar", + "wordSecond": "coller", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "excluir", + "wordSecond": "supprimer", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lixeira", + "wordSecond": "corbeille", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "streaming", + "wordSecond": "streaming", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vídeo", + "wordSecond": "vidéo", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "áudio", + "wordSecond": "audio", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chat", + "wordSecond": "chat", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fórum", + "wordSecond": "forum", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "blog", + "wordSecond": "blog", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "comentário", + "wordSecond": "commentaire", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "curtir", + "wordSecond": "aimer", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "notificação", + "wordSecond": "notification", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "privacidade", + "wordSecond": "confidentialité", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "segurança", + "wordSecond": "sécurité", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "backup", + "wordSecond": "sauvegarde", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sincronizar", + "wordSecond": "synchroniser", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "desligar", + "wordSecond": "éteindre", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "reiniciar", + "wordSecond": "redémarrer", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "erro", + "wordSecond": "erreur", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "suporte", + "wordSecond": "support", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tutorial", + "wordSecond": "tutoriel", + "createdAt": "2026-02-19T15:35:51.479Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_technology_internet_pt_it_B1.json b/output/2026_02_19_technology_internet_pt_it_B1.json new file mode 100644 index 0000000..47c3d09 --- /dev/null +++ b/output/2026_02_19_technology_internet_pt_it_B1.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:36:05.464Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Technology & Internet" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Technology & Internet" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "laptop", + "wordSecond": "laptop", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "teclado", + "wordSecond": "tastiera", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tela", + "wordSecond": "schermo", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "processador", + "wordSecond": "processore", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bateria", + "wordSecond": "batteria", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "site", + "wordSecond": "sito web", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "baixar", + "wordSecond": "scaricare", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "enviar", + "wordSecond": "caricare", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "senha", + "wordSecond": "password", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "navegador", + "wordSecond": "browser", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pesquisar", + "wordSecond": "cercare", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "perfil", + "wordSecond": "profilo", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "postar", + "wordSecond": "postare", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "compartilhar", + "wordSecond": "condividere", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "seguir", + "wordSecond": "seguire", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mensagem", + "wordSecond": "messaggio", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "aplicativo", + "wordSecond": "app", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "atualização", + "wordSecond": "aggiornamento", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "travar", + "wordSecond": "bloccarsi", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "instalar", + "wordSecond": "installare", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nuvem", + "wordSecond": "nuvola", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "computador", + "wordSecond": "computer", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mouse", + "wordSecond": "mouse", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "impressora", + "wordSecond": "stampante", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "monitor", + "wordSecond": "monitor", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fone de ouvido", + "wordSecond": "cuffie", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "alto-falante", + "wordSecond": "altoparlante", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "webcam", + "wordSecond": "webcam", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "roteador", + "wordSecond": "router", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "Wi-Fi", + "wordSecond": "Wi-Fi", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "conexão", + "wordSecond": "connessione", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "rede", + "wordSecond": "rete", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "link", + "wordSecond": "link", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "página", + "wordSecond": "pagina", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "blog", + "wordSecond": "blog", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "e-mail", + "wordSecond": "e-mail", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "anexo", + "wordSecond": "allegato", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "download", + "wordSecond": "download", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "upload", + "wordSecond": "upload", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "login", + "wordSecond": "accesso", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "logout", + "wordSecond": "uscita", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "conta", + "wordSecond": "account", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "usuário", + "wordSecond": "utente", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "amigo", + "wordSecond": "amico", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "curtir", + "wordSecond": "mi piace", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "comentário", + "wordSecond": "commento", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "hashtag", + "wordSecond": "hashtag", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "feed", + "wordSecond": "feed", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "notificação", + "wordSecond": "notifica", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "grupo", + "wordSecond": "gruppo", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chat", + "wordSecond": "chat", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vídeo", + "wordSecond": "video", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "foto", + "wordSecond": "foto", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "áudio", + "wordSecond": "audio", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "arquivo", + "wordSecond": "file", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pasta", + "wordSecond": "cartella", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "software", + "wordSecond": "software", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "programa", + "wordSecond": "programma", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sistema", + "wordSecond": "sistema", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "menu", + "wordSecond": "menu", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ícone", + "wordSecond": "icona", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "janela", + "wordSecond": "finestra", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "botão", + "wordSecond": "pulsante", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "configuração", + "wordSecond": "impostazione", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ajuda", + "wordSecond": "aiuto", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "erro", + "wordSecond": "errore", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "código", + "wordSecond": "codice", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "segurança", + "wordSecond": "sicurezza", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vírus", + "wordSecond": "virus", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "backup", + "wordSecond": "backup", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "armazenamento", + "wordSecond": "memoria", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "memória", + "wordSecond": "memoria", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "disco rígido", + "wordSecond": "disco rigido", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "USB", + "wordSecond": "USB", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tela de toque", + "wordSecond": "schermo tattile", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "câmera", + "wordSecond": "fotocamera", + "createdAt": "2026-02-19T15:36:05.464Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_de_fr_A2.json b/output/2026_02_19_travel_transport_de_fr_A2.json new file mode 100644 index 0000000..e891d3d --- /dev/null +++ b/output/2026_02_19_travel_transport_de_fr_A2.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:34:36.797Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Flughafen", + "wordSecond": "aéroport", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bahnhof", + "wordSecond": "gare", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bushaltestelle", + "wordSecond": "arrêt de bus", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hotel", + "wordSecond": "hôtel", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "links", + "wordSecond": "gauche", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "rechts", + "wordSecond": "droite", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "geradeaus", + "wordSecond": "tout droit", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ticket", + "wordSecond": "billet", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fahrkarte", + "wordSecond": "ticket", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pass", + "wordSecond": "passeport", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Koffer", + "wordSecond": "valise", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gepäck", + "wordSecond": "bagages", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Auto", + "wordSecond": "voiture", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bus", + "wordSecond": "bus", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Zug", + "wordSecond": "train", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Flugzeug", + "wordSecond": "avion", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schiff", + "wordSecond": "bateau", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fahrrad", + "wordSecond": "vélo", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Taxi", + "wordSecond": "taxi", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "U-Bahn", + "wordSecond": "métro", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Straßenbahn", + "wordSecond": "tramway", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fähre", + "wordSecond": "ferry", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Flug", + "wordSecond": "vol", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Abfahrt", + "wordSecond": "départ", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ankunft", + "wordSecond": "arrivée", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Terminal", + "wordSecond": "terminal", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gate", + "wordSecond": "porte", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Sicherheitskontrolle", + "wordSecond": "contrôle de sécurité", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gepäckaufgabe", + "wordSecond": "enregistrement des bagages", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gepäckausgabe", + "wordSecond": "retrait des bagages", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schalter", + "wordSecond": "guichet", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fahrplan", + "wordSecond": "horaire", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gleis", + "wordSecond": "quai", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Perron", + "wordSecond": "plateforme", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wartehalle", + "wordSecond": "salle d'attente", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Rezeption", + "wordSecond": "réception", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Zimmer", + "wordSecond": "chambre", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schlüssel", + "wordSecond": "clé", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Aufzug", + "wordSecond": "ascenseur", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Treppe", + "wordSecond": "escalier", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Karte", + "wordSecond": "carte", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Stadtplan", + "wordSecond": "plan de ville", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Nord", + "wordSecond": "nord", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Süd", + "wordSecond": "sud", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ost", + "wordSecond": "est", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "West", + "wordSecond": "ouest", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "hier", + "wordSecond": "ici", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "dort", + "wordSecond": "là", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "weit", + "wordSecond": "loin", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "nah", + "wordSecond": "près", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Haltestelle", + "wordSecond": "arrêt", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Einbahnstraße", + "wordSecond": "rue à sens unique", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kreuzung", + "wordSecond": "carrefour", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Ampel", + "wordSecond": "feu", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Bahnhofsvorplatz", + "wordSecond": "place de la gare", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Parkplatz", + "wordSecond": "parking", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Tankstelle", + "wordSecond": "station-service", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Maut", + "wordSecond": "péage", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Fahrer", + "wordSecond": "conducteur", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Passagier", + "wordSecond": "passager", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Pilot", + "wordSecond": "pilote", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Stewardess", + "wordSecond": "hôtesse de l'air", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Kapitän", + "wordSecond": "capitaine", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Reise", + "wordSecond": "voyage", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Urlaub", + "wordSecond": "vacances", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Strand", + "wordSecond": "plage", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Berg", + "wordSecond": "montagne", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Stadt", + "wordSecond": "ville", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Land", + "wordSecond": "campagne", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Grenze", + "wordSecond": "frontière", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Visum", + "wordSecond": "visa", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Geld", + "wordSecond": "argent", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wechselstube", + "wordSecond": "bureau de change", + "createdAt": "2026-02-19T14:34:36.797Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_de_it_A2.json b/output/2026_02_19_travel_transport_de_it_A2.json new file mode 100644 index 0000000..0d9bc56 --- /dev/null +++ b/output/2026_02_19_travel_transport_de_it_A2.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:34:51.730Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Flughafen", + "wordSecond": "aeroporto", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Flugzeug", + "wordSecond": "aereo", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Flug", + "wordSecond": "volo", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pass", + "wordSecond": "passaporto", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Koffer", + "wordSecond": "valigia", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gepäck", + "wordSecond": "bagaglio", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ticket", + "wordSecond": "biglietto", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bahnsteig", + "wordSecond": "binario", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zug", + "wordSecond": "treno", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bahnhof", + "wordSecond": "stazione", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bus", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Bushaltestelle", + "wordSecond": "fermata", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Taxi", + "wordSecond": "taxi", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Auto", + "wordSecond": "macchina", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schiff", + "wordSecond": "nave", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fähre", + "wordSecond": "traghetto", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hotel", + "wordSecond": "albergo", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zimmer", + "wordSecond": "camera", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rezeption", + "wordSecond": "reception", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schlüssel", + "wordSecond": "chiave", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Karte", + "wordSecond": "mappa", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "links", + "wordSecond": "sinistra", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "rechts", + "wordSecond": "destra", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "geradeaus", + "wordSecond": "sempre diritto", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "hier", + "wordSecond": "qui", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "dort", + "wordSecond": "lì", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "nah", + "wordSecond": "vicino", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "weit", + "wordSecond": "lontano", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ankunft", + "wordSecond": "arrivo", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Abfahrt", + "wordSecond": "partenza", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Verspätung", + "wordSecond": "ritardo", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zeit", + "wordSecond": "ora", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Uhr", + "wordSecond": "orologio", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Terminal", + "wordSecond": "terminal", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gate", + "wordSecond": "uscita", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sicherheitskontrolle", + "wordSecond": "controllo di sicurezza", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gepäckaufgabe", + "wordSecond": "check-in bagagli", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Handgepäck", + "wordSecond": "bagaglio a mano", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Pilot", + "wordSecond": "pilota", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Flugbegleiter", + "wordSecond": "assistente di volo", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fahrkarte", + "wordSecond": "biglietto", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fahrplan", + "wordSecond": "orario", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Abfahrtszeit", + "wordSecond": "ora di partenza", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ankunftszeit", + "wordSecond": "ora di arrivo", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Einsteigen", + "wordSecond": "salire", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Aussteigen", + "wordSecond": "scendere", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Haltestelle", + "wordSecond": "fermata", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Endstation", + "wordSecond": "capolinea", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fahrer", + "wordSecond": "autista", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Fahrkartenschalter", + "wordSecond": "biglietteria", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wartesaal", + "wordSecond": "sala d'attesa", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Toilette", + "wordSecond": "bagno", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Ausgang", + "wordSecond": "uscita", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Eingang", + "wordSecond": "entrata", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Treppe", + "wordSecond": "scala", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Aufzug", + "wordSecond": "ascensore", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Rolltreppe", + "wordSecond": "scala mobile", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Information", + "wordSecond": "informazioni", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gepäckwagen", + "wordSecond": "carrello", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nummer", + "wordSecond": "numero", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Name", + "wordSecond": "nome", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Adresse", + "wordSecond": "indirizzo", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Stadt", + "wordSecond": "città", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Land", + "wordSecond": "paese", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Grenze", + "wordSecond": "frontiera", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Zoll", + "wordSecond": "dogana", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Visum", + "wordSecond": "visto", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Reise", + "wordSecond": "viaggio", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Urlaub", + "wordSecond": "vacanza", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Strand", + "wordSecond": "spiaggia", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Berg", + "wordSecond": "montagna", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Meer", + "wordSecond": "mare", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sonne", + "wordSecond": "sole", + "createdAt": "2026-02-19T14:34:51.730Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_de_ja_A2.json b/output/2026_02_19_travel_transport_de_ja_A2.json new file mode 100644 index 0000000..bc1b6b9 --- /dev/null +++ b/output/2026_02_19_travel_transport_de_ja_A2.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:35:17.753Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Flughafen", + "wordSecond": "空港 (くうこう, kūkō)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Bahnhof", + "wordSecond": "駅 (えき, eki)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Busbahnhof", + "wordSecond": "バス停 (ばすてい, basutei)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hotel", + "wordSecond": "ホテル (hoteru)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Zimmer", + "wordSecond": "部屋 (へや, heya)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Rezeption", + "wordSecond": "フロント (furonto)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schlüssel", + "wordSecond": "鍵 (かぎ, kagi)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Koffer", + "wordSecond": "スーツケース (sūtsukēsu)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Rucksack", + "wordSecond": "リュックサック (ryukkusakku)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Pass", + "wordSecond": "パスポート (pasupōto)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ticket", + "wordSecond": "切符 (きっぷ, kippu)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fahrkarte", + "wordSecond": "乗車券 (じょうしゃけん, jōshaken)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Flugticket", + "wordSecond": "航空券 (こうくうけん, kōkūken)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Auto", + "wordSecond": "車 (くるま, kuruma)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Bus", + "wordSecond": "バス (basu)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Zug", + "wordSecond": "電車 (でんしゃ, densha)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Flugzeug", + "wordSecond": "飛行機 (ひこうき, hikōki)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schiff", + "wordSecond": "船 (ふね, fune)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fahrrad", + "wordSecond": "自転車 (じてんしゃ, jitensha)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Taxi", + "wordSecond": "タクシー (takushī)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "U-Bahn", + "wordSecond": "地下鉄 (ちかてつ, chikatetsu)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Straßenbahn", + "wordSecond": "路面電車 (ろめんでんしゃ, romendensha)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fahrer", + "wordSecond": "運転手 (うんてんしゅ, untenshu)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Pilot", + "wordSecond": "パイロット (pairotto)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Stewardess", + "wordSecond": "客室乗務員 (きゃくしつじょうむいん, kyakushitsu jōmuin)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "links", + "wordSecond": "左 (ひだり, hidari)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "rechts", + "wordSecond": "右 (みぎ, migi)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "geradeaus", + "wordSecond": "まっすぐ (massugu)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "hier", + "wordSecond": "ここ (koko)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "dort", + "wordSecond": "あそこ (asoko)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Karte", + "wordSecond": "地図 (ちず, chizu)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Uhrzeit", + "wordSecond": "時間 (じかん, jikan)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Abfahrt", + "wordSecond": "出発 (しゅっぱつ, shuppatsu)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ankunft", + "wordSecond": "到着 (とうちゃく, tōchaku)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Verspätung", + "wordSecond": "遅延 (ちえん, chien)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Gepäck", + "wordSecond": "荷物 (にもつ, nimotsu)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Gepäckaufbewahrung", + "wordSecond": "手荷物預かり所 (てにもつあずかりしょ, tenimotsu azukarisho)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Check-in", + "wordSecond": "チェックイン (chekkuin)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Gate", + "wordSecond": "ゲート (gēto)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Sicherheitskontrolle", + "wordSecond": "セキュリティチェック (sekyuriti chekku)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Bordkarte", + "wordSecond": "搭乗券 (とうじょうけん, tōjōken)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Gepäckband", + "wordSecond": "荷物ベルト (にもつべると, nimotsu beruto)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Zoll", + "wordSecond": "税関 (ぜいかん, zeikan)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Reisebüro", + "wordSecond": "旅行会社 (りょこうがいしゃ, ryokō gaisha)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Reiseführer", + "wordSecond": "ガイドブック (gaidobukku)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Stadtplan", + "wordSecond": "市街図 (しがいず, shigaizu)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fahrplan", + "wordSecond": "時刻表 (じこくひょう, jikokuhyō)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Haltestelle", + "wordSecond": "停留所 (ていりゅうじょ, teiryūjo)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Einsteigen", + "wordSecond": "乗る (のる, noru)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Aussteigen", + "wordSecond": "降りる (おりる, oriru)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Umsteigen", + "wordSecond": "乗り換える (のりかえる, norikaeru)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fahren", + "wordSecond": "運転する (うんてんする, unten suru)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fliegen", + "wordSecond": "飛ぶ (とぶ, tobu)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Gehen", + "wordSecond": "歩く (あるく, aruku)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Weg", + "wordSecond": "道 (みち, michi)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kreuzung", + "wordSecond": "交差点 (こうさてん, kōsaten)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Ampel", + "wordSecond": "信号 (しんごう, shingō)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Brücke", + "wordSecond": "橋 (はし, hashi)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tunnel", + "wordSecond": "トンネル (tonneru)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Parkplatz", + "wordSecond": "駐車場 (ちゅうしゃじょう, chūshajō)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Tankstelle", + "wordSecond": "ガソリンスタンド (gasorinsutando)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Maut", + "wordSecond": "通行料 (つうこうりょう, tsūkōryō)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fähre", + "wordSecond": "フェリー (ferī)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hafen", + "wordSecond": "港 (みなと, minato)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Bahngleis", + "wordSecond": "ホーム (hōmu)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Waggon", + "wordSecond": "車両 (しゃりょう, sharyō)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Sitzplatz", + "wordSecond": "座席 (ざせき, zaseki)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Fensterplatz", + "wordSecond": "窓側席 (まどがわせき, madogawa seki)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Gangplatz", + "wordSecond": "通路側席 (つうろがわせき, tsūrogawa seki)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Reservierung", + "wordSecond": "予約 (よやく, yoyaku)", + "createdAt": "2026-02-19T14:35:17.753Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_de_ko_A2.json b/output/2026_02_19_travel_transport_de_ko_A2.json new file mode 100644 index 0000000..da1aede --- /dev/null +++ b/output/2026_02_19_travel_transport_de_ko_A2.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:36:01.227Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Flughafen", + "wordSecond": "공항 (gonghang)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Flugzeug", + "wordSecond": "비행기 (bihaenggi)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Flug", + "wordSecond": "비행 (bihaeng)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Pilot", + "wordSecond": "조종사 (jojongsa)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Flugbegleiter", + "wordSecond": "승무원 (seungmuwon)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Passagier", + "wordSecond": "승객 (seunggaek)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Pass", + "wordSecond": "여권 (yeogwon)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Gepäck", + "wordSecond": "짐 (jim)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Koffer", + "wordSecond": "가방 (gabang)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Rucksack", + "wordSecond": "배낭 (baenang)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Check-in", + "wordSecond": "체크인 (chekeuin)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Gate", + "wordSecond": "게이트 (geiteu)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Sicherheitskontrolle", + "wordSecond": "보안 검색 (boan geomsaek)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zoll", + "wordSecond": "세관 (segwan)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ankunft", + "wordSecond": "도착 (dochak)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Abflug", + "wordSecond": "출발 (chulbal)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Verspätung", + "wordSecond": "지연 (jiyeon)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bahnhof", + "wordSecond": "기차역 (gichayeok)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zug", + "wordSecond": "기차 (gicha)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fahrkarte", + "wordSecond": "표 (pyo)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fahrplan", + "wordSecond": "시간표 (sigampyo)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Gleis", + "wordSecond": "플랫폼 (peullaetpom)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bushaltestelle", + "wordSecond": "버스 정류장 (beoseu jeongnyujang)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Bus", + "wordSecond": "버스 (beoseu)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fahrer", + "wordSecond": "운전사 (unjeonsa)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Taxi", + "wordSecond": "택시 (taeksi)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Auto", + "wordSecond": "자동차 (jadongcha)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fahrrad", + "wordSecond": "자전거 (jajeongeo)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schiff", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fähre", + "wordSecond": "페리 (peri)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "U-Bahn", + "wordSecond": "지하철 (jihacheol)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Straßenbahn", + "wordSecond": "전차 (jeoncha)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Hotel", + "wordSecond": "호텔 (hotel)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Zimmer", + "wordSecond": "방 (bang)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Rezeption", + "wordSecond": "프런트 (peureonteu)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schlüssel", + "wordSecond": "열쇠 (yeolsoe)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Buchung", + "wordSecond": "예약 (yeyak)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Frühstück", + "wordSecond": "아침 식사 (achim siksa)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Karte", + "wordSecond": "지도 (jido)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "links", + "wordSecond": "왼쪽 (oenjjok)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "rechts", + "wordSecond": "오른쪽 (oreunjjok)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "geradeaus", + "wordSecond": "직진 (jikjin)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "hier", + "wordSecond": "여기 (yeogi)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "dort", + "wordSecond": "저기 (jeogi)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "nah", + "wordSecond": "가까운 (gakkaun)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "weit", + "wordSecond": "먼 (meon)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "nord", + "wordSecond": "북 (buk)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "süd", + "wordSecond": "남 (nam)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "ost", + "wordSecond": "동 (dong)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "west", + "wordSecond": "서 (seo)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Haltestelle", + "wordSecond": "정류장 (jeongnyujang)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Abfahrt", + "wordSecond": "출발 (chulbal)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ankunft", + "wordSecond": "도착 (dochak)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Ticket", + "wordSecond": "티켓 (tiket)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "einsteigen", + "wordSecond": "타다 (tada)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "aussteigen", + "wordSecond": "내리다 (naerida)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "umsteigen", + "wordSecond": "갈아타다 (garatada)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Fahrkartenautomat", + "wordSecond": "자동 발매기 (jadong balmaegi)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wartesaal", + "wordSecond": "대합실 (daehapsil)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Gepäckaufbewahrung", + "wordSecond": "물품 보관소 (mulpum bogwanso)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Toilette", + "wordSecond": "화장실 (hwajangsil)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Information", + "wordSecond": "안내소 (annaeso)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Geld", + "wordSecond": "돈 (don)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wechselstube", + "wordSecond": "환전소 (hwanjeonso)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Reise", + "wordSecond": "여행 (yeohaeng)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Urlaub", + "wordSecond": "휴가 (hyuga)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Stadt", + "wordSecond": "도시 (dosi)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Land", + "wordSecond": "나라 (nara)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Strand", + "wordSecond": "해변 (haebyeon)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Berg", + "wordSecond": "산 (san)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Museum", + "wordSecond": "박물관 (bangmulgwan)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Restaurant", + "wordSecond": "식당 (sikdang)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Einkaufen", + "wordSecond": "쇼핑 (syoping)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "helfen", + "wordSecond": "도와주다 (dowajuda)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "sprechen", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "verstehen", + "wordSecond": "이해하다 (ihaehada)", + "createdAt": "2026-02-19T14:36:01.227Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_de_pl_A2.json b/output/2026_02_19_travel_transport_de_pl_A2.json new file mode 100644 index 0000000..1ecc4fd --- /dev/null +++ b/output/2026_02_19_travel_transport_de_pl_A2.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:36:16.031Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Flughafen", + "wordSecond": "lotnisko", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Flugzeug", + "wordSecond": "samolot", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Pilot", + "wordSecond": "pilot", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Flug", + "wordSecond": "lot", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Passagier", + "wordSecond": "pasażer", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Pass", + "wordSecond": "paszport", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Gepäck", + "wordSecond": "bagaż", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Koffer", + "wordSecond": "walizka", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Rucksack", + "wordSecond": "plecak", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Abflug", + "wordSecond": "odlot", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ankunft", + "wordSecond": "przylot", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Gate", + "wordSecond": "brama", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Terminal", + "wordSecond": "terminal", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Sicherheitskontrolle", + "wordSecond": "kontrola bezpieczeństwa", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Zoll", + "wordSecond": "cło", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bahnhof", + "wordSecond": "dworzec", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Zug", + "wordSecond": "pociąg", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bahnsteig", + "wordSecond": "peron", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fahrkarte", + "wordSecond": "bilet", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schaffner", + "wordSecond": "konduktor", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Abfahrt", + "wordSecond": "odjazd", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ankunft", + "wordSecond": "przyjazd", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Busbahnhof", + "wordSecond": "dworzec autobusowy", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bus", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Haltestelle", + "wordSecond": "przystanek", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fahrplan", + "wordSecond": "rozklad jazdy", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Taxi", + "wordSecond": "taksówka", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Auto", + "wordSecond": "samochód", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fahrer", + "wordSecond": "kierowca", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schiff", + "wordSecond": "statek", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hafen", + "wordSecond": "port", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fähre", + "wordSecond": "prom", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hotel", + "wordSecond": "hotel", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Zimmer", + "wordSecond": "pokój", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Rezeption", + "wordSecond": "recepcja", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schlüssel", + "wordSecond": "klucz", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Buchung", + "wordSecond": "rezerwacja", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Frühstück", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Karte", + "wordSecond": "mapa", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Stadtplan", + "wordSecond": "plan miasta", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "links", + "wordSecond": "lewo", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "rechts", + "wordSecond": "prawo", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "geradeaus", + "wordSecond": "prosto", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "hier", + "wordSecond": "tutaj", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "dort", + "wordSecond": "tam", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "nah", + "wordSecond": "blisko", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "weit", + "wordSecond": "daleko", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "nord", + "wordSecond": "północ", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "süd", + "wordSecond": "południe", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "ost", + "wordSecond": "wschód", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "west", + "wordSecond": "zachód", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Straße", + "wordSecond": "ulica", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Platz", + "wordSecond": "plac", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Brücke", + "wordSecond": "most", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Ampel", + "wordSecond": "światła", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "U-Bahn", + "wordSecond": "metro", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Straßenbahn", + "wordSecond": "tramwaj", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fahrrad", + "wordSecond": "rower", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zu Fuß", + "wordSecond": "pieszo", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Reise", + "wordSecond": "podróż", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Urlaub", + "wordSecond": "wakacje", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Reiseführer", + "wordSecond": "przewodnik", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Geld", + "wordSecond": "pieniądze", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wechselstube", + "wordSecond": "kantor", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Kreditkarte", + "wordSecond": "karta kredytowa", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Apotheke", + "wordSecond": "apteka", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Restaurant", + "wordSecond": "restauracja", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Café", + "wordSecond": "kawiarnia", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Museum", + "wordSecond": "muzeum", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Park", + "wordSecond": "park", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Strand", + "wordSecond": "plaża", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Berg", + "wordSecond": "góra", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "See", + "wordSecond": "jezioro", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Fluss", + "wordSecond": "rzeka", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wald", + "wordSecond": "las", + "createdAt": "2026-02-19T14:36:16.031Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_de_zh_A2.json b/output/2026_02_19_travel_transport_de_zh_A2.json new file mode 100644 index 0000000..662df50 --- /dev/null +++ b/output/2026_02_19_travel_transport_de_zh_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:35:39.298Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Flughafen", + "wordSecond": "机场 (jī chǎng)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Flugzeug", + "wordSecond": "飞机 (fēi jī)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Pass", + "wordSecond": "护照 (hù zhào)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Koffer", + "wordSecond": "行李箱 (xíng lǐ xiāng)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Taxi", + "wordSecond": "出租车 (chū zū chē)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bus", + "wordSecond": "公共汽车 (gōng gòng qì chē)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bahnhof", + "wordSecond": "火车站 (huǒ chē zhàn)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Zug", + "wordSecond": "火车 (huǒ chē)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hotel", + "wordSecond": "酒店 (jiǔ diàn)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Zimmer", + "wordSecond": "房间 (fáng jiān)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ticket", + "wordSecond": "票 (piào)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "links", + "wordSecond": "左 (zuǒ)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "rechts", + "wordSecond": "右 (yòu)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "geradeaus", + "wordSecond": "直走 (zhí zǒu)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Auto", + "wordSecond": "汽车 (qì chē)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schiff", + "wordSecond": "船 (chuán)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Fahrrad", + "wordSecond": "自行车 (zì xíng chē)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "U-Bahn", + "wordSecond": "地铁 (dì tiě)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Haltestelle", + "wordSecond": "车站 (chē zhàn)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Fahrkarte", + "wordSecond": "车票 (chē piào)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gepäck", + "wordSecond": "行李 (xíng lǐ)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Karte", + "wordSecond": "地图 (dì tú)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Reise", + "wordSecond": "旅行 (lǚ xíng)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Urlaub", + "wordSecond": "假期 (jià qī)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Stadt", + "wordSecond": "城市 (chéng shì)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Land", + "wordSecond": "国家 (guó jiā)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Flug", + "wordSecond": "航班 (háng bān)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Abflug", + "wordSecond": "出发 (chū fā)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ankunft", + "wordSecond": "到达 (dào dá)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Terminal", + "wordSecond": "航站楼 (háng zhàn lóu)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gate", + "wordSecond": "登机口 (dēng jī kǒu)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Sicherheitskontrolle", + "wordSecond": "安检 (ān jiǎn)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gepäckaufgabe", + "wordSecond": "托运行李 (tuō yùn xíng lǐ)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Handgepäck", + "wordSecond": "手提行李 (shǒu tí xíng lǐ)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Bordkarte", + "wordSecond": "登机牌 (dēng jī pái)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Pilot", + "wordSecond": "飞行员 (fēi xíng yuán)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Stewardess", + "wordSecond": "空姐 (kōng jiě)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Sitz", + "wordSecond": "座位 (zuò wèi)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Fensterplatz", + "wordSecond": "靠窗座位 (kào chuāng zuò wèi)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gangplatz", + "wordSecond": "靠过道座位 (kào guò dào zuò wèi)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gleis", + "wordSecond": "站台 (zhàn tái)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Abfahrt", + "wordSecond": "发车 (fā chē)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ankunftstafel", + "wordSecond": "到达时刻表 (dào dá shí kè biǎo)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Fahrplan", + "wordSecond": "时刻表 (shí kè biǎo)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schaffner", + "wordSecond": "列车员 (liè chē yuán)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Rezeption", + "wordSecond": "前台 (qián tái)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schlüssel", + "wordSecond": "钥匙 (yào shi)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Buchung", + "wordSecond": "预订 (yù dìng)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Zahlung", + "wordSecond": "付款 (fù kuǎn)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Frühstück", + "wordSecond": "早餐 (zǎo cān)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Aufzug", + "wordSecond": "电梯 (diàn tī)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Treppe", + "wordSecond": "楼梯 (lóu tī)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ausgang", + "wordSecond": "出口 (chū kǒu)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Eingang", + "wordSecond": "入口 (rù kǒu)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Toilette", + "wordSecond": "厕所 (cè suǒ)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Nord", + "wordSecond": "北 (běi)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Süd", + "wordSecond": "南 (nán)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Ost", + "wordSecond": "东 (dōng)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "West", + "wordSecond": "西 (xī)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Straße", + "wordSecond": "街道 (jiē dào)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Platz", + "wordSecond": "广场 (guǎng chǎng)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Brücke", + "wordSecond": "桥 (qiáo)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tunnel", + "wordSecond": "隧道 (suì dào)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hafen", + "wordSecond": "港口 (gǎng kǒu)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Fähre", + "wordSecond": "渡轮 (dù lún)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Motorrad", + "wordSecond": "摩托车 (mó tuō chē)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tram", + "wordSecond": "有轨电车 (yǒu guǐ diàn chē)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Busfahrer", + "wordSecond": "公交车司机 (gōng jiāo chē sī jī)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Taxifahrer", + "wordSecond": "出租车司机 (chū zū chē sī jī)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Reiseführer", + "wordSecond": "导游 (dǎo yóu)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tourist", + "wordSecond": "游客 (yóu kè)", + "createdAt": "2026-02-19T14:35:39.298Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_en_de_A2.json b/output/2026_02_19_travel_transport_en_de_A2.json new file mode 100644 index 0000000..07cd678 --- /dev/null +++ b/output/2026_02_19_travel_transport_en_de_A2.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:28:19.115Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "airport", + "wordSecond": "Flughafen", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "train station", + "wordSecond": "Bahnhof", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bus station", + "wordSecond": "Bushaltestelle", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hotel", + "wordSecond": "Hotel", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "room", + "wordSecond": "Zimmer", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "passport", + "wordSecond": "Reisepass", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ticket", + "wordSecond": "Fahrkarte", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "luggage", + "wordSecond": "Gepäck", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "suitcase", + "wordSecond": "Koffer", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bag", + "wordSecond": "Tasche", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "car", + "wordSecond": "Auto", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bus", + "wordSecond": "Bus", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "train", + "wordSecond": "Zug", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "plane", + "wordSecond": "Flugzeug", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ship", + "wordSecond": "Schiff", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "bicycle", + "wordSecond": "Fahrrad", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "taxi", + "wordSecond": "Taxi", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "metro", + "wordSecond": "U-Bahn", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tram", + "wordSecond": "Straßenbahn", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "left", + "wordSecond": "links", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "right", + "wordSecond": "rechts", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "straight", + "wordSecond": "geradeaus", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "map", + "wordSecond": "Karte", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "street", + "wordSecond": "Straße", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "address", + "wordSecond": "Adresse", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "city", + "wordSecond": "Stadt", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "country", + "wordSecond": "Land", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "journey", + "wordSecond": "Reise", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "travel", + "wordSecond": "reisen", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "holiday", + "wordSecond": "Urlaub", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "trip", + "wordSecond": "Ausflug", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "arrival", + "wordSecond": "Ankunft", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "departure", + "wordSecond": "Abfahrt", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "platform", + "wordSecond": "Bahnsteig", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "gate", + "wordSecond": "Tor", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "check-in", + "wordSecond": "Check-in", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "boarding pass", + "wordSecond": "Bordkarte", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "security", + "wordSecond": "Sicherheit", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "customs", + "wordSecond": "Zoll", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "delay", + "wordSecond": "Verspätung", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "time", + "wordSecond": "Zeit", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "schedule", + "wordSecond": "Fahrplan", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "seat", + "wordSecond": "Sitz", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "window", + "wordSecond": "Fenster", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "aisle", + "wordSecond": "Gang", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "driver", + "wordSecond": "Fahrer", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "pilot", + "wordSecond": "Pilot", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "conductor", + "wordSecond": "Schaffner", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "passenger", + "wordSecond": "Passagier", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "tourist", + "wordSecond": "Tourist", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "guide", + "wordSecond": "Führer", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "money", + "wordSecond": "Geld", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "price", + "wordSecond": "Preis", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "reservation", + "wordSecond": "Reservierung", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "single ticket", + "wordSecond": "Einfache Fahrkarte", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "return ticket", + "wordSecond": "Rückfahrkarte", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "information", + "wordSecond": "Information", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "help", + "wordSecond": "Hilfe", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "toilet", + "wordSecond": "Toilette", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "restaurant", + "wordSecond": "Restaurant", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "café", + "wordSecond": "Café", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shop", + "wordSecond": "Geschäft", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "exit", + "wordSecond": "Ausgang", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "entrance", + "wordSecond": "Eingang", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lift", + "wordSecond": "Aufzug", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stairs", + "wordSecond": "Treppe", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "beach", + "wordSecond": "Strand", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "mountain", + "wordSecond": "Berg", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lake", + "wordSecond": "See", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "museum", + "wordSecond": "Museum", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "park", + "wordSecond": "Park", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "station", + "wordSecond": "Station", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stop", + "wordSecond": "Haltestelle", + "createdAt": "2026-02-19T14:28:19.115Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_en_es_A2.json b/output/2026_02_19_travel_transport_en_es_A2.json new file mode 100644 index 0000000..f5c95a3 --- /dev/null +++ b/output/2026_02_19_travel_transport_en_es_A2.json @@ -0,0 +1,1020 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:27:52.562Z", + "metadata": { + "itemCount": 77, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "airport", + "wordSecond": "aeropuerto", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "train station", + "wordSecond": "estación de tren", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bus station", + "wordSecond": "estación de autobuses", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hotel", + "wordSecond": "hotel", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "passport", + "wordSecond": "pasaporte", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ticket", + "wordSecond": "boleto", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "luggage", + "wordSecond": "equipaje", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "suitcase", + "wordSecond": "maleta", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "backpack", + "wordSecond": "mochila", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "map", + "wordSecond": "mapa", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "left", + "wordSecond": "izquierda", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "right", + "wordSecond": "derecha", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "straight", + "wordSecond": "derecho", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "car", + "wordSecond": "coche", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bus", + "wordSecond": "autobús", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "train", + "wordSecond": "tren", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "plane", + "wordSecond": "avión", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ship", + "wordSecond": "barco", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bicycle", + "wordSecond": "bicicleta", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "taxi", + "wordSecond": "taxi", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "metro", + "wordSecond": "metro", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "boat", + "wordSecond": "bote", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "motorcycle", + "wordSecond": "motocicleta", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "driver", + "wordSecond": "conductor", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pilot", + "wordSecond": "piloto", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "passenger", + "wordSecond": "pasajero", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "seat", + "wordSecond": "asiento", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "window", + "wordSecond": "ventana", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "door", + "wordSecond": "puerta", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wheel", + "wordSecond": "rueda", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "engine", + "wordSecond": "motor", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "road", + "wordSecond": "carretera", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "street", + "wordSecond": "calle", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "bridge", + "wordSecond": "puente", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "traffic", + "wordSecond": "tráfico", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "light", + "wordSecond": "semáforo", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "stop", + "wordSecond": "parada", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "go", + "wordSecond": "ir", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "arrive", + "wordSecond": "llegar", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "depart", + "wordSecond": "salir", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "travel", + "wordSecond": "viajar", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "trip", + "wordSecond": "viaje", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "journey", + "wordSecond": "travesía", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "destination", + "wordSecond": "destino", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "city", + "wordSecond": "ciudad", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "country", + "wordSecond": "país", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "border", + "wordSecond": "frontera", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "customs", + "wordSecond": "aduana", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "check-in", + "wordSecond": "facturación", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "gate", + "wordSecond": "puerta de embarque", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "boarding pass", + "wordSecond": "tarjeta de embarque", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "flight", + "wordSecond": "vuelo", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "delay", + "wordSecond": "retraso", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "schedule", + "wordSecond": "horario", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "platform", + "wordSecond": "andén", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "track", + "wordSecond": "vía", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "conductor", + "wordSecond": "revisor", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fare", + "wordSecond": "tarifa", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "reservation", + "wordSecond": "reserva", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "room", + "wordSecond": "habitación", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "key", + "wordSecond": "llave", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "reception", + "wordSecond": "recepción", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "elevator", + "wordSecond": "ascensor", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "stairs", + "wordSecond": "escaleras", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "restaurant", + "wordSecond": "restaurante", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "breakfast", + "wordSecond": "desayuno", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "swimming pool", + "wordSecond": "piscina", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "beach", + "wordSecond": "playa", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mountain", + "wordSecond": "montaña", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "forest", + "wordSecond": "bosque", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "river", + "wordSecond": "río", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lake", + "wordSecond": "lago", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "island", + "wordSecond": "isla", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tourist", + "wordSecond": "turista", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "guide", + "wordSecond": "guía", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "money", + "wordSecond": "dinero", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "credit card", + "wordSecond": "tarjeta de crédito", + "createdAt": "2026-02-19T14:27:52.562Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_en_fr_A2.json b/output/2026_02_19_travel_transport_en_fr_A2.json new file mode 100644 index 0000000..a2ab841 --- /dev/null +++ b/output/2026_02_19_travel_transport_en_fr_A2.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:28:31.027Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "airport", + "wordSecond": "aéroport", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "plane", + "wordSecond": "avion", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "train", + "wordSecond": "train", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bus", + "wordSecond": "bus", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "car", + "wordSecond": "voiture", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ship", + "wordSecond": "bateau", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "taxi", + "wordSecond": "taxi", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bicycle", + "wordSecond": "vélo", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "station", + "wordSecond": "gare", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "platform", + "wordSecond": "quai", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ticket", + "wordSecond": "billet", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "passport", + "wordSecond": "passeport", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "luggage", + "wordSecond": "bagage", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "suitcase", + "wordSecond": "valise", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bag", + "wordSecond": "sac", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hotel", + "wordSecond": "hôtel", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "room", + "wordSecond": "chambre", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "key", + "wordSecond": "clé", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "reception", + "wordSecond": "réception", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "reservation", + "wordSecond": "réservation", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "left", + "wordSecond": "gauche", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "right", + "wordSecond": "droite", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "straight", + "wordSecond": "tout droit", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "map", + "wordSecond": "carte", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "street", + "wordSecond": "rue", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "address", + "wordSecond": "adresse", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "city", + "wordSecond": "ville", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "country", + "wordSecond": "pays", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "passenger", + "wordSecond": "passager", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "driver", + "wordSecond": "chauffeur", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "pilot", + "wordSecond": "pilote", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "flight", + "wordSecond": "vol", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "gate", + "wordSecond": "porte", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "arrival", + "wordSecond": "arrivée", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "departure", + "wordSecond": "départ", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "delay", + "wordSecond": "retard", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "time", + "wordSecond": "heure", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "schedule", + "wordSecond": "horaire", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "seat", + "wordSecond": "siège", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "window", + "wordSecond": "fenêtre", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "aisle", + "wordSecond": "couloir", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "stop", + "wordSecond": "arrêt", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "terminal", + "wordSecond": "terminal", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "check-in", + "wordSecond": "enregistrement", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "boarding pass", + "wordSecond": "carte d'embarquement", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "security", + "wordSecond": "sécurité", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "customs", + "wordSecond": "douane", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "money", + "wordSecond": "argent", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "price", + "wordSecond": "prix", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "restaurant", + "wordSecond": "restaurant", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "café", + "wordSecond": "café", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "toilet", + "wordSecond": "toilettes", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "information", + "wordSecond": "renseignements", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "help", + "wordSecond": "aide", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "exit", + "wordSecond": "sortie", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "entrance", + "wordSecond": "entrée", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "open", + "wordSecond": "ouvert", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "closed", + "wordSecond": "fermé", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "far", + "wordSecond": "loin", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "near", + "wordSecond": "près", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "here", + "wordSecond": "ici", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "there", + "wordSecond": "là", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fast", + "wordSecond": "rapide", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "slow", + "wordSecond": "lent", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "big", + "wordSecond": "grand", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "small", + "wordSecond": "petit", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "new", + "wordSecond": "nouveau", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "old", + "wordSecond": "vieux", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "good", + "wordSecond": "bon", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "bad", + "wordSecond": "mauvais", + "createdAt": "2026-02-19T14:28:31.027Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_en_it_A2.json b/output/2026_02_19_travel_transport_en_it_A2.json new file mode 100644 index 0000000..47b00ee --- /dev/null +++ b/output/2026_02_19_travel_transport_en_it_A2.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:28:44.408Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "airport", + "wordSecond": "aeroporto", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "train station", + "wordSecond": "stazione", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bus station", + "wordSecond": "autostazione", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hotel", + "wordSecond": "albergo", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "left", + "wordSecond": "sinistra", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "right", + "wordSecond": "destra", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "straight", + "wordSecond": "dritto", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ticket", + "wordSecond": "biglietto", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "passport", + "wordSecond": "passaporto", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "luggage", + "wordSecond": "bagaglio", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "suitcase", + "wordSecond": "valigia", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "car", + "wordSecond": "macchina", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bus", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "train", + "wordSecond": "treno", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "plane", + "wordSecond": "aereo", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ship", + "wordSecond": "nave", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bicycle", + "wordSecond": "bicicletta", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "taxi", + "wordSecond": "taxi", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "metro", + "wordSecond": "metropolitana", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "tram", + "wordSecond": "tram", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "platform", + "wordSecond": "binario", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "arrival", + "wordSecond": "arrivo", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "departure", + "wordSecond": "partenza", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "gate", + "wordSecond": "uscita", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "check-in", + "wordSecond": "check-in", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "boarding pass", + "wordSecond": "carta d'imbarco", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "seat", + "wordSecond": "posto", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "window", + "wordSecond": "finestrino", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "aisle", + "wordSecond": "corridoio", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "driver", + "wordSecond": "autista", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "pilot", + "wordSecond": "pilota", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "flight", + "wordSecond": "volo", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "journey", + "wordSecond": "viaggio", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "trip", + "wordSecond": "gita", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "holiday", + "wordSecond": "vacanza", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "map", + "wordSecond": "mappa", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "street", + "wordSecond": "strada", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "address", + "wordSecond": "indirizzo", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "city", + "wordSecond": "città", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "country", + "wordSecond": "paese", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "border", + "wordSecond": "frontiera", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "customs", + "wordSecond": "dogana", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "money", + "wordSecond": "soldi", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "exchange", + "wordSecond": "cambio", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "reservation", + "wordSecond": "prenotazione", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "room", + "wordSecond": "camera", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "key", + "wordSecond": "chiave", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "reception", + "wordSecond": "reception", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lift", + "wordSecond": "ascensore", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "stairs", + "wordSecond": "scale", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "exit", + "wordSecond": "uscita", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "entrance", + "wordSecond": "entrata", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "information", + "wordSecond": "informazioni", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "time", + "wordSecond": "ora", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "delay", + "wordSecond": "ritardo", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "stop", + "wordSecond": "fermata", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "station", + "wordSecond": "stazione", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "port", + "wordSecond": "porto", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "harbour", + "wordSecond": "porto", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ferry", + "wordSecond": "traghetto", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "motorcycle", + "wordSecond": "motocicletta", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "highway", + "wordSecond": "autostrada", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "road", + "wordSecond": "strada", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "bridge", + "wordSecond": "ponte", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "traffic", + "wordSecond": "traffico", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "speed", + "wordSecond": "velocità", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fuel", + "wordSecond": "benzina", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "petrol station", + "wordSecond": "benzinaio", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "parking", + "wordSecond": "parcheggio", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "car park", + "wordSecond": "parcheggio", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wheel", + "wordSecond": "ruota", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "engine", + "wordSecond": "motore", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "breakdown", + "wordSecond": "guasto", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "help", + "wordSecond": "aiuto", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "police", + "wordSecond": "polizia", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ambulance", + "wordSecond": "ambulanza", + "createdAt": "2026-02-19T14:28:44.408Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_en_ja_A2.json b/output/2026_02_19_travel_transport_en_ja_A2.json new file mode 100644 index 0000000..33be220 --- /dev/null +++ b/output/2026_02_19_travel_transport_en_ja_A2.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:29:06.711Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "airport", + "wordSecond": "空港 (くうこう, kūkō)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "train station", + "wordSecond": "駅 (えき, eki)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bus station", + "wordSecond": "バス停 (ばすてい, basutei)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hotel", + "wordSecond": "ホテル (hoteru)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "left", + "wordSecond": "左 (ひだり, hidari)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "right", + "wordSecond": "右 (みぎ, migi)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "straight", + "wordSecond": "まっすぐ (massugu)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "ticket", + "wordSecond": "切符 (きっぷ, kippu)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "passport", + "wordSecond": "パスポート (pasupōto)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "luggage", + "wordSecond": "荷物 (にもつ, nimotsu)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "car", + "wordSecond": "車 (くるま, kuruma)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bus", + "wordSecond": "バス (basu)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "train", + "wordSecond": "電車 (でんしゃ, densha)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "plane", + "wordSecond": "飛行機 (ひこうき, hikōki)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "ship", + "wordSecond": "船 (ふね, fune)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "taxi", + "wordSecond": "タクシー (takushī)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "bicycle", + "wordSecond": "自転車 (じてんしゃ, jitensha)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "walk", + "wordSecond": "歩く (あるく, aruku)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "map", + "wordSecond": "地図 (ちず, chizu)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "street", + "wordSecond": "道 (みち, michi)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "corner", + "wordSecond": "角 (かど, kado)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "traffic light", + "wordSecond": "信号 (しんごう, shingō)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "stop", + "wordSecond": "止まる (とまる, tomaru)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "go", + "wordSecond": "行く (いく, iku)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "arrive", + "wordSecond": "着く (つく, tsuku)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "depart", + "wordSecond": "出発する (しゅっぱつする, shuppatsu suru)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "wait", + "wordSecond": "待つ (まつ, matsu)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "platform", + "wordSecond": "ホーム (hōmu)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "gate", + "wordSecond": "ゲート (gēto)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "check-in", + "wordSecond": "チェックイン (chekkuin)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "boarding pass", + "wordSecond": "搭乗券 (とうじょうけん, tōjōken)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "seat", + "wordSecond": "席 (せき, seki)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "window seat", + "wordSecond": "窓側の席 (まどがわのせき, madogawa no seki)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "aisle seat", + "wordSecond": "通路側の席 (つうろがわのせき, tsūrogawa no seki)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "suitcase", + "wordSecond": "スーツケース (sūtsukēsu)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "backpack", + "wordSecond": "リュックサック (ryukkusakku)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "money", + "wordSecond": "お金 (おかね, okane)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "exchange", + "wordSecond": "両替 (りょうがえ, ryōgae)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "reservation", + "wordSecond": "予約 (よやく, yoyaku)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "room", + "wordSecond": "部屋 (へや, heya)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "key", + "wordSecond": "鍵 (かぎ, kagi)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "elevator", + "wordSecond": "エレベーター (erebētā)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "stairs", + "wordSecond": "階段 (かいだん, kaidan)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "exit", + "wordSecond": "出口 (でぐち, deguchi)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "entrance", + "wordSecond": "入口 (いりぐち, iriguchi)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "information", + "wordSecond": "案内所 (あんないじょ, annaijo)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "toilet", + "wordSecond": "トイレ (toire)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "restaurant", + "wordSecond": "レストラン (resutoran)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cafe", + "wordSecond": "喫茶店 (きっさてん, kissaten)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "shop", + "wordSecond": "店 (みせ, mise)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "buy", + "wordSecond": "買う (かう, kau)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sell", + "wordSecond": "売る (うる, uru)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "price", + "wordSecond": "値段 (ねだん, nedan)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cheap", + "wordSecond": "安い (やすい, yasui)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "expensive", + "wordSecond": "高い (たかい, takai)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "far", + "wordSecond": "遠い (とおい, tōi)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "near", + "wordSecond": "近い (ちかい, chikai)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "here", + "wordSecond": "ここ (koko)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "there", + "wordSecond": "そこ (soko)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "where", + "wordSecond": "どこ (doko)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "when", + "wordSecond": "いつ (itsu)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "how much", + "wordSecond": "いくら (ikura)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "help", + "wordSecond": "助ける (たすける, tasukeru)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "police", + "wordSecond": "警察 (けいさつ, keisatsu)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hospital", + "wordSecond": "病院 (びょういん, byōin)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "pharmacy", + "wordSecond": "薬局 (やっきょく, yakkyoku)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "time", + "wordSecond": "時間 (じかん, jikan)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "morning", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "afternoon", + "wordSecond": "午後 (ごご, gogo)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "evening", + "wordSecond": "夕方 (ゆうがた, yūgata)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "night", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "today", + "wordSecond": "今日 (きょう, kyō)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "tomorrow", + "wordSecond": "明日 (あした, ashita)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "yesterday", + "wordSecond": "昨日 (きのう, kinō)", + "createdAt": "2026-02-19T14:29:06.711Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_en_ko_A2.json b/output/2026_02_19_travel_transport_en_ko_A2.json new file mode 100644 index 0000000..1510714 --- /dev/null +++ b/output/2026_02_19_travel_transport_en_ko_A2.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:29:42.519Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "airport", + "wordSecond": "공항 (gonghang)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "plane", + "wordSecond": "비행기 (bihaenggi)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "ticket", + "wordSecond": "표 (pyo)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "passport", + "wordSecond": "여권 (yeogwon)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "luggage", + "wordSecond": "짐 (jim)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "suitcase", + "wordSecond": "여행가방 (yeohaeng gabang)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bus", + "wordSecond": "버스 (beoseu)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bus station", + "wordSecond": "버스 정류장 (beoseu jeongnyujang)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "train", + "wordSecond": "기차 (gicha)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "train station", + "wordSecond": "기차역 (gichayeok)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "car", + "wordSecond": "자동차 (jadongcha)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "taxi", + "wordSecond": "택시 (taeksi)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "ship", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bicycle", + "wordSecond": "자전거 (jajeongeo)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "motorbike", + "wordSecond": "오토바이 (otobai)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "subway", + "wordSecond": "지하철 (jihacheol)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "hotel", + "wordSecond": "호텔 (hotel)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "room", + "wordSecond": "방 (bang)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "key", + "wordSecond": "열쇠 (yeolsoe)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "reception", + "wordSecond": "프런트 (peureonteu)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "reservation", + "wordSecond": "예약 (yeyak)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "check-in", + "wordSecond": "체크인 (chekeuin)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "check-out", + "wordSecond": "체크아웃 (chekeuaut)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "passenger", + "wordSecond": "승객 (seunggaek)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "driver", + "wordSecond": "운전사 (unjeonsa)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pilot", + "wordSecond": "조종사 (jojongsa)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "flight", + "wordSecond": "항공편 (hanggongpyeon)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "gate", + "wordSecond": "게이트 (geiteu)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "boarding pass", + "wordSecond": "탑승권 (tapseung-gwon)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "security", + "wordSecond": "보안 (boan)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "customs", + "wordSecond": "세관 (segwan)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "arrival", + "wordSecond": "도착 (dochak)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "departure", + "wordSecond": "출발 (chulbal)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "delay", + "wordSecond": "지연 (jiyeon)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "schedule", + "wordSecond": "시간표 (siganpyo)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "map", + "wordSecond": "지도 (jido)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "left", + "wordSecond": "왼쪽 (oenjjok)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "right", + "wordSecond": "오른쪽 (oreunjjok)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "straight", + "wordSecond": "직진 (jikjin)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "front", + "wordSecond": "앞 (ap)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "back", + "wordSecond": "뒤 (dwi)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "near", + "wordSecond": "가까운 (gakkaun)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "far", + "wordSecond": "먼 (meon)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "here", + "wordSecond": "여기 (yeogi)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "there", + "wordSecond": "거기 (geogi)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "street", + "wordSecond": "거리 (geori)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "address", + "wordSecond": "주소 (juso)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "money", + "wordSecond": "돈 (don)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cash", + "wordSecond": "현금 (hyeongeum)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "credit card", + "wordSecond": "신용카드 (sinyong kadeu)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "price", + "wordSecond": "가격 (gagyeok)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "expensive", + "wordSecond": "비싼 (bissan)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cheap", + "wordSecond": "싼 (ssan)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "restaurant", + "wordSecond": "식당 (sikdang)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cafe", + "wordSecond": "카페 (kape)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "food", + "wordSecond": "음식 (eumsik)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "water", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "coffee", + "wordSecond": "커피 (keopi)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "tea", + "wordSecond": "차 (cha)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "toilet", + "wordSecond": "화장실 (hwajangsil)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "help", + "wordSecond": "도움 (doum)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "emergency", + "wordSecond": "비상 (bisang)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "police", + "wordSecond": "경찰 (gyeongchal)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "doctor", + "wordSecond": "의사 (uisa)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "pharmacy", + "wordSecond": "약국 (yakguk)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "tourist", + "wordSecond": "관광객 (gwangwanggaek)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "travel", + "wordSecond": "여행 (yeohaeng)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "vacation", + "wordSecond": "휴가 (hyuga)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "beach", + "wordSecond": "해변 (haebyeon)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "mountain", + "wordSecond": "산 (san)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "city", + "wordSecond": "도시 (dosi)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "country", + "wordSecond": "나라 (nara)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "photo", + "wordSecond": "사진 (sajin)", + "createdAt": "2026-02-19T14:29:42.519Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_en_pl_A2.json b/output/2026_02_19_travel_transport_en_pl_A2.json new file mode 100644 index 0000000..7377725 --- /dev/null +++ b/output/2026_02_19_travel_transport_en_pl_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:29:55.527Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "airport", + "wordSecond": "lotnisko", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "plane", + "wordSecond": "samolot", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "passport", + "wordSecond": "paszport", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "ticket", + "wordSecond": "bilet", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "luggage", + "wordSecond": "bagaż", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "suitcase", + "wordSecond": "walizka", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bus", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bus station", + "wordSecond": "dworzec autobusowy", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "train", + "wordSecond": "pociąg", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "train station", + "wordSecond": "dworzec kolejowy", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "car", + "wordSecond": "samochód", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "taxi", + "wordSecond": "taksówka", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "ship", + "wordSecond": "statek", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bicycle", + "wordSecond": "rower", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "motorbike", + "wordSecond": "motocykl", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "hotel", + "wordSecond": "hotel", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "room", + "wordSecond": "pokój", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "key", + "wordSecond": "klucz", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "reception", + "wordSecond": "recepcja", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "map", + "wordSecond": "mapa", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "left", + "wordSecond": "lewo", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "right", + "wordSecond": "prawo", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "straight", + "wordSecond": "prosto", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "here", + "wordSecond": "tutaj", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "there", + "wordSecond": "tam", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "near", + "wordSecond": "blisko", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "far", + "wordSecond": "daleko", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "street", + "wordSecond": "ulica", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "address", + "wordSecond": "adres", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "city", + "wordSecond": "miasto", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "country", + "wordSecond": "kraj", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "station", + "wordSecond": "stacja", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "platform", + "wordSecond": "peron", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "departure", + "wordSecond": "odjazd", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "arrival", + "wordSecond": "przyjazd", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "delay", + "wordSecond": "opóźnienie", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "time", + "wordSecond": "czas", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "schedule", + "wordSecond": "rozklad", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "gate", + "wordSecond": "bramka", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "check-in", + "wordSecond": "odprawa", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "boarding pass", + "wordSecond": "karta pokładowa", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "seat", + "wordSecond": "miejsce", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "window", + "wordSecond": "okno", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "aisle", + "wordSecond": "przejście", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "driver", + "wordSecond": "kierowca", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "pilot", + "wordSecond": "pilot", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "passenger", + "wordSecond": "pasażer", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "tourist", + "wordSecond": "turysta", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "travel", + "wordSecond": "podróż", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "journey", + "wordSecond": "podróż", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "trip", + "wordSecond": "wycieczka", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "holiday", + "wordSecond": "wakacje", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "vacation", + "wordSecond": "urlop", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "beach", + "wordSecond": "plaża", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "mountain", + "wordSecond": "góra", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sea", + "wordSecond": "morze", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "lake", + "wordSecond": "jezioro", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "money", + "wordSecond": "pieniądze", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "price", + "wordSecond": "cena", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cheap", + "wordSecond": "tani", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "expensive", + "wordSecond": "drogi", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to go", + "wordSecond": "iść", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to come", + "wordSecond": "przychodzić", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to leave", + "wordSecond": "wyjeżdżać", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to arrive", + "wordSecond": "przyjeżdżać", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to buy", + "wordSecond": "kupować", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to pay", + "wordSecond": "płacić", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to ask", + "wordSecond": "pytać", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to help", + "wordSecond": "pomagać", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to wait", + "wordSecond": "czekać", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to travel", + "wordSecond": "podróżować", + "createdAt": "2026-02-19T14:29:55.527Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_en_pt_A2.json b/output/2026_02_19_travel_transport_en_pt_A2.json new file mode 100644 index 0000000..b42262e --- /dev/null +++ b/output/2026_02_19_travel_transport_en_pt_A2.json @@ -0,0 +1,1020 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:28:06.129Z", + "metadata": { + "itemCount": 77, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "airport", + "wordSecond": "aeroporto", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "plane", + "wordSecond": "avião", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "flight", + "wordSecond": "voo", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "passport", + "wordSecond": "passaporte", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ticket", + "wordSecond": "bilhete", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "luggage", + "wordSecond": "bagagem", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "suitcase", + "wordSecond": "mala", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bus", + "wordSecond": "ônibus", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bus station", + "wordSecond": "rodoviária", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "train", + "wordSecond": "trem", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "train station", + "wordSecond": "estação", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "car", + "wordSecond": "carro", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "taxi", + "wordSecond": "táxi", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ship", + "wordSecond": "navio", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "boat", + "wordSecond": "barco", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bicycle", + "wordSecond": "bicicleta", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "motorcycle", + "wordSecond": "moto", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "subway", + "wordSecond": "metrô", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tram", + "wordSecond": "bonde", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hotel", + "wordSecond": "hotel", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "room", + "wordSecond": "quarto", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "key", + "wordSecond": "chave", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "reception", + "wordSecond": "recepção", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "reservation", + "wordSecond": "reserva", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "map", + "wordSecond": "mapa", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "street", + "wordSecond": "rua", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "address", + "wordSecond": "endereço", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "left", + "wordSecond": "esquerda", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "right", + "wordSecond": "direita", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "straight", + "wordSecond": "direto", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "here", + "wordSecond": "aqui", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "there", + "wordSecond": "ali", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "near", + "wordSecond": "perto", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "far", + "wordSecond": "longe", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "arrival", + "wordSecond": "chegada", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "departure", + "wordSecond": "partida", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "gate", + "wordSecond": "portão", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "check-in", + "wordSecond": "check-in", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "boarding pass", + "wordSecond": "cartão de embarque", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "seat", + "wordSecond": "assento", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "window", + "wordSecond": "janela", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "aisle", + "wordSecond": "corredor", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "pilot", + "wordSecond": "piloto", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "flight attendant", + "wordSecond": "comissário", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "passenger", + "wordSecond": "passageiro", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "driver", + "wordSecond": "motorista", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "conductor", + "wordSecond": "condutor", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "platform", + "wordSecond": "plataforma", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "schedule", + "wordSecond": "horário", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "delay", + "wordSecond": "atraso", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cancel", + "wordSecond": "cancelar", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stop", + "wordSecond": "parada", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "terminal", + "wordSecond": "terminal", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "baggage claim", + "wordSecond": "esteira de bagagem", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "customs", + "wordSecond": "alfândega", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "security", + "wordSecond": "segurança", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "visa", + "wordSecond": "visto", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "money", + "wordSecond": "dinheiro", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "exchange", + "wordSecond": "câmbio", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "restaurant", + "wordSecond": "restaurante", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cafeteria", + "wordSecond": "lanchonete", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "toilet", + "wordSecond": "banheiro", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "information", + "wordSecond": "informação", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "help", + "wordSecond": "ajuda", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "emergency", + "wordSecond": "emergência", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "exit", + "wordSecond": "saída", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "entrance", + "wordSecond": "entrada", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "elevator", + "wordSecond": "elevador", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stairs", + "wordSecond": "escadas", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "escalator", + "wordSecond": "escada rolante", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "parking", + "wordSecond": "estacionamento", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "road", + "wordSecond": "estrada", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "bridge", + "wordSecond": "ponte", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "traffic", + "wordSecond": "trânsito", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "speed", + "wordSecond": "velocidade", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "travel", + "wordSecond": "viagem", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "tourist", + "wordSecond": "turista", + "createdAt": "2026-02-19T14:28:06.129Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_en_zh_A2.json b/output/2026_02_19_travel_transport_en_zh_A2.json new file mode 100644 index 0000000..3314a72 --- /dev/null +++ b/output/2026_02_19_travel_transport_en_zh_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:29:22.991Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "airport", + "wordSecond": "机场 (jichang)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "train station", + "wordSecond": "火车站 (huochezhan)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bus station", + "wordSecond": "汽车站 (qichezhan)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hotel", + "wordSecond": "酒店 (jiudian)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "room", + "wordSecond": "房间 (fangjian)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "passport", + "wordSecond": "护照 (huzhao)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "ticket", + "wordSecond": "票 (piao)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "luggage", + "wordSecond": "行李 (xingli)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "suitcase", + "wordSecond": "行李箱 (xinglixiang)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bag", + "wordSecond": "包 (bao)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "map", + "wordSecond": "地图 (ditu)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "left", + "wordSecond": "左 (zuo)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "right", + "wordSecond": "右 (you)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "straight", + "wordSecond": "直走 (zhizou)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "here", + "wordSecond": "这里 (zheli)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "there", + "wordSecond": "那里 (nali)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "car", + "wordSecond": "汽车 (qiche)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bus", + "wordSecond": "公共汽车 (gonggongqiche)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "train", + "wordSecond": "火车 (huoche)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "plane", + "wordSecond": "飞机 (feiji)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "ship", + "wordSecond": "船 (chuan)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "taxi", + "wordSecond": "出租车 (chuzuche)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bicycle", + "wordSecond": "自行车 (zixingche)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "motorcycle", + "wordSecond": "摩托车 (motuoche)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "subway", + "wordSecond": "地铁 (ditie)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "stop", + "wordSecond": "站 (zhan)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "driver", + "wordSecond": "司机 (siji)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "pilot", + "wordSecond": "飞行员 (feixingyuan)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "passenger", + "wordSecond": "乘客 (chengke)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "seat", + "wordSecond": "座位 (zuowei)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "window", + "wordSecond": "窗户 (chuanghu)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "door", + "wordSecond": "门 (men)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "key", + "wordSecond": "钥匙 (yaoshi)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "money", + "wordSecond": "钱 (qian)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "price", + "wordSecond": "价格 (jiage)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "time", + "wordSecond": "时间 (shijian)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "today", + "wordSecond": "今天 (jintian)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "tomorrow", + "wordSecond": "明天 (mingtian)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "yesterday", + "wordSecond": "昨天 (zuotian)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "morning", + "wordSecond": "早上 (zaoshang)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "afternoon", + "wordSecond": "下午 (xiawu)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "evening", + "wordSecond": "晚上 (wanshang)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "night", + "wordSecond": "夜晚 (yewan)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "food", + "wordSecond": "食物 (shiwu)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "water", + "wordSecond": "水 (shui)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "coffee", + "wordSecond": "咖啡 (kafei)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "tea", + "wordSecond": "茶 (cha)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "restaurant", + "wordSecond": "餐厅 (canting)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "shop", + "wordSecond": "商店 (shangdian)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "market", + "wordSecond": "市场 (shichang)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "street", + "wordSecond": "街道 (jiedao)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "city", + "wordSecond": "城市 (chengshi)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "country", + "wordSecond": "国家 (guojia)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "home", + "wordSecond": "家 (jia)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "far", + "wordSecond": "远 (yuan)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "near", + "wordSecond": "近 (jin)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "big", + "wordSecond": "大 (da)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "small", + "wordSecond": "小 (xiao)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "fast", + "wordSecond": "快 (kuai)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "slow", + "wordSecond": "慢 (man)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "new", + "wordSecond": "新 (xin)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "old", + "wordSecond": "旧 (jiu)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "good", + "wordSecond": "好 (hao)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "bad", + "wordSecond": "坏 (huai)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "open", + "wordSecond": "开 (kai)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "closed", + "wordSecond": "关 (guan)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "entrance", + "wordSecond": "入口 (rukou)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "exit", + "wordSecond": "出口 (chukou)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "toilet", + "wordSecond": "厕所 (cesuo)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "help", + "wordSecond": "帮助 (bangzhu)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "problem", + "wordSecond": "问题 (wenti)", + "createdAt": "2026-02-19T14:29:22.991Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_es_de_A2.json b/output/2026_02_19_travel_transport_es_de_A2.json new file mode 100644 index 0000000..f007b99 --- /dev/null +++ b/output/2026_02_19_travel_transport_es_de_A2.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:30:24.337Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "aeropuerto", + "wordSecond": "Flughafen", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "avión", + "wordSecond": "Flugzeug", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "billete", + "wordSecond": "Fahrkarte", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pasaporte", + "wordSecond": "Reisepass", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "equipaje", + "wordSecond": "Gepäck", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "maleta", + "wordSecond": "Koffer", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "taxi", + "wordSecond": "Taxi", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "autobús", + "wordSecond": "Bus", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tren", + "wordSecond": "Zug", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "estación de tren", + "wordSecond": "Bahnhof", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "estación de autobuses", + "wordSecond": "Bushaltestelle", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hotel", + "wordSecond": "Hotel", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "habitación", + "wordSecond": "Zimmer", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "reserva", + "wordSecond": "Reservierung", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "llegada", + "wordSecond": "Ankunft", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "salida", + "wordSecond": "Abfahrt", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "puerta", + "wordSecond": "Gate", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "facturación", + "wordSecond": "Check-in", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "seguridad", + "wordSecond": "Sicherheit", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "control de pasaportes", + "wordSecond": "Passkontrolle", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "coche", + "wordSecond": "Auto", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "barco", + "wordSecond": "Schiff", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "bicicleta", + "wordSecond": "Fahrrad", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "metro", + "wordSecond": "U-Bahn", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tranvía", + "wordSecond": "Straßenbahn", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "conductor", + "wordSecond": "Fahrer", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "piloto", + "wordSecond": "Pilot", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "azafata", + "wordSecond": "Stewardess", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mapa", + "wordSecond": "Karte", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "calle", + "wordSecond": "Straße", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "izquierda", + "wordSecond": "links", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "derecha", + "wordSecond": "rechts", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "recto", + "wordSecond": "geradeaus", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "aquí", + "wordSecond": "hier", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "allí", + "wordSecond": "dort", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lejos", + "wordSecond": "weit", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cerca", + "wordSecond": "nah", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "norte", + "wordSecond": "Norden", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sur", + "wordSecond": "Süden", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "este", + "wordSecond": "Osten", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "oeste", + "wordSecond": "Westen", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "parada", + "wordSecond": "Haltestelle", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "andén", + "wordSecond": "Bahnsteig", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "horario", + "wordSecond": "Fahrplan", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "retraso", + "wordSecond": "Verspätung", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cancelado", + "wordSecond": "abgesagt", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "vuelo", + "wordSecond": "Flug", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "destino", + "wordSecond": "Ziel", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "origen", + "wordSecond": "Ursprung", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "viaje", + "wordSecond": "Reise", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "turista", + "wordSecond": "Tourist", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "guía", + "wordSecond": "Führer", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dinero", + "wordSecond": "Geld", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cambio", + "wordSecond": "Wechselgeld", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tarjeta de crédito", + "wordSecond": "Kreditkarte", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "souvenir", + "wordSecond": "Andenken", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "playa", + "wordSecond": "Strand", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "montaña", + "wordSecond": "Berg", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ciudad", + "wordSecond": "Stadt", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pueblo", + "wordSecond": "Dorf", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "frontera", + "wordSecond": "Grenze", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "aduana", + "wordSecond": "Zoll", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "visado", + "wordSecond": "Visum", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "maletero", + "wordSecond": "Kofferraum", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "gasolinera", + "wordSecond": "Tankstelle", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "aparcamiento", + "wordSecond": "Parkplatz", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "semáforo", + "wordSecond": "Ampel", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dirección", + "wordSecond": "Adresse", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "número", + "wordSecond": "Nummer", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "plaza", + "wordSecond": "Platz", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cafetería", + "wordSecond": "Cafeteria", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "restaurante", + "wordSecond": "Restaurant", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "baño", + "wordSecond": "Toilette", + "createdAt": "2026-02-19T14:30:24.337Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_es_fr_A2.json b/output/2026_02_19_travel_transport_es_fr_A2.json new file mode 100644 index 0000000..12423e5 --- /dev/null +++ b/output/2026_02_19_travel_transport_es_fr_A2.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:30:38.569Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "aeropuerto", + "wordSecond": "aéroport", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "avión", + "wordSecond": "avion", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "billete", + "wordSecond": "billet", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pasaporte", + "wordSecond": "passeport", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "equipaje", + "wordSecond": "bagage", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "maleta", + "wordSecond": "valise", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "taxi", + "wordSecond": "taxi", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "autobús", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tren", + "wordSecond": "train", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "estación", + "wordSecond": "gare", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hotel", + "wordSecond": "hôtel", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "habitación", + "wordSecond": "chambre", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "reserva", + "wordSecond": "réservation", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "llegada", + "wordSecond": "arrivée", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "salida", + "wordSecond": "départ", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vuelo", + "wordSecond": "vol", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "puerta", + "wordSecond": "porte", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pasajero", + "wordSecond": "passager", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "conductor", + "wordSecond": "conducteur", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "calle", + "wordSecond": "rue", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "izquierda", + "wordSecond": "gauche", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "derecha", + "wordSecond": "droite", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "recto", + "wordSecond": "tout droit", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mapa", + "wordSecond": "carte", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dirección", + "wordSecond": "adresse", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "parada", + "wordSecond": "arrêt", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "andén", + "wordSecond": "quai", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "taquilla", + "wordSecond": "guichet", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "horario", + "wordSecond": "horaire", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "retraso", + "wordSecond": "retard", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "coche", + "wordSecond": "voiture", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "barco", + "wordSecond": "bateau", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "moto", + "wordSecond": "moto", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "bicicleta", + "wordSecond": "vélo", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "camión", + "wordSecond": "camion", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "metro", + "wordSecond": "métro", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tranvía", + "wordSecond": "tramway", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ferry", + "wordSecond": "ferry", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "helicóptero", + "wordSecond": "hélicoptère", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "conductor", + "wordSecond": "chauffeur", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pasillo", + "wordSecond": "couloir", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "asiento", + "wordSecond": "siège", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ventanilla", + "wordSecond": "fenêtre", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "maletero", + "wordSecond": "coffre", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gasolina", + "wordSecond": "essence", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "carretera", + "wordSecond": "route", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "autopista", + "wordSecond": "autoroute", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "semáforo", + "wordSecond": "feu", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "señal", + "wordSecond": "panneau", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "destino", + "wordSecond": "destination", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "viaje", + "wordSecond": "voyage", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "turista", + "wordSecond": "touriste", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "guía", + "wordSecond": "guide", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dinero", + "wordSecond": "argent", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cambio", + "wordSecond": "change", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tarjeta", + "wordSecond": "carte", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sala", + "wordSecond": "salle", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "escalera", + "wordSecond": "escalier", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ascensor", + "wordSecond": "ascenseur", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "recepcionista", + "wordSecond": "réceptionniste", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "llave", + "wordSecond": "clé", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "factura", + "wordSecond": "facture", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "desayuno", + "wordSecond": "petit déjeuner", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "comida", + "wordSecond": "repas", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "baño", + "wordSecond": "salle de bain", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "planta", + "wordSecond": "étage", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "número", + "wordSecond": "numéro", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "teléfono", + "wordSecond": "téléphone", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "información", + "wordSecond": "information", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ayuda", + "wordSecond": "aide", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "emergencia", + "wordSecond": "urgence", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "seguridad", + "wordSecond": "sécurité", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "control", + "wordSecond": "contrôle", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "aduana", + "wordSecond": "douane", + "createdAt": "2026-02-19T14:30:38.569Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_es_it_A2.json b/output/2026_02_19_travel_transport_es_it_A2.json new file mode 100644 index 0000000..d77a9b9 --- /dev/null +++ b/output/2026_02_19_travel_transport_es_it_A2.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:30:53.163Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "aeropuerto", + "wordSecond": "aeroporto", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "avión", + "wordSecond": "aereo", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "billete", + "wordSecond": "biglietto", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pasaporte", + "wordSecond": "passaporto", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "maleta", + "wordSecond": "valigia", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "equipaje", + "wordSecond": "bagaglio", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "taxi", + "wordSecond": "taxi", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "autobús", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tren", + "wordSecond": "treno", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estación", + "wordSecond": "stazione", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "andén", + "wordSecond": "binario", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hotel", + "wordSecond": "albergo", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "habitación", + "wordSecond": "camera", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "reserva", + "wordSecond": "prenotazione", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "llegada", + "wordSecond": "arrivo", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "salida", + "wordSecond": "partenza", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vuelo", + "wordSecond": "volo", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "puerta", + "wordSecond": "porta", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "terminal", + "wordSecond": "terminal", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "facturar", + "wordSecond": "imbarcare", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mostrador", + "wordSecond": "banco", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "control", + "wordSecond": "controllo", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "seguridad", + "wordSecond": "sicurezza", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pasajero", + "wordSecond": "passeggero", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "azafata", + "wordSecond": "hostess", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "piloto", + "wordSecond": "pilota", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "barco", + "wordSecond": "nave", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ferry", + "wordSecond": "traghetto", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "coche", + "wordSecond": "macchina", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "conductor", + "wordSecond": "autista", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gasolina", + "wordSecond": "benzina", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estación de servicio", + "wordSecond": "stazione di servizio", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mapa", + "wordSecond": "mappa", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "calle", + "wordSecond": "strada", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "derecha", + "wordSecond": "destra", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "izquierda", + "wordSecond": "sinistra", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "recto", + "wordSecond": "dritto", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dirección", + "wordSecond": "direzione", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "semáforo", + "wordSecond": "semaforo", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "parada", + "wordSecond": "fermata", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "horario", + "wordSecond": "orario", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "retraso", + "wordSecond": "ritardo", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cancelado", + "wordSecond": "cancellato", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "información", + "wordSecond": "informazione", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "taquilla", + "wordSecond": "biglietteria", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "asiento", + "wordSecond": "posto", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ventanilla", + "wordSecond": "finestrino", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pasillo", + "wordSecond": "corridoio", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "baño", + "wordSecond": "bagno", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "restaurante", + "wordSecond": "ristorante", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cafetería", + "wordSecond": "caffetteria", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tienda", + "wordSecond": "negozio", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dinero", + "wordSecond": "soldi", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cambio", + "wordSecond": "cambio", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tarjeta", + "wordSecond": "carta", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "efectivo", + "wordSecond": "contanti", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "precio", + "wordSecond": "prezzo", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "caro", + "wordSecond": "caro", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "barato", + "wordSecond": "economico", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vacaciones", + "wordSecond": "vacanze", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "viaje", + "wordSecond": "viaggio", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "destino", + "wordSecond": "destinazione", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ciudad", + "wordSecond": "città", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "playa", + "wordSecond": "spiaggia", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "montaña", + "wordSecond": "montagna", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "campo", + "wordSecond": "campagna", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "turista", + "wordSecond": "turista", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "guía", + "wordSecond": "guida", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "excursión", + "wordSecond": "escursione", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "souvenir", + "wordSecond": "ricordo", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "foto", + "wordSecond": "foto", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cámara", + "wordSecond": "macchina fotografica", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mochila", + "wordSecond": "zaino", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "documentos", + "wordSecond": "documenti", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "visado", + "wordSecond": "visto", + "createdAt": "2026-02-19T14:30:53.163Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_es_ja_A2.json b/output/2026_02_19_travel_transport_es_ja_A2.json new file mode 100644 index 0000000..6a0a88a --- /dev/null +++ b/output/2026_02_19_travel_transport_es_ja_A2.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:31:18.080Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "aeropuerto", + "wordSecond": "空港 (くうこう, kūkō)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "avión", + "wordSecond": "飛行機 (ひこうき, hikōki)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "billete", + "wordSecond": "切符 (きっぷ, kippu)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pasaporte", + "wordSecond": "パスポート (pasupōto)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "maleta", + "wordSecond": "スーツケース (sūtsukēsu)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "equipaje", + "wordSecond": "荷物 (にもつ, nimotsu)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "taxi", + "wordSecond": "タクシー (takushī)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "autobús", + "wordSecond": "バス (basu)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tren", + "wordSecond": "電車 (でんしゃ, densha)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "estación de tren", + "wordSecond": "駅 (えき, eki)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "parada de autobús", + "wordSecond": "バス停 (basutei)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hotel", + "wordSecond": "ホテル (hoteru)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "habitación", + "wordSecond": "部屋 (へや, heya)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "reserva", + "wordSecond": "予約 (よやく, yoyaku)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "llegada", + "wordSecond": "到着 (とうちゃく, tōchaku)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "salida", + "wordSecond": "出発 (しゅっぱつ, shuppatsu)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "izquierda", + "wordSecond": "左 (ひだり, hidari)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "derecha", + "wordSecond": "右 (みぎ, migi)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "recto", + "wordSecond": "まっすぐ (massugu)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mapa", + "wordSecond": "地図 (ちず, chizu)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "calle", + "wordSecond": "道 (みち, michi)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dirección", + "wordSecond": "方向 (ほうこう, hōkō)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "puerta", + "wordSecond": "ドア (doa)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ventanilla", + "wordSecond": "窓 (まど, mado)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "asiento", + "wordSecond": "席 (せき, seki)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "conductor", + "wordSecond": "運転手 (うんてんしゅ, untenshu)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pasajero", + "wordSecond": "乗客 (じょうきゃく, jōkyaku)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "barco", + "wordSecond": "船 (ふね, fune)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "barco", + "wordSecond": "ボート (bōto)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "coche", + "wordSecond": "車 (くるま, kuruma)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "motocicleta", + "wordSecond": "バイク (baiku)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "bicicleta", + "wordSecond": "自転車 (じてんしゃ, jitensha)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "camión", + "wordSecond": "トラック (torakku)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "metro", + "wordSecond": "地下鉄 (ちかてつ, chikatetsu)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tranvía", + "wordSecond": "路面電車 (ろめんでんしゃ, romendensha)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "andén", + "wordSecond": "ホーム (hōmu)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "taquilla", + "wordSecond": "切符売り場 (きっぷうりば, kippuuriba)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mostrador", + "wordSecond": "カウンター (kauntā)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "facturación", + "wordSecond": "チェックイン (chekkuin)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "seguridad", + "wordSecond": "セキュリティ (sekyuriti)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "control de pasaportes", + "wordSecond": "入国審査 (にゅうこくしんさ, nyūkokushinsa)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "aduana", + "wordSecond": "税関 (ぜいかん, zeikan)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "vuelo", + "wordSecond": "便 (びん, bin)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "retraso", + "wordSecond": "遅延 (ちえん, chien)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hora", + "wordSecond": "時間 (じかん, jikan)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hora de salida", + "wordSecond": "出発時間 (しゅっぱつじかん, shuppatsujikan)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hora de llegada", + "wordSecond": "到着時間 (とうちゃくじかん, tōchakujikan)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "terminal", + "wordSecond": "ターミナル (tāminaru)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "salida", + "wordSecond": "ゲート (gēto)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "llegadas", + "wordSecond": "到着口 (とうちゃくぐち, tōchakuguchi)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "salidas", + "wordSecond": "出発口 (しゅっぱつぐち, shuppatsuguchi)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "información", + "wordSecond": "案内所 (あんないじょ, annaijo)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "baño", + "wordSecond": "トイレ (toire)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "restaurante", + "wordSecond": "レストラン (resutoran)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cafetería", + "wordSecond": "カフェ (kafe)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tienda", + "wordSecond": "店 (みせ, mise)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dinero", + "wordSecond": "お金 (おかね, okane)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cambio", + "wordSecond": "両替 (りょうがえ, ryōgae)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tarjeta de crédito", + "wordSecond": "クレジットカード (kurejittokādo)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "efectivo", + "wordSecond": "現金 (げんきん, genkin)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "precio", + "wordSecond": "値段 (ねだん, nedan)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "caro", + "wordSecond": "高い (たかい, takai)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "barato", + "wordSecond": "安い (やすい, yasui)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cerca", + "wordSecond": "近い (ちかい, chikai)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lejos", + "wordSecond": "遠い (とおい, tōi)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "rápido", + "wordSecond": "速い (はやい, hayai)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lento", + "wordSecond": "遅い (おそい, osoi)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "grande", + "wordSecond": "大きい (おおきい, ōkii)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pequeño", + "wordSecond": "小さい (ちいさい, chiisai)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "vacaciones", + "wordSecond": "休暇 (きゅうか, kyūka)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "viaje", + "wordSecond": "旅行 (りょこう, ryokō)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "turista", + "wordSecond": "観光客 (かんこうきゃく, kankōkyaku)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "guía", + "wordSecond": "ガイド (gaido)", + "createdAt": "2026-02-19T14:31:18.080Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_es_ko_A2.json b/output/2026_02_19_travel_transport_es_ko_A2.json new file mode 100644 index 0000000..8e8f055 --- /dev/null +++ b/output/2026_02_19_travel_transport_es_ko_A2.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:32:00.126Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "aeropuerto", + "wordSecond": "공항 (gonghang)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "avión", + "wordSecond": "비행기 (bihaenggi)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "billete", + "wordSecond": "표 (pyo)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pasaporte", + "wordSecond": "여권 (yeogwon)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "equipaje", + "wordSecond": "짐 (jim)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "maleta", + "wordSecond": "가방 (gabang)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hotel", + "wordSecond": "호텔 (hotel)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "habitación", + "wordSecond": "방 (bang)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "taxi", + "wordSecond": "택시 (taeksi)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "autobús", + "wordSecond": "버스 (beoseu)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "estación de autobuses", + "wordSecond": "버스 터미널 (beoseu teomineol)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tren", + "wordSecond": "기차 (gicha)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "estación de tren", + "wordSecond": "기차역 (gichayeok)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "metro", + "wordSecond": "지하철 (jihacheol)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "barco", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "coche", + "wordSecond": "자동차 (jadongcha)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "conductor", + "wordSecond": "운전사 (unjeonsa)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pasajero", + "wordSecond": "승객 (seunggaek)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "vuelo", + "wordSecond": "비행 (bihaeng)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "salida", + "wordSecond": "출구 (chulgu)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "llegada", + "wordSecond": "도착 (dochak)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "puerta", + "wordSecond": "게이트 (geiteu)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mostrador", + "wordSecond": "카운터 (kaunteo)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "facturación", + "wordSecond": "탑승 수속 (tapseung susok)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "seguridad", + "wordSecond": "보안 (boan)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "control de pasaportes", + "wordSecond": "출입국 심사 (churipguk simsa)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "asiento", + "wordSecond": "좌석 (jwaseok)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ventanilla", + "wordSecond": "창문 (changmun)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pasillo", + "wordSecond": "통로 (tongno)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "azafata", + "wordSecond": "승무원 (seungmuwon)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "piloto", + "wordSecond": "조종사 (jojongsa)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mapa", + "wordSecond": "지도 (jido)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "calle", + "wordSecond": "거리 (geori)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "izquierda", + "wordSecond": "왼쪽 (oenjjok)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "derecha", + "wordSecond": "오른쪽 (oreunjjok)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "recto", + "wordSecond": "직진 (jikjin)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "atrás", + "wordSecond": "뒤 (dwi)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "adelante", + "wordSecond": "앞 (ap)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cerca", + "wordSecond": "가까이 (gakkai)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lejos", + "wordSecond": "멀리 (meolli)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "parada", + "wordSecond": "정류장 (jeongnyujang)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "horario", + "wordSecond": "시간표 (siganpyo)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "retraso", + "wordSecond": "지연 (jiyeon)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cancelado", + "wordSecond": "취소 (chwiso)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "reserva", + "wordSecond": "예약 (yeyak)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "confirmación", + "wordSecond": "확인 (hwagin)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "llegadas", + "wordSecond": "도착 (dochak)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "salidas", + "wordSecond": "출발 (chulbal)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "información", + "wordSecond": "안내 (annae)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "baño", + "wordSecond": "화장실 (hwajangsil)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "restaurante", + "wordSecond": "식당 (sikdang)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cafetería", + "wordSecond": "카페 (kape)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tienda", + "wordSecond": "가게 (gage)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dinero", + "wordSecond": "돈 (don)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cambio", + "wordSecond": "환전 (hwanjeon)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tarjeta", + "wordSecond": "카드 (kadeu)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "efectivo", + "wordSecond": "현금 (hyeongeum)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "maletero", + "wordSecond": "트렁크 (teureongkeu)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "gasolina", + "wordSecond": "휘발유 (hwibaryu)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "gasolinera", + "wordSecond": "주유소 (juyuso)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "parquímetro", + "wordSecond": "주차 미터기 (jucha miteogi)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "aparcamiento", + "wordSecond": "주차장 (juchajang)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "semáforo", + "wordSecond": "신호등 (sinhodeung)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "señal", + "wordSecond": "표지판 (pyojipan)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "peatón", + "wordSecond": "보행자 (bohaengja)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cruzar", + "wordSecond": "건너다 (geonneoda)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "visado", + "wordSecond": "비자 (bija)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "aduana", + "wordSecond": "세관 (segwan)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "turista", + "wordSecond": "관광객 (gwangwanggaek)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "guía", + "wordSecond": "가이드 (gaideu)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "playa", + "wordSecond": "해변 (haebyeon)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "montaña", + "wordSecond": "산 (san)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ciudad", + "wordSecond": "도시 (dosi)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pueblo", + "wordSecond": "마을 (maeul)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "vacaciones", + "wordSecond": "휴가 (hyuga)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "viaje", + "wordSecond": "여행 (yeohaeng)", + "createdAt": "2026-02-19T14:32:00.126Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_es_pl_A2.json b/output/2026_02_19_travel_transport_es_pl_A2.json new file mode 100644 index 0000000..8c00d9f --- /dev/null +++ b/output/2026_02_19_travel_transport_es_pl_A2.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:32:14.977Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "aeropuerto", + "wordSecond": "lotnisko", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "avión", + "wordSecond": "samolot", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "billete", + "wordSecond": "bilet", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pasaporte", + "wordSecond": "paszport", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "equipaje", + "wordSecond": "bagaż", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "maleta", + "wordSecond": "walizka", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "taxi", + "wordSecond": "taksówka", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "autobús", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tren", + "wordSecond": "pociąg", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "estación de tren", + "wordSecond": "dworzec kolejowy", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "estación de autobuses", + "wordSecond": "dworzec autobusowy", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hotel", + "wordSecond": "hotel", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "habitación", + "wordSecond": "pokój", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "reserva", + "wordSecond": "rezerwacja", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "llegada", + "wordSecond": "przyjazd", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "salida", + "wordSecond": "odjazd", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "puerta", + "wordSecond": "brama", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "andén", + "wordSecond": "peron", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "vuelo", + "wordSecond": "lot", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "facturar", + "wordSecond": "odprawić", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "control de seguridad", + "wordSecond": "kontrola bezpieczeństwa", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mostrador", + "wordSecond": "lada", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "asiento", + "wordSecond": "miejsce", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ventanilla", + "wordSecond": "okno", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pasillo", + "wordSecond": "przejście", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "conductor", + "wordSecond": "kierowca", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "maquinista", + "wordSecond": "maszynista", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "piloto", + "wordSecond": "pilot", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "azafata", + "wordSecond": "stewardesa", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "barco", + "wordSecond": "statek", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ferry", + "wordSecond": "prom", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "coche", + "wordSecond": "samochód", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "moto", + "wordSecond": "motocykl", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "bicicleta", + "wordSecond": "rower", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "metro", + "wordSecond": "metro", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tranvía", + "wordSecond": "tramwaj", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dirección", + "wordSecond": "kierunek", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "izquierda", + "wordSecond": "lewo", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "derecha", + "wordSecond": "prawo", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "recto", + "wordSecond": "prosto", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mapa", + "wordSecond": "mapa", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "calle", + "wordSecond": "ulica", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ciudad", + "wordSecond": "miasto", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "país", + "wordSecond": "kraj", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "frontera", + "wordSecond": "granica", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "aduana", + "wordSecond": "cło", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "visado", + "wordSecond": "wiza", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dinero", + "wordSecond": "pieniądze", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cambio", + "wordSecond": "wymiana", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tarjeta", + "wordSecond": "karta", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "maletero", + "wordSecond": "bagażnik", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "gasolina", + "wordSecond": "benzyna", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "estación de servicio", + "wordSecond": "stacja benzynowa", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "parada", + "wordSecond": "przystanek", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "semáforo", + "wordSecond": "światło", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "señal", + "wordSecond": "znak", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "destino", + "wordSecond": "cel", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "viaje", + "wordSecond": "podróż", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "turista", + "wordSecond": "turysta", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "guía", + "wordSecond": "przewodnik", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "playa", + "wordSecond": "plaża", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "montaña", + "wordSecond": "góra", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "museo", + "wordSecond": "muzeum", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "restaurante", + "wordSecond": "restauracja", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cafetería", + "wordSecond": "kawiarnia", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tienda", + "wordSecond": "sklep", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "souvenir", + "wordSecond": "pamiątka", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cámara", + "wordSecond": "aparat", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "foto", + "wordSecond": "zdjęcie", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "documentos", + "wordSecond": "dokumenty", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "llave", + "wordSecond": "klucz", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "recuerdo", + "wordSecond": "wspomnienie", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "vacaciones", + "wordSecond": "wakacje", + "createdAt": "2026-02-19T14:32:14.977Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_es_pt_A2.json b/output/2026_02_19_travel_transport_es_pt_A2.json new file mode 100644 index 0000000..6a84a39 --- /dev/null +++ b/output/2026_02_19_travel_transport_es_pt_A2.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:30:09.522Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aeropuerto", + "wordSecond": "aeroporto", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "avión", + "wordSecond": "avião", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "billete", + "wordSecond": "bilhete", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "boleto", + "wordSecond": "passagem", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bus", + "wordSecond": "ônibus", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "coche", + "wordSecond": "carro", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "conductor", + "wordSecond": "motorista", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dirección", + "wordSecond": "endereço", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "derecha", + "wordSecond": "direita", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "equipaje", + "wordSecond": "bagagem", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "esquina", + "wordSecond": "esquina", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estación", + "wordSecond": "estação", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estación de autobuses", + "wordSecond": "rodoviária", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estación de tren", + "wordSecond": "estação de trem", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "frente", + "wordSecond": "frente", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hotel", + "wordSecond": "hotel", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ida", + "wordSecond": "ida", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ida y vuelta", + "wordSecond": "ida e volta", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "izquierda", + "wordSecond": "esquerda", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "llegada", + "wordSecond": "chegada", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "maleta", + "wordSecond": "mala", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mapa", + "wordSecond": "mapa", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "metro", + "wordSecond": "metrô", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mochila", + "wordSecond": "mochila", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "motocicleta", + "wordSecond": "motocicleta", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "muelle", + "wordSecond": "cais", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "número", + "wordSecond": "número", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pasajero", + "wordSecond": "passageiro", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pasaporte", + "wordSecond": "passaporte", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pasillo", + "wordSecond": "corredor", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "paseo", + "wordSecond": "passeio", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "paso de peatones", + "wordSecond": "faixa de pedestres", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pista", + "wordSecond": "pista", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "plaza", + "wordSecond": "praça", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "puerta", + "wordSecond": "porta", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "puerta de embarque", + "wordSecond": "portão de embarque", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "puerto", + "wordSecond": "porto", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "recto", + "wordSecond": "reto", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reserva", + "wordSecond": "reserva", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "salida", + "wordSecond": "saída", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "semáforo", + "wordSecond": "semáforo", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "taxi", + "wordSecond": "táxi", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "terminal", + "wordSecond": "terminal", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tiempo", + "wordSecond": "tempo", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ticket", + "wordSecond": "tíquete", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tren", + "wordSecond": "trem", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vacaciones", + "wordSecond": "férias", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vuelo", + "wordSecond": "voo", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "viaje", + "wordSecond": "viagem", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "visa", + "wordSecond": "visto", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "zona", + "wordSecond": "zona", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "calle", + "wordSecond": "rua", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "avenida", + "wordSecond": "avenida", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "autopista", + "wordSecond": "rodovia", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "camino", + "wordSecond": "caminho", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ciudad", + "wordSecond": "cidade", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "país", + "wordSecond": "país", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "frontera", + "wordSecond": "fronteira", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aduana", + "wordSecond": "alfândega", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "control", + "wordSecond": "controle", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "seguridad", + "wordSecond": "segurança", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "asiento", + "wordSecond": "assento", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ventana", + "wordSecond": "janela", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pasillo", + "wordSecond": "corredor", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "conductor", + "wordSecond": "condutor", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "parada", + "wordSecond": "parada", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "destino", + "wordSecond": "destino", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "origen", + "wordSecond": "origem", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hora", + "wordSecond": "hora", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "retraso", + "wordSecond": "atraso", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cancelado", + "wordSecond": "cancelado", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "información", + "wordSecond": "informação", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mostrador", + "wordSecond": "balcão", + "createdAt": "2026-02-19T14:30:09.522Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_es_zh_A2.json b/output/2026_02_19_travel_transport_es_zh_A2.json new file mode 100644 index 0000000..26dfcca --- /dev/null +++ b/output/2026_02_19_travel_transport_es_zh_A2.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:31:38.240Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "aeropuerto", + "wordSecond": "机场 (jīchǎng)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "avión", + "wordSecond": "飞机 (fēijī)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "billete", + "wordSecond": "票 (piào)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pasaporte", + "wordSecond": "护照 (hùzhào)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "maleta", + "wordSecond": "行李箱 (xínglǐxiāng)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "equipaje", + "wordSecond": "行李 (xínglǐ)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "taxi", + "wordSecond": "出租车 (chūzūchē)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "autobús", + "wordSecond": "公共汽车 (gōnggòng qìchē)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tren", + "wordSecond": "火车 (huǒchē)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "estación de tren", + "wordSecond": "火车站 (huǒchēzhàn)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "estación de autobuses", + "wordSecond": "汽车站 (qìchēzhàn)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hotel", + "wordSecond": "酒店 (jiǔdiàn)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "habitación", + "wordSecond": "房间 (fángjiān)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "reserva", + "wordSecond": "预订 (yùdìng)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "llegada", + "wordSecond": "到达 (dàodá)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "salida", + "wordSecond": "出发 (chūfā)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "izquierda", + "wordSecond": "左 (zuǒ)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "derecha", + "wordSecond": "右 (yòu)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "recto", + "wordSecond": "直走 (zhízǒu)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mapa", + "wordSecond": "地图 (dìtú)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "calle", + "wordSecond": "街道 (jiēdào)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "dirección", + "wordSecond": "地址 (dìzhǐ)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "parada", + "wordSecond": "站 (zhàn)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "conductor", + "wordSecond": "司机 (sījī)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pasajero", + "wordSecond": "乘客 (chéngkè)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "vuelo", + "wordSecond": "航班 (hángbān)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "puerta", + "wordSecond": "门 (mén)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mostrador", + "wordSecond": "柜台 (guìtái)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "facturación", + "wordSecond": "办理登机 (bànlǐ dēngjī)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "seguridad", + "wordSecond": "安全 (ānquán)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "control", + "wordSecond": "检查 (jiǎnchá)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sala de espera", + "wordSecond": "等候室 (děnghòushì)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "andén", + "wordSecond": "站台 (zhàntái)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "asiento", + "wordSecond": "座位 (zuòwèi)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ventanilla", + "wordSecond": "窗口 (chuāngkǒu)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "coche", + "wordSecond": "汽车 (qìchē)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "barco", + "wordSecond": "船 (chuán)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "bicicleta", + "wordSecond": "自行车 (zìxíngchē)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "moto", + "wordSecond": "摩托车 (mótuōchē)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "metro", + "wordSecond": "地铁 (dìtiě)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "camión", + "wordSecond": "卡车 (kǎchē)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "furgoneta", + "wordSecond": "面包车 (miànbāochē)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "gasolina", + "wordSecond": "汽油 (qìyóu)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "gasolinera", + "wordSecond": "加油站 (jiāyóuzhàn)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "carretera", + "wordSecond": "公路 (gōnglù)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "semáforo", + "wordSecond": "红绿灯 (hónglǜdēng)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "señal", + "wordSecond": "标志 (biāozhì)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "destino", + "wordSecond": "目的地 (mùdìdì)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "viaje", + "wordSecond": "旅行 (lǚxíng)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "turista", + "wordSecond": "游客 (yóukè)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "guía", + "wordSecond": "导游 (dǎoyóu)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "dinero", + "wordSecond": "钱 (qián)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tarjeta", + "wordSecond": "卡 (kǎ)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cambio", + "wordSecond": "换钱 (huànqián)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "visado", + "wordSecond": "签证 (qiānzhèng)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "aduana", + "wordSecond": "海关 (hǎiguān)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "frontera", + "wordSecond": "边境 (biānjìng)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "país", + "wordSecond": "国家 (guójiā)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ciudad", + "wordSecond": "城市 (chéngshì)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "playa", + "wordSecond": "海滩 (hǎitān)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "montaña", + "wordSecond": "山 (shān)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "museo", + "wordSecond": "博物馆 (bówùguǎn)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "restaurante", + "wordSecond": "餐厅 (cāntīng)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "comida", + "wordSecond": "食物 (shíwù)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "agua", + "wordSecond": "水 (shuǐ)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "baño", + "wordSecond": "卫生间 (wèishēngjiān)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "llave", + "wordSecond": "钥匙 (yàoshi)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ascensor", + "wordSecond": "电梯 (diàntī)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "escalera", + "wordSecond": "楼梯 (lóutī)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "recepción", + "wordSecond": "前台 (qiántái)", + "createdAt": "2026-02-19T14:31:38.240Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_fr_it_A2.json b/output/2026_02_19_travel_transport_fr_it_A2.json new file mode 100644 index 0000000..a7cc64b --- /dev/null +++ b/output/2026_02_19_travel_transport_fr_it_A2.json @@ -0,0 +1,968 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:36:29.152Z", + "metadata": { + "itemCount": 73, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "aéroport", + "wordSecond": "aeroporto", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "avion", + "wordSecond": "aereo", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "train", + "wordSecond": "treno", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "gare", + "wordSecond": "stazione", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bus", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "voiture", + "wordSecond": "macchina", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "taxi", + "wordSecond": "taxi", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vélo", + "wordSecond": "bicicletta", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bateau", + "wordSecond": "nave", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "métro", + "wordSecond": "metropolitana", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ticket", + "wordSecond": "biglietto", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "billet", + "wordSecond": "biglietto", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "passport", + "wordSecond": "passaporto", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "valise", + "wordSecond": "valigia", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "bagage", + "wordSecond": "bagaglio", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sac", + "wordSecond": "borsa", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "hôtel", + "wordSecond": "albergo", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chambre", + "wordSecond": "camera", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "réception", + "wordSecond": "reception", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "clé", + "wordSecond": "chiave", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "entrée", + "wordSecond": "entrata", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sortie", + "wordSecond": "uscita", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "gauche", + "wordSecond": "sinistra", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "droite", + "wordSecond": "destra", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tout droit", + "wordSecond": "sempre dritto", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ici", + "wordSecond": "qui", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "là", + "wordSecond": "là", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "loin", + "wordSecond": "lontano", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "près", + "wordSecond": "vicino", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "carte", + "wordSecond": "mappa", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rue", + "wordSecond": "via", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "place", + "wordSecond": "piazza", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "arrêt", + "wordSecond": "fermata", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "quai", + "wordSecond": "binario", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "départ", + "wordSecond": "partenza", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "arrivée", + "wordSecond": "arrivo", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "retard", + "wordSecond": "ritardo", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "heure", + "wordSecond": "ora", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "minute", + "wordSecond": "minuto", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "aujourd'hui", + "wordSecond": "oggi", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "demain", + "wordSecond": "domani", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "hier", + "wordSecond": "ieri", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "semaine", + "wordSecond": "settimana", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vacances", + "wordSecond": "vacanze", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "voyage", + "wordSecond": "viaggio", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "aller", + "wordSecond": "andare", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "venir", + "wordSecond": "venire", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "partir", + "wordSecond": "partire", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rester", + "wordSecond": "restare", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "visiter", + "wordSecond": "visitare", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "voir", + "wordSecond": "vedere", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "manger", + "wordSecond": "mangiare", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "boire", + "wordSecond": "bere", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dormir", + "wordSecond": "dormire", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "argent", + "wordSecond": "soldi", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "euro", + "wordSecond": "euro", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "banque", + "wordSecond": "banca", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "passeport", + "wordSecond": "passaporto", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "douane", + "wordSecond": "dogana", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "contrôle", + "wordSecond": "controllo", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sécurité", + "wordSecond": "sicurezza", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "porte", + "wordSecond": "porta", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fenêtre", + "wordSecond": "finestra", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "siège", + "wordSecond": "posto", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fenêtre", + "wordSecond": "finestra", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "conducteur", + "wordSecond": "autista", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pilote", + "wordSecond": "pilota", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chauffeur", + "wordSecond": "autista", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mer", + "wordSecond": "mare", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "montagne", + "wordSecond": "montagna", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ville", + "wordSecond": "città", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "campagne", + "wordSecond": "campagna", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "plage", + "wordSecond": "spiaggia", + "createdAt": "2026-02-19T14:36:29.152Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_fr_ja_A2.json b/output/2026_02_19_travel_transport_fr_ja_A2.json new file mode 100644 index 0000000..12cb3f7 --- /dev/null +++ b/output/2026_02_19_travel_transport_fr_ja_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:36:52.146Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "l'aéroport", + "wordSecond": "空港 (くうこう, kūkō)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "l'avion", + "wordSecond": "飛行機 (ひこうき, hikōki)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le billet", + "wordSecond": "切符 (きっぷ, kippu)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le passeport", + "wordSecond": "パスポート (pasupōto)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "la valise", + "wordSecond": "スーツケース (sūtsukēsu)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "l'hôtel", + "wordSecond": "ホテル (hoteru)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "la gare", + "wordSecond": "駅 (えき, eki)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le train", + "wordSecond": "電車 (でんしゃ, densha)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le bus", + "wordSecond": "バス (basu)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "la voiture", + "wordSecond": "車 (くるま, kuruma)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le taxi", + "wordSecond": "タクシー (takushī)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le bateau", + "wordSecond": "船 (ふね, fune)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "la moto", + "wordSecond": "バイク (baiku)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le vélo", + "wordSecond": "自転車 (じてんしゃ, jitensha)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "la carte", + "wordSecond": "地図 (ちず, chizu)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "à gauche", + "wordSecond": "左 (ひだり, hidari)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "à droite", + "wordSecond": "右 (みぎ, migi)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tout droit", + "wordSecond": "まっすぐ (massugu)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ici", + "wordSecond": "ここ (koko)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "là", + "wordSecond": "そこ (soko)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "loin", + "wordSecond": "遠い (とおい, tōi)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "près", + "wordSecond": "近い (ちかい, chikai)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "l'arrivée", + "wordSecond": "到着 (とうちゃく, tōchaku)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le départ", + "wordSecond": "出発 (しゅっぱつ, shuppatsu)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le quai", + "wordSecond": "ホーム (hōmu)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "la porte", + "wordSecond": "ドア (doa)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "la fenêtre", + "wordSecond": "窓 (まど, mado)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le siège", + "wordSecond": "席 (せき, seki)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le sac", + "wordSecond": "かばん (kaban)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le sac à dos", + "wordSecond": "リュックサック (ryukkusakku)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le portefeuille", + "wordSecond": "財布 (さいふ, saifu)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "l'argent", + "wordSecond": "お金 (おかね, okane)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le temps", + "wordSecond": "時間 (じかん, jikan)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "l'heure", + "wordSecond": "時 (じ, ji)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "la date", + "wordSecond": "日付 (ひづけ, hizuke)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "aujourd'hui", + "wordSecond": "今日 (きょう, kyō)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "demain", + "wordSecond": "明日 (あした, ashita)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "hier", + "wordSecond": "昨日 (きのう, kinō)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "la semaine", + "wordSecond": "週 (しゅう, shū)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le mois", + "wordSecond": "月 (つき, tsuki)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "l'année", + "wordSecond": "年 (とし, toshi)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le matin", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "l'après-midi", + "wordSecond": "午後 (ごご, gogo)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le soir", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "la nuit", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le petit déjeuner", + "wordSecond": "朝ごはん (あさごはん, asagohan)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le déjeuner", + "wordSecond": "昼ごはん (ひるごはん, hirugohan)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le dîner", + "wordSecond": "晩ごはん (ばんごはん, bangohan)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "l'eau", + "wordSecond": "水 (みず, mizu)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le café", + "wordSecond": "コーヒー (kōhī)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le thé", + "wordSecond": "お茶 (おちゃ, ocha)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le repas", + "wordSecond": "食事 (しょくじ, shokuji)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le restaurant", + "wordSecond": "レストラン (resutoran)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "la chambre", + "wordSecond": "部屋 (へや, heya)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le lit", + "wordSecond": "ベッド (beddo)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "la clé", + "wordSecond": "鍵 (かぎ, kagi)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "la douche", + "wordSecond": "シャワー (shawā)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "les toilettes", + "wordSecond": "トイレ (toire)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "le prix", + "wordSecond": "値段 (ねだん, nedan)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cher", + "wordSecond": "高い (たかい, takai)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "bon marché", + "wordSecond": "安い (やすい, yasui)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "grand", + "wordSecond": "大きい (おおきい, ōkii)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "petit", + "wordSecond": "小さい (ちいさい, chīsai)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "nouveau", + "wordSecond": "新しい (あたらしい, atarashī)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "vieux", + "wordSecond": "古い (ふるい, furui)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "beau", + "wordSecond": "美しい (うつくしい, utsukushī)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mauvais", + "wordSecond": "悪い (わるい, warui)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "facile", + "wordSecond": "簡単 (かんたん, kantan)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "difficile", + "wordSecond": "難しい (むずかしい, muzukashī)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rapide", + "wordSecond": "速い (はやい, hayai)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "lent", + "wordSecond": "遅い (おそい, osoi)", + "createdAt": "2026-02-19T14:36:52.146Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_fr_ko_A2.json b/output/2026_02_19_travel_transport_fr_ko_A2.json new file mode 100644 index 0000000..6b99f66 --- /dev/null +++ b/output/2026_02_19_travel_transport_fr_ko_A2.json @@ -0,0 +1,1033 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:37:36.713Z", + "metadata": { + "itemCount": 78, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "aéroport", + "wordSecond": "공항 (gonghang)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "avion", + "wordSecond": "비행기 (bihaenggi)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "train", + "wordSecond": "기차 (gicha)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "gare", + "wordSecond": "기차역 (gichayeok)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "bus", + "wordSecond": "버스 (beoseu)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "station de bus", + "wordSecond": "버스 정류장 (beoseu jeongnyujang)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "voiture", + "wordSecond": "자동차 (jadongcha)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "taxi", + "wordSecond": "택시 (taeksi)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "vélo", + "wordSecond": "자전거 (jajeongeo)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "métro", + "wordSecond": "지하철 (jihacheol)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "bateau", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "hôtel", + "wordSecond": "호텔 (hotel)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chambre", + "wordSecond": "방 (bang)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "réception", + "wordSecond": "리셉션 (risepsyeon)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "clé", + "wordSecond": "열쇠 (yeolsoe)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "ascenseur", + "wordSecond": "엘리베이터 (ellibeiteo)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "escalier", + "wordSecond": "계단 (gyedan)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "passport", + "wordSecond": "여권 (yeogwon)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "billet", + "wordSecond": "표 (pyo)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "valise", + "wordSecond": "여행 가방 (yeohaeng gabang)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sac à dos", + "wordSecond": "배낭 (baenang)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "carte", + "wordSecond": "지도 (jido)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "gauche", + "wordSecond": "왼쪽 (oenjjok)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "droite", + "wordSecond": "오른쪽 (oreunjjok)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tout droit", + "wordSecond": "직진 (jikjin)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tourner", + "wordSecond": "돌다 (dolda)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "arrêt", + "wordSecond": "정류장 (jeongnyujang)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "arrivée", + "wordSecond": "도착 (dochak)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "départ", + "wordSecond": "출발 (chulbal)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "retard", + "wordSecond": "지연 (jiyeon)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "heure", + "wordSecond": "시간 (sigan)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "porte", + "wordSecond": "문 (mun)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "fenêtre", + "wordSecond": "창문 (changmun)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "siège", + "wordSecond": "좌석 (jwaseok)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "conducteur", + "wordSecond": "운전사 (unjeonsa)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pilote", + "wordSecond": "조종사 (jojongsa)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "hôtesse", + "wordSecond": "승무원 (seungmuwon)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "bagage", + "wordSecond": "짐 (jim)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "douane", + "wordSecond": "세관 (segwan)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "contrôle", + "wordSecond": "검사 (geomsa)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "entrée", + "wordSecond": "입구 (ipgu)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sortie", + "wordSecond": "출구 (chulgu)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "escalator", + "wordSecond": "에스컬레이터 (eseukeolleiteo)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "information", + "wordSecond": "안내소 (annaeso)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "guichet", + "wordSecond": "매표소 (maepyoso)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "monnaie", + "wordSecond": "환전 (hwanjeon)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "argent", + "wordSecond": "돈 (don)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "carte de crédit", + "wordSecond": "신용카드 (sinyongkadeu)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "restaurant", + "wordSecond": "레스토랑 (reseutorang)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "café", + "wordSecond": "카페 (kape)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "toilettes", + "wordSecond": "화장실 (hwajangsil)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "plage", + "wordSecond": "해변 (haebyeon)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "montagne", + "wordSecond": "산 (san)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "ville", + "wordSecond": "도시 (dosi)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "campagne", + "wordSecond": "시골 (sigol)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "vacances", + "wordSecond": "휴가 (hyuga)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "voyage", + "wordSecond": "여행 (yeohaeng)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "visite", + "wordSecond": "방문 (bangmun)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "touriste", + "wordSecond": "관광객 (gwangwanggaek)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "guide", + "wordSecond": "가이드 (gaideu)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "carte postale", + "wordSecond": "엽서 (yeopseo)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "appareil photo", + "wordSecond": "카메라 (kamera)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "passeport", + "wordSecond": "여권 (yeogwon)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "visa", + "wordSecond": "비자 (bija)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "adresse", + "wordSecond": "주소 (juso)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "téléphone", + "wordSecond": "전화 (jeonhwa)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "urgence", + "wordSecond": "응급 (eunggeup)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "médecin", + "wordSecond": "의사 (uisa)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pharmacie", + "wordSecond": "약국 (yakguk)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "supermarché", + "wordSecond": "슈퍼마켓 (syupeomaket)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "achats", + "wordSecond": "쇼핑 (syoping)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "souvenir", + "wordSecond": "기념품 (ginyeompum)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pluie", + "wordSecond": "비 (bi)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "soleil", + "wordSecond": "해 (hae)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chaud", + "wordSecond": "더운 (deoun)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "froid", + "wordSecond": "추운 (chuun)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "nuit", + "wordSecond": "밤 (bam)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "jour", + "wordSecond": "낮 (nat)", + "createdAt": "2026-02-19T14:37:36.713Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_fr_pl_A2.json b/output/2026_02_19_travel_transport_fr_pl_A2.json new file mode 100644 index 0000000..bb04c10 --- /dev/null +++ b/output/2026_02_19_travel_transport_fr_pl_A2.json @@ -0,0 +1,1033 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:37:52.797Z", + "metadata": { + "itemCount": 78, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'aéroport", + "wordSecond": "lotnisko", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'avion", + "wordSecond": "samolot", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le billet", + "wordSecond": "bilet", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le passeport", + "wordSecond": "paszport", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la valise", + "wordSecond": "walizka", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le sac", + "wordSecond": "torba", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le taxi", + "wordSecond": "taksówka", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la voiture", + "wordSecond": "samochód", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le bus", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le train", + "wordSecond": "pociąg", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la gare", + "wordSecond": "dworzec", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le quai", + "wordSecond": "peron", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le bateau", + "wordSecond": "statek", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le port", + "wordSecond": "port", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'hôtel", + "wordSecond": "hotel", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la chambre", + "wordSecond": "pokój", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la clé", + "wordSecond": "klucz", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la réception", + "wordSecond": "recepcja", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la réservation", + "wordSecond": "rezerwacja", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'arrivée", + "wordSecond": "przyjazd", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le départ", + "wordSecond": "odjazd", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'heure", + "wordSecond": "godzina", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le retard", + "wordSecond": "opóźnienie", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la carte", + "wordSecond": "mapa", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la direction", + "wordSecond": "kierunek", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "à gauche", + "wordSecond": "w lewo", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "à droite", + "wordSecond": "w prawo", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "tout droit", + "wordSecond": "prosto", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "ici", + "wordSecond": "tutaj", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "là", + "wordSecond": "tam", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "près", + "wordSecond": "blisko", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "loin", + "wordSecond": "daleko", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'entrée", + "wordSecond": "wejście", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la sortie", + "wordSecond": "wyjście", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "les toilettes", + "wordSecond": "toaleta", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'ascenseur", + "wordSecond": "winda", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'escalier", + "wordSecond": "schody", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la porte", + "wordSecond": "drzwi", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la fenêtre", + "wordSecond": "okno", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le comptoir", + "wordSecond": "lada", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la douane", + "wordSecond": "cło", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le contrôle", + "wordSecond": "kontrola", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la sécurité", + "wordSecond": "bezpieczeństwo", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la porte d'embarquement", + "wordSecond": "brama wyjściowa", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le vol", + "wordSecond": "lot", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le pilote", + "wordSecond": "pilot", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'hôtesse de l'air", + "wordSecond": "stewardesa", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le steward", + "wordSecond": "steward", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le siège", + "wordSecond": "miejsce", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la ceinture", + "wordSecond": "pas", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le bagage", + "wordSecond": "bagaż", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le chariot", + "wordSecond": "wózek", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'argent", + "wordSecond": "pieniądze", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'euro", + "wordSecond": "euro", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le zloty", + "wordSecond": "złoty", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le guichet", + "wordSecond": "kasa", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'information", + "wordSecond": "informacja", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'arrêt de bus", + "wordSecond": "przystanek autobusowy", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le métro", + "wordSecond": "metro", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le tramway", + "wordSecond": "tramwaj", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le vélo", + "wordSecond": "rower", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la moto", + "wordSecond": "motocykl", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le camion", + "wordSecond": "ciężarówka", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la route", + "wordSecond": "droga", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la rue", + "wordSecond": "ulica", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la place", + "wordSecond": "plac", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le pont", + "wordSecond": "most", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le feu", + "wordSecond": "światło", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le parking", + "wordSecond": "parking", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'essence", + "wordSecond": "benzyna", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la station-service", + "wordSecond": "stacja benzynowa", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le voyage", + "wordSecond": "podróż", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "les vacances", + "wordSecond": "wakacje", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le touriste", + "wordSecond": "turysta", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la plage", + "wordSecond": "plaża", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la montagne", + "wordSecond": "góra", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la ville", + "wordSecond": "miasto", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la campagne", + "wordSecond": "wieś", + "createdAt": "2026-02-19T14:37:52.797Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_fr_zh_A2.json b/output/2026_02_19_travel_transport_fr_zh_A2.json new file mode 100644 index 0000000..259bff5 --- /dev/null +++ b/output/2026_02_19_travel_transport_fr_zh_A2.json @@ -0,0 +1,1046 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:37:14.636Z", + "metadata": { + "itemCount": 79, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "l'aéroport", + "wordSecond": "机场 (jīchǎng)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le train", + "wordSecond": "火车 (huǒchē)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la gare", + "wordSecond": "火车站 (huǒchēzhàn)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la station de bus", + "wordSecond": "公交车站 (gōngjiāochēzhàn)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "l'hôtel", + "wordSecond": "酒店 (jiǔdiàn)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la chambre", + "wordSecond": "房间 (fángjiān)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la clé", + "wordSecond": "钥匙 (yàoshi)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le passeport", + "wordSecond": "护照 (hùzhào)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le billet", + "wordSecond": "票 (piào)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la valise", + "wordSecond": "行李箱 (xínglǐxiāng)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le sac", + "wordSecond": "包 (bāo)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la carte", + "wordSecond": "地图 (dìtú)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "gauche", + "wordSecond": "左 (zuǒ)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "droite", + "wordSecond": "右 (yòu)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tout droit", + "wordSecond": "直走 (zhízǒu)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ici", + "wordSecond": "这里 (zhèlǐ)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "là", + "wordSecond": "那里 (nàlǐ)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la voiture", + "wordSecond": "汽车 (qìchē)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le bus", + "wordSecond": "公共汽车 (gōnggòng qìchē)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "l'avion", + "wordSecond": "飞机 (fēijī)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le bateau", + "wordSecond": "船 (chuán)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le taxi", + "wordSecond": "出租车 (chūzūchē)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le métro", + "wordSecond": "地铁 (dìtiě)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le vélo", + "wordSecond": "自行车 (zìxíngchē)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la moto", + "wordSecond": "摩托车 (mótuōchē)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "marcher", + "wordSecond": "走路 (zǒulù)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "arriver", + "wordSecond": "到达 (dàodá)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "partir", + "wordSecond": "出发 (chūfā)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "attendre", + "wordSecond": "等 (děng)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "monter", + "wordSecond": "上 (shàng)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "descendre", + "wordSecond": "下 (xià)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "l'arrêt", + "wordSecond": "站 (zhàn)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le quai", + "wordSecond": "站台 (zhàntái)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le départ", + "wordSecond": "出发 (chūfā)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "l'arrivée", + "wordSecond": "到达 (dàodá)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le contrôle", + "wordSecond": "检查 (jiǎnchá)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la douane", + "wordSecond": "海关 (hǎiguān)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la sécurité", + "wordSecond": "安全 (ānquán)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "l'enregistrement", + "wordSecond": "办理登机 (bànlǐ dēngjī)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la porte", + "wordSecond": "登机口 (dēngjīkǒu)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le vol", + "wordSecond": "航班 (hángbān)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le retard", + "wordSecond": "晚点 (wǎndiǎn)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "l'heure", + "wordSecond": "时间 (shíjiān)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le matin", + "wordSecond": "早上 (zǎoshang)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le soir", + "wordSecond": "晚上 (wǎnshang)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "aujourd'hui", + "wordSecond": "今天 (jīntiān)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "demain", + "wordSecond": "明天 (míngtiān)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "hier", + "wordSecond": "昨天 (zuótiān)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la semaine", + "wordSecond": "星期 (xīngqī)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le mois", + "wordSecond": "月 (yuè)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "l'année", + "wordSecond": "年 (nián)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la réservation", + "wordSecond": "预订 (yùdìng)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "l'adresse", + "wordSecond": "地址 (dìzhǐ)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le nom", + "wordSecond": "名字 (míngzi)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le prénom", + "wordSecond": "名字 (míngzi)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le pays", + "wordSecond": "国家 (guójiā)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la ville", + "wordSecond": "城市 (chéngshì)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la rue", + "wordSecond": "街 (jiē)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la place", + "wordSecond": "广场 (guǎngchǎng)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le pont", + "wordSecond": "桥 (qiáo)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la plage", + "wordSecond": "海滩 (hǎitān)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la montagne", + "wordSecond": "山 (shān)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la forêt", + "wordSecond": "森林 (sēnlín)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le lac", + "wordSecond": "湖 (hú)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "la rivière", + "wordSecond": "河 (hé)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le parc", + "wordSecond": "公园 (gōngyuán)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le musée", + "wordSecond": "博物馆 (bówùguǎn)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le restaurant", + "wordSecond": "餐厅 (cāntīng)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le café", + "wordSecond": "咖啡馆 (kāfēiguǎn)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "le magasin", + "wordSecond": "商店 (shāngdiàn)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "l'argent", + "wordSecond": "钱 (qián)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cher", + "wordSecond": "贵 (guì)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "bon marché", + "wordSecond": "便宜 (piányi)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "grand", + "wordSecond": "大 (dà)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "petit", + "wordSecond": "小 (xiǎo)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "nouveau", + "wordSecond": "新 (xīn)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vieux", + "wordSecond": "旧 (jiù)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "beau", + "wordSecond": "漂亮 (piàoliang)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mauvais", + "wordSecond": "坏 (huài)", + "createdAt": "2026-02-19T14:37:14.636Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_it_ja_A2.json b/output/2026_02_19_travel_transport_it_ja_A2.json new file mode 100644 index 0000000..2547c35 --- /dev/null +++ b/output/2026_02_19_travel_transport_it_ja_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:38:19.132Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "aeroporto", + "wordSecond": "空港 (くうこう, kūkō)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "stazione", + "wordSecond": "駅 (えき, eki)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "treno", + "wordSecond": "電車 (でんしゃ, densha)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "autobus", + "wordSecond": "バス (ばす, basu)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "macchina", + "wordSecond": "車 (くるま, kuruma)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "aereo", + "wordSecond": "飛行機 (ひこうき, hikōki)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "nave", + "wordSecond": "船 (ふね, fune)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "bicicletta", + "wordSecond": "自転車 (じてんしゃ, jitensha)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "taxi", + "wordSecond": "タクシー (たくしー, takushī)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "biglietto", + "wordSecond": "切符 (きっぷ, kippu)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "passaporto", + "wordSecond": "パスポート (ぱすぽーと, pasupōto)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "valigia", + "wordSecond": "スーツケース (すーつけーす, sūtsukēsu)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "hotel", + "wordSecond": "ホテル (ほてる, hoteru)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "destra", + "wordSecond": "右 (みぎ, migi)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sinistra", + "wordSecond": "左 (ひだり, hidari)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dritto", + "wordSecond": "まっすぐ (まっすぐ, massugu)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "partenza", + "wordSecond": "出発 (しゅっぱつ, shuppatsu)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "arrivo", + "wordSecond": "到着 (とうちゃく, tōchaku)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "binario", + "wordSecond": "ホーム (ほーむ, hōmu)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "porta", + "wordSecond": "ドア (どあ, doa)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "finestra", + "wordSecond": "窓 (まど, mado)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sedile", + "wordSecond": "席 (せき, seki)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "guidare", + "wordSecond": "運転する (うんてんする, unten suru)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "andare", + "wordSecond": "行く (いく, iku)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "venire", + "wordSecond": "来る (くる, kuru)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "prendere", + "wordSecond": "取る (とる, toru)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "comprare", + "wordSecond": "買う (かう, kau)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "vendere", + "wordSecond": "売る (うる, uru)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "aspettare", + "wordSecond": "待つ (まつ, matsu)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "salire", + "wordSecond": "乗る (のる, noru)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "scendere", + "wordSecond": "降りる (おりる, oriru)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fermata", + "wordSecond": "停留所 (ていりゅうじょ, teiryūjo)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "orario", + "wordSecond": "時刻表 (じこくひょう, jikokuhyō)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ritardo", + "wordSecond": "遅れ (おくれ, okure)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "prenotazione", + "wordSecond": "予約 (よやく, yoyaku)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "camera", + "wordSecond": "部屋 (へや, heya)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "chiave", + "wordSecond": "鍵 (かぎ, kagi)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "reception", + "wordSecond": "フロント (ふろんと, furonto)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "bagaglio", + "wordSecond": "荷物 (にもつ, nimotsu)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "zaino", + "wordSecond": "リュックサック (りゅっくさっく, ryukkusakku)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "controllo", + "wordSecond": "検査 (けんさ, kensa)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sicurezza", + "wordSecond": "安全 (あんぜん, anzen)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dogana", + "wordSecond": "税関 (ぜいかん, zeikan)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "uscita", + "wordSecond": "出口 (でぐち, deguchi)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "entrata", + "wordSecond": "入口 (いりぐち, iriguchi)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ascensore", + "wordSecond": "エレベーター (えれべーたー, erebētā)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "scala", + "wordSecond": "階段 (かいだん, kaidan)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mappa", + "wordSecond": "地図 (ちず, chizu)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "strada", + "wordSecond": "道 (みち, michi)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "segno", + "wordSecond": "標識 (ひょうしき, hyōshiki)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "semaforo", + "wordSecond": "信号 (しんごう, shingō)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "incrocio", + "wordSecond": "交差点 (こうさてん, kōsaten)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ponte", + "wordSecond": "橋 (はし, hashi)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tunnel", + "wordSecond": "トンネル (とんねる, tonneru)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "autostrada", + "wordSecond": "高速道路 (こうそくどうろ, kōsokudōro)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "benzina", + "wordSecond": "ガソリン (がそりん, gasorin)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "stazione di servizio", + "wordSecond": "ガソリンスタンド (がそりんすたんど, gasorinsutando)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "parcheggio", + "wordSecond": "駐車場 (ちゅうしゃじょう, chūshajō)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "autista", + "wordSecond": "運転手 (うんてんしゅ, untenshu)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "passeggero", + "wordSecond": "乗客 (じょうきゃく, jōkyaku)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "conducente", + "wordSecond": "運転者 (うんてんしゃ, untensha)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "capitano", + "wordSecond": "船長 (せんちょう, senchō)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pilota", + "wordSecond": "パイロット (ぱいろっと, pairotto)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "steward", + "wordSecond": "スチュワード (すちゅわーど, suchuwādo)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "viaggio", + "wordSecond": "旅行 (りょこう, ryokō)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "vacanza", + "wordSecond": "休暇 (きゅうか, kyūka)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "gita", + "wordSecond": "遠足 (えんそく, ensoku)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "turista", + "wordSecond": "観光客 (かんこうきゃく, kankōkyaku)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "guida", + "wordSecond": "ガイド (がいど, gaido)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "città", + "wordSecond": "市 (し, shi)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "paese", + "wordSecond": "国 (くに, kuni)", + "createdAt": "2026-02-19T14:38:19.132Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_it_ko_A2.json b/output/2026_02_19_travel_transport_it_ko_A2.json new file mode 100644 index 0000000..bee2b95 --- /dev/null +++ b/output/2026_02_19_travel_transport_it_ko_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:38:59.335Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "aeroporto", + "wordSecond": "공항 (gonghang)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "stazione", + "wordSecond": "역 (yeok)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "treno", + "wordSecond": "기차 (gicha)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "autobus", + "wordSecond": "버스 (beoseu)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "macchina", + "wordSecond": "자동차 (jadongcha)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "aereo", + "wordSecond": "비행기 (bihaenggi)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nave", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bicicletta", + "wordSecond": "자전거 (jajeongeo)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "taxi", + "wordSecond": "택시 (taeksi)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "metro", + "wordSecond": "지하철 (jihacheol)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "biglietto", + "wordSecond": "표 (pyo)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "passaporto", + "wordSecond": "여권 (yeogwon)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "valigia", + "wordSecond": "여행 가방 (yeohaeng gabang)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bagaglio", + "wordSecond": "짐 (jim)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "hotel", + "wordSecond": "호텔 (hotel)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "camera", + "wordSecond": "방 (bang)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ristorante", + "wordSecond": "식당 (sikdang)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ristorante", + "wordSecond": "레스토랑 (reseutorang)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "caffè", + "wordSecond": "카페 (kape)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "banco", + "wordSecond": "카운터 (kaunteo)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "uscita", + "wordSecond": "출구 (chulgu)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "entrata", + "wordSecond": "입구 (ipgu)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "destra", + "wordSecond": "오른쪽 (oreunjjok)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sinistra", + "wordSecond": "왼쪽 (oenjjok)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dritto", + "wordSecond": "직진 (jikjin)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "davanti", + "wordSecond": "앞 (ap)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dietro", + "wordSecond": "뒤 (dwi)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "vicino", + "wordSecond": "가까이 (gakkai)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lontano", + "wordSecond": "멀리 (meolli)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mappa", + "wordSecond": "지도 (jido)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "orario", + "wordSecond": "시간표 (sigampyo)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "partenza", + "wordSecond": "출발 (chulbal)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "arrivo", + "wordSecond": "도착 (dochak)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ritardo", + "wordSecond": "지연 (jiyeon)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "binario", + "wordSecond": "플랫폼 (peullaetpom)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "binario", + "wordSecond": "승강장 (seunggangjang)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "controllo", + "wordSecond": "검사 (geomsa)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sicurezza", + "wordSecond": "보안 (boan)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dogana", + "wordSecond": "세관 (segwan)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cambio", + "wordSecond": "환전 (hwanjeon)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "denaro", + "wordSecond": "돈 (don)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "carta", + "wordSecond": "카드 (kadeu)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "prenotazione", + "wordSecond": "예약 (yeyak)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "prenotare", + "wordSecond": "예약하다 (yeyakhada)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "comprare", + "wordSecond": "사다 (sada)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pagare", + "wordSecond": "지불하다 (jibulhada)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "chiedere", + "wordSecond": "묻다 (mutda)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "aiuto", + "wordSecond": "도움 (doum)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bagno", + "wordSecond": "화장실 (hwajangsil)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "acqua", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cibo", + "wordSecond": "음식 (eumsik)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "colazione", + "wordSecond": "아침 식사 (achim siksa)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pranzo", + "wordSecond": "점심 식사 (jeomsim siksa)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cena", + "wordSecond": "저녁 식사 (jeonyeok siksa)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tassa", + "wordSecond": "세금 (segeum)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "prezzo", + "wordSecond": "가격 (gagyeok)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "caro", + "wordSecond": "비싼 (bissan)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "economico", + "wordSecond": "저렴한 (jeoryeomhan)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "veloce", + "wordSecond": "빠른 (ppareun)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lento", + "wordSecond": "느린 (neurin)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "grande", + "wordSecond": "큰 (keun)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "piccolo", + "wordSecond": "작은 (jageun)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pieno", + "wordSecond": "가득 찬 (gadeuk chan)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "vuoto", + "wordSecond": "빈 (bin)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pulito", + "wordSecond": "깨끗한 (kkaekkeuthan)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sporco", + "wordSecond": "더러운 (deoreoun)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "caldo", + "wordSecond": "따뜻한 (ttatteuthan)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "freddo", + "wordSecond": "추운 (chuun)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nuovo", + "wordSecond": "새로운 (saeroun)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "vecchio", + "wordSecond": "오래된 (oraedoen)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "viaggio", + "wordSecond": "여행 (yeohaeng)", + "createdAt": "2026-02-19T14:38:59.335Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_it_pl_A2.json b/output/2026_02_19_travel_transport_it_pl_A2.json new file mode 100644 index 0000000..67b2cb9 --- /dev/null +++ b/output/2026_02_19_travel_transport_it_pl_A2.json @@ -0,0 +1,1059 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:39:14.927Z", + "metadata": { + "itemCount": 80, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "aeroporto", + "wordSecond": "lotnisko", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "stazione", + "wordSecond": "stacja", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "treno", + "wordSecond": "pociąg", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "autobus", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "biglietto", + "wordSecond": "bilet", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "passaporto", + "wordSecond": "paszport", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "valigia", + "wordSecond": "walizka", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "macchina", + "wordSecond": "samochód", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "nave", + "wordSecond": "statek", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "aereo", + "wordSecond": "samolot", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "taxi", + "wordSecond": "taksówka", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "barca", + "wordSecond": "łódź", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "moto", + "wordSecond": "motocykl", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "bicicletta", + "wordSecond": "rower", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "destra", + "wordSecond": "prawo", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sinistra", + "wordSecond": "lewo", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dritto", + "wordSecond": "prosto", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "hotel", + "wordSecond": "hotel", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "camera", + "wordSecond": "pokój", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ristorante", + "wordSecond": "restauracja", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "caffè", + "wordSecond": "kawiarnia", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "banco", + "wordSecond": "lada", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "orario", + "wordSecond": "rozklad", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "partenza", + "wordSecond": "odjazd", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "arrivo", + "wordSecond": "przyjazd", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "binario", + "wordSecond": "peron", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "porta", + "wordSecond": "brama", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "uscita", + "wordSecond": "wyjście", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "entrata", + "wordSecond": "wejście", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "bagaglio", + "wordSecond": "bagaż", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "zaino", + "wordSecond": "plecak", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "passeggero", + "wordSecond": "pasażer", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "autista", + "wordSecond": "kierowca", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pilota", + "wordSecond": "pilot", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "capitano", + "wordSecond": "kapitan", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "strada", + "wordSecond": "droga", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "via", + "wordSecond": "ulica", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "piazza", + "wordSecond": "plac", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mappa", + "wordSecond": "mapa", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "città", + "wordSecond": "miasto", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "paese", + "wordSecond": "kraj", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "confine", + "wordSecond": "granica", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dogana", + "wordSecond": "cło", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "visa", + "wordSecond": "wiza", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "controllo", + "wordSecond": "kontrola", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sicurezza", + "wordSecond": "bezpieczeństwo", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sala", + "wordSecond": "hala", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "attesa", + "wordSecond": "poczekalnia", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "informazioni", + "wordSecond": "informacja", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "prenotazione", + "wordSecond": "rezerwacja", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "carta", + "wordSecond": "karta", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "denaro", + "wordSecond": "pieniądze", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cambio", + "wordSecond": "wymiana", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "viaggio", + "wordSecond": "podróż", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vacanza", + "wordSecond": "wakacje", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gita", + "wordSecond": "wycieczka", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "spiaggia", + "wordSecond": "plaża", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "montagna", + "wordSecond": "góra", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lago", + "wordSecond": "jezioro", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mare", + "wordSecond": "morze", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sole", + "wordSecond": "słońce", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pioggia", + "wordSecond": "deszcz", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "neve", + "wordSecond": "śnieg", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vento", + "wordSecond": "wiatr", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "caldo", + "wordSecond": "gorąco", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "freddo", + "wordSecond": "zimno", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "veloce", + "wordSecond": "szybko", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lento", + "wordSecond": "wolno", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vicino", + "wordSecond": "blisko", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lontano", + "wordSecond": "daleko", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "grande", + "wordSecond": "duży", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "piccolo", + "wordSecond": "mały", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pesante", + "wordSecond": "ciężki", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "leggero", + "wordSecond": "lekki", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "aperto", + "wordSecond": "otwarty", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "chiuso", + "wordSecond": "zamknięty", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pieno", + "wordSecond": "pełny", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vuoto", + "wordSecond": "pusty", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "facile", + "wordSecond": "łatwy", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "difficile", + "wordSecond": "trudny", + "createdAt": "2026-02-19T14:39:14.927Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_it_zh_A2.json b/output/2026_02_19_travel_transport_it_zh_A2.json new file mode 100644 index 0000000..b2645af --- /dev/null +++ b/output/2026_02_19_travel_transport_it_zh_A2.json @@ -0,0 +1,942 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:38:38.947Z", + "metadata": { + "itemCount": 71, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "aeroporto", + "wordSecond": "机场 (jīchǎng)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "stazione", + "wordSecond": "车站 (chēzhàn)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "stazione ferroviaria", + "wordSecond": "火车站 (huǒchēzhàn)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "autobus", + "wordSecond": "公共汽车 (gōnggòng qìchē)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "treno", + "wordSecond": "火车 (huǒchē)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "aereo", + "wordSecond": "飞机 (fēijī)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "macchina", + "wordSecond": "汽车 (qìchē)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "taxi", + "wordSecond": "出租车 (chūzūchē)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "nave", + "wordSecond": "船 (chuán)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "bicicletta", + "wordSecond": "自行车 (zìxíngchē)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "moto", + "wordSecond": "摩托车 (mótuōchē)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "metro", + "wordSecond": "地铁 (dìtiě)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "biglietto", + "wordSecond": "票 (piào)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "passaporto", + "wordSecond": "护照 (hùzhào)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "valigia", + "wordSecond": "行李箱 (xínglǐxiāng)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "bagaglio", + "wordSecond": "行李 (xínglǐ)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "zaino", + "wordSecond": "背包 (bēibāo)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "hotel", + "wordSecond": "酒店 (jiǔdiàn)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "camera", + "wordSecond": "房间 (fángjiān)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "chiave", + "wordSecond": "钥匙 (yàoshi)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "reception", + "wordSecond": "前台 (qiántái)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "destra", + "wordSecond": "右 (yòu)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sinistra", + "wordSecond": "左 (zuǒ)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dritto", + "wordSecond": "直走 (zhízǒu)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "davanti", + "wordSecond": "前面 (qiánmiàn)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dietro", + "wordSecond": "后面 (hòumiàn)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "vicino", + "wordSecond": "近 (jìn)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lontano", + "wordSecond": "远 (yuǎn)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "qui", + "wordSecond": "这里 (zhèlǐ)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "là", + "wordSecond": "那里 (nàlǐ)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mappa", + "wordSecond": "地图 (dìtú)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "orario", + "wordSecond": "时间表 (shíjiānbiǎo)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "partenza", + "wordSecond": "出发 (chūfā)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "arrivo", + "wordSecond": "到达 (dàodá)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ritardo", + "wordSecond": "晚点 (wǎndiǎn)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "binario", + "wordSecond": "站台 (zhàntái)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "uscita", + "wordSecond": "出口 (chūkǒu)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "entrata", + "wordSecond": "入口 (rùkǒu)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "controllo", + "wordSecond": "检查 (jiǎnchá)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dogana", + "wordSecond": "海关 (hǎiguān)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "volo", + "wordSecond": "航班 (hángbān)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "prenotazione", + "wordSecond": "预订 (yùdìng)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "prenotare", + "wordSecond": "预订 (yùdìng)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "viaggio", + "wordSecond": "旅行 (lǚxíng)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "turista", + "wordSecond": "游客 (yóukè)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "guida", + "wordSecond": "导游 (dǎoyóu)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "città", + "wordSecond": "城市 (chéngshì)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "paese", + "wordSecond": "国家 (guójiā)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "strada", + "wordSecond": "路 (lù)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "via", + "wordSecond": "街道 (jiēdào)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "piazza", + "wordSecond": "广场 (guǎngchǎng)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fermata", + "wordSecond": "站 (zhàn)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "autista", + "wordSecond": "司机 (sījī)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pilota", + "wordSecond": "飞行员 (fēixíngyuán)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "hostess", + "wordSecond": "空姐 (kōngjiě)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "steward", + "wordSecond": "空乘 (kōngchéng)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "portiere", + "wordSecond": "门卫 (ménwèi)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cameriere", + "wordSecond": "服务员 (fúwùyuán)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "colazione", + "wordSecond": "早餐 (zǎocān)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cena", + "wordSecond": "晚餐 (wǎncān)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ristorante", + "wordSecond": "餐厅 (cāntīng)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "bar", + "wordSecond": "酒吧 (jiǔbā)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "caffè", + "wordSecond": "咖啡 (kāfēi)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tè", + "wordSecond": "茶 (chá)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "acqua", + "wordSecond": "水 (shuǐ)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "soldi", + "wordSecond": "钱 (qián)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cambio", + "wordSecond": "兑换 (duìhuàn)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "banca", + "wordSecond": "银行 (yínháng)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "farmacia", + "wordSecond": "药店 (yàodiàn)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ospedale", + "wordSecond": "医院 (yīyuàn)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "polizia", + "wordSecond": "警察 (jǐngchá)", + "createdAt": "2026-02-19T14:38:38.947Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_ja_ko_A2.json b/output/2026_02_19_travel_transport_ja_ko_A2.json new file mode 100644 index 0000000..c9b5b34 --- /dev/null +++ b/output/2026_02_19_travel_transport_ja_ko_A2.json @@ -0,0 +1,1020 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:40:21.630Z", + "metadata": { + "itemCount": 77, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "空港 (くうこう, kūkō)", + "wordSecond": "공항 (gonghang)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "飛行機 (ひこうき, hikōki)", + "wordSecond": "비행기 (bihaenggi)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "バス (ばす, basu)", + "wordSecond": "버스 (beoseu)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "電車 (でんしゃ, densha)", + "wordSecond": "기차 (gicha)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "タクシー (たくしー, takushī)", + "wordSecond": "택시 (taeksi)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "車 (くるま, kuruma)", + "wordSecond": "자동차 (jadongcha)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "船 (ふね, fune)", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "駅 (えき, eki)", + "wordSecond": "역 (yeok)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "バス停 (ばすてい, basutei)", + "wordSecond": "버스 정류장 (beoseu jeongnyujang)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ホテル (ほてる, hoteru)", + "wordSecond": "호텔 (hotel)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "切符 (きっぷ, kippu)", + "wordSecond": "표 (pyo)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "パスポート (ぱすぽーと, pasupōto)", + "wordSecond": "여권 (yeogwon)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "荷物 (にもつ, nimotsu)", + "wordSecond": "짐 (jim)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "スーツケース (すーつけーす, sūtsukēsu)", + "wordSecond": "여행 가방 (yeohaeng gabang)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "地図 (ちず, chizu)", + "wordSecond": "지도 (jido)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "左 (ひだり, hidari)", + "wordSecond": "왼쪽 (oenjjok)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "右 (みぎ, migi)", + "wordSecond": "오른쪽 (oreunjjok)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "まっすぐ (massugu)", + "wordSecond": "똑바로 (ttokbaro)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "前 (まえ, mae)", + "wordSecond": "앞 (ap)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "後ろ (うしろ, ushiro)", + "wordSecond": "뒤 (dwi)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "近い (ちかい, chikai)", + "wordSecond": "가까운 (gakkaun)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "遠い (とおい, tōi)", + "wordSecond": "먼 (meon)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "速い (はやい, hayai)", + "wordSecond": "빠른 (ppareun)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "遅い (おそい, osoi)", + "wordSecond": "느린 (neurin)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "行く (いく, iku)", + "wordSecond": "가다 (gada)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "来る (くる, kuru)", + "wordSecond": "오다 (oda)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "出発 (しゅっぱつ, shuppatsu)", + "wordSecond": "출발 (chulbal)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "到着 (とうちゃく, tōchaku)", + "wordSecond": "도착 (dochak)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "乗る (のる, noru)", + "wordSecond": "타다 (tada)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "降りる (おりる, oriru)", + "wordSecond": "내리다 (naerida)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "待つ (まつ, matsu)", + "wordSecond": "기다리다 (gidarida)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "席 (せき, seki)", + "wordSecond": "자리 (jari)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "窓 (まど, mado)", + "wordSecond": "창문 (changmun)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ドア (どあ, doa)", + "wordSecond": "문 (mun)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "トイレ (といれ, toire)", + "wordSecond": "화장실 (hwajangsil)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "エレベーター (えれべーたー, erebētā)", + "wordSecond": "엘리베이터 (ellibeiteo)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "階段 (かいだん, kaidan)", + "wordSecond": "계단 (gyedan)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "チケット (ちけっと, chiketto)", + "wordSecond": "티켓 (tiket)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "予約 (よやく, yoyaku)", + "wordSecond": "예약 (yeyak)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "チェックイン (ちぇっくいん, chekkuin)", + "wordSecond": "체크인 (chekeuin)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "チェックアウト (ちぇっくあうと, chekkuauto)", + "wordSecond": "체크아웃 (chekeuaut)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "部屋 (へや, heya)", + "wordSecond": "방 (bang)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "鍵 (かぎ, kagi)", + "wordSecond": "열쇠 (yeolsoe)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "エアコン (えあこん, eakon)", + "wordSecond": "에어컨 (eeokeon)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "窓口 (まどぐち, madoguchi)", + "wordSecond": "창구 (changgul)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "案内所 (あんないじょ, annaijo)", + "wordSecond": "안내소 (annaeso)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "時刻表 (じこくひょう, jikokuhyō)", + "wordSecond": "시간표 (siganpyo)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "プラットホーム (ぷらっとほーむ, purattohōmu)", + "wordSecond": "플랫폼 (peullaetpom)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "改札口 (かいさつぐち, kaisatsuguchi)", + "wordSecond": "개찰구 (gaechalgu)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "運転手 (うんてんしゅ, untenshu)", + "wordSecond": "운전사 (unjeonsa)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "乗客 (じょうきゃく, jōkyaku)", + "wordSecond": "승객 (seunggaek)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "旅行 (りょこう, ryokō)", + "wordSecond": "여행 (yeohaeng)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "観光 (かんこう, kankō)", + "wordSecond": "관광 (gwangwang)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ビザ (びざ, biza)", + "wordSecond": "비자 (bija)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "両替 (りょうがえ, ryōgae)", + "wordSecond": "환전 (hwanjeon)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "お金 (おかね, okane)", + "wordSecond": "돈 (don)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "カバン (かばん, kaban)", + "wordSecond": "가방 (gabang)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "手荷物 (てにもつ, tenimotsu)", + "wordSecond": "휴대용 가방 (hyudaeyong gabang)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "トラベルガイド (とらべるがいど, toraberugaido)", + "wordSecond": "여행 가이드 (yeohaeng gaideu)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ターミナル (たーみなる, tāminaru)", + "wordSecond": "터미널 (teomineol)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "搭乗口 (とうじょうぐち, tōjōguchi)", + "wordSecond": "탑승구 (tapseunggu)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "手続き (てつづき, tetsuzuki)", + "wordSecond": "수속 (susok)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "安全検査 (あんぜんけんさ, anzenkensa)", + "wordSecond": "보안 검사 (boan geomsa)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "免税店 (めんぜいてん, menzeiten)", + "wordSecond": "면세점 (myeonsejeom)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "レストラン (れすとらん, resutoran)", + "wordSecond": "레스토랑 (reseutorang)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "カフェ (かふぇ, kafe)", + "wordSecond": "카페 (kape)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "道 (みち, michi)", + "wordSecond": "길 (gil)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "信号 (しんごう, shingō)", + "wordSecond": "신호등 (sinhodeung)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "交差点 (こうさてん, kōsaten)", + "wordSecond": "교차로 (gyocharo)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "橋 (はし, hashi)", + "wordSecond": "다리 (dari)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "駐車場 (ちゅうしゃじょう, chūshajō)", + "wordSecond": "주차장 (juchajang)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "ガソリンスタンド (がそりんすたんど, gasorinsutando)", + "wordSecond": "주유소 (juyuso)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "自転車 (じてんしゃ, jitensha)", + "wordSecond": "자전거 (jajeongeo)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "歩く (あるく, aruku)", + "wordSecond": "걷다 (geotda)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "走る (はしる, hashiru)", + "wordSecond": "달리다 (dallida)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "止まる (とまる, tomaru)", + "wordSecond": "멈추다 (meomchuda)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "曲がる (まがる, magaru)", + "wordSecond": "돌다 (dolda)", + "createdAt": "2026-02-19T14:40:21.630Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_ja_pl_A2.json b/output/2026_02_19_travel_transport_ja_pl_A2.json new file mode 100644 index 0000000..9bfaaba --- /dev/null +++ b/output/2026_02_19_travel_transport_ja_pl_A2.json @@ -0,0 +1,929 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:40:46.751Z", + "metadata": { + "itemCount": 70, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "空港 (くうこう, kūkō)", + "wordSecond": "lotnisko", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "飛行機 (ひこうき, hikōki)", + "wordSecond": "samolot", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "電車 (でんしゃ, densha)", + "wordSecond": "pociąg", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "バス (ばす, basu)", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "車 (くるま, kuruma)", + "wordSecond": "samochód", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "タクシー (たくしー, takushī)", + "wordSecond": "taksówka", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "船 (ふね, fune)", + "wordSecond": "statek", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "自転車 (じてんしゃ, jitensha)", + "wordSecond": "rower", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "駅 (えき, eki)", + "wordSecond": "dworzec", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ホテル (ほてる, hoteru)", + "wordSecond": "hotel", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "切符 (きっぷ, kippu)", + "wordSecond": "bilet", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "パスポート (ぱすぽーと, pasupōto)", + "wordSecond": "paszport", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "荷物 (にもつ, nimotsu)", + "wordSecond": "bagaż", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "スーツケース (すーつけーす, sūtsukēsu)", + "wordSecond": "walizka", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "地図 (ちず, chizu)", + "wordSecond": "mapa", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "右 (みぎ, migi)", + "wordSecond": "prawo", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "左 (ひだり, hidari)", + "wordSecond": "lewo", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "まっすぐ (まっすぐ, massugu)", + "wordSecond": "prosto", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "出口 (でぐち, deguchi)", + "wordSecond": "wyjście", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "入口 (いりぐち, iriguchi)", + "wordSecond": "wejście", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "トイレ (といれ, toire)", + "wordSecond": "toaleta", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "エレベーター (えれべーたー, erebētā)", + "wordSecond": "winda", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "階段 (かいだん, kaidan)", + "wordSecond": "schody", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "チケット (ちけっと, chiketto)", + "wordSecond": "bilet", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "窓口 (まどぐち, madoguchi)", + "wordSecond": "okienko", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "時刻表 (じこくひょう, jikokuhyō)", + "wordSecond": "rozklad jazdy", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "プラットホーム (ぷらっとほーむ, purattohōmu)", + "wordSecond": "peron", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "レール (れーる, rēru)", + "wordSecond": "tor", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "運転手 (うんてんしゅ, untenshu)", + "wordSecond": "kierowca", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "乗客 (じょうきゃく, jōkyaku)", + "wordSecond": "pasażer", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "席 (せき, seki)", + "wordSecond": "miejsce", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "座る (すわる, suwaru)", + "wordSecond": "siedzieć", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "立つ (たつ, tatsu)", + "wordSecond": "stać", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "降りる (おりる, oriru)", + "wordSecond": "wysiadać", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "乗る (のる, noru)", + "wordSecond": "wsiadać", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "行く (いく, iku)", + "wordSecond": "jechać", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "来る (くる, kuru)", + "wordSecond": "przyjeżdżać", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "到着 (とうちゃく, tōchaku)", + "wordSecond": "przyjazd", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "出発 (しゅっぱつ, shuppatsu)", + "wordSecond": "odjazd", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "遅れる (おくれる, okureru)", + "wordSecond": "spóźniać się", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "早い (はやい, hayai)", + "wordSecond": "wcześnie", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "遅い (おそい, osoi)", + "wordSecond": "późno", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "速い (はやい, hayai)", + "wordSecond": "szybki", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "遅い (おそい, osoi)", + "wordSecond": "wolny", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "安全 (あんぜん, anzen)", + "wordSecond": "bezpieczny", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "危険 (きけん, kiken)", + "wordSecond": "niebezpieczny", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "道 (みち, michi)", + "wordSecond": "droga", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "信号 (しんごう, shingō)", + "wordSecond": "światło", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "交差点 (こうさてん, kōsaten)", + "wordSecond": "skrzyżowanie", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "橋 (はし, hashi)", + "wordSecond": "most", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "トンネル (とんねる, tonneru)", + "wordSecond": "tunel", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "港 (みなと, minato)", + "wordSecond": "port", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "フェリー (ふぇりー, ferī)", + "wordSecond": "prom", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "地下鉄 (ちかてつ, chikatetsu)", + "wordSecond": "metro", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "トラム (とらむ, toramu)", + "wordSecond": "tramwaj", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "モーター (もーたー, mōtā)", + "wordSecond": "silnik", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ガソリン (がそりん, gasorin)", + "wordSecond": "benzyna", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "駐車場 (ちゅうしゃじょう, chūshajō)", + "wordSecond": "parking", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "空港バス (くうこうばす, kūkō basu)", + "wordSecond": "autobus lotniskowy", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "ターミナル (たーみなる, tāminaru)", + "wordSecond": "terminal", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "搭乗口 (とうじょうぐち, tōjōguchi)", + "wordSecond": "bramka", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "手荷物 (てにもつ, tenimotsu)", + "wordSecond": "bagaż podręczny", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "預ける (あずける, azukeru)", + "wordSecond": "oddać", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "受け取る (うけとる, uketoru)", + "wordSecond": "odebrać", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "案内所 (あんないじょ, annaijo)", + "wordSecond": "punkt informacyjny", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "両替 (りょうがえ, ryōgae)", + "wordSecond": "wymiana", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "お金 (おかね, okane)", + "wordSecond": "pieniądze", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "観光 (かんこう, kankō)", + "wordSecond": "turystyka", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "旅行 (りょこう, ryokō)", + "wordSecond": "podróż", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "休暇 (きゅうか, kyūka)", + "wordSecond": "wakacje", + "createdAt": "2026-02-19T14:40:46.751Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_ja_zh_A2.json b/output/2026_02_19_travel_transport_ja_zh_A2.json new file mode 100644 index 0000000..829dc01 --- /dev/null +++ b/output/2026_02_19_travel_transport_ja_zh_A2.json @@ -0,0 +1,1007 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:39:47.189Z", + "metadata": { + "itemCount": 76, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "空港 (くうこう, kuukou)", + "wordSecond": "机场 (jichang)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "飛行機 (ひこうき, hikouki)", + "wordSecond": "飞机 (feiji)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "バス (ばす, basu)", + "wordSecond": "公共汽车 (gonggongqiche)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "電車 (でんしゃ, densha)", + "wordSecond": "火车 (huoche)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "駅 (えき, eki)", + "wordSecond": "车站 (chezhan)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "タクシー (たくしー, takushii)", + "wordSecond": "出租车 (chuzuche)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "車 (くるま, kuruma)", + "wordSecond": "汽车 (qiche)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "自転車 (じてんしゃ, jitensha)", + "wordSecond": "自行车 (zixingche)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "船 (ふね, fune)", + "wordSecond": "船 (chuan)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ホテル (ほてる, hoteru)", + "wordSecond": "酒店 (jiudian)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "切符 (きっぷ, kippu)", + "wordSecond": "票 (piao)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "パスポート (ぱすぽーと, pasupooto)", + "wordSecond": "护照 (huzhao)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "荷物 (にもつ, nimotsu)", + "wordSecond": "行李 (xingli)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "スーツケース (すーつけーす, suutsukeesu)", + "wordSecond": "行李箱 (xinglixiang)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "地図 (ちず, chizu)", + "wordSecond": "地图 (ditu)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "右 (みぎ, migi)", + "wordSecond": "右 (you)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "左 (ひだり, hidari)", + "wordSecond": "左 (zuo)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "まっすぐ (massugu)", + "wordSecond": "直走 (zhizou)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "道 (みち, michi)", + "wordSecond": "路 (lu)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "信号 (しんごう, shingou)", + "wordSecond": "红绿灯 (honglvdeng)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "交差点 (こうさてん, kousaten)", + "wordSecond": "十字路口 (shizilukou)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "バス停 (ばすてい, basutei)", + "wordSecond": "公共汽车站 (gonggongqichezhan)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ターミナル (たーみなる, taaminaru)", + "wordSecond": "航站楼 (hangzhanlou)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "搭乗口 (とうじょうぐち, toujou guchi)", + "wordSecond": "登机口 (dengjikou)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "搭乗券 (とうじょうけん, toujouken)", + "wordSecond": "登机牌 (dengjipai)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "手荷物 (てにもつ, tenimotsu)", + "wordSecond": "手提行李 (shoutixingli)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "預け荷物 (あずけにもつ, azukenimotsu)", + "wordSecond": "托运行李 (tuoyunxingli)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "到着 (とうちゃく, touchaku)", + "wordSecond": "到达 (daoda)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "出発 (しゅっぱつ, shuppatsu)", + "wordSecond": "出发 (chufa)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "遅れる (おくれる, okureru)", + "wordSecond": "晚点 (wandian)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "時間 (じかん, jikan)", + "wordSecond": "时间 (shijian)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "時刻表 (じこくひょう, jikokuhyou)", + "wordSecond": "时刻表 (shikebiao)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "窓口 (まどぐち, madoguchi)", + "wordSecond": "售票处 (shoupiaochu)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "片道 (かたみち, katamichi)", + "wordSecond": "单程 (dancheng)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "往復 (おうふく, oufuku)", + "wordSecond": "往返 (wangfan)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "席 (せき, seki)", + "wordSecond": "座位 (zuowei)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "運転手 (うんてんしゅ, untenshu)", + "wordSecond": "司机 (siji)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "運賃 (うんちん, unchin)", + "wordSecond": "车费 (chefei)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "料金 (りょうきん, ryoukin)", + "wordSecond": "费用 (feiyong)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "高速道路 (こうそくどうろ, kousokudouro)", + "wordSecond": "高速公路 (gaosugonglu)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ガソリンスタンド (がそりんすたんど, gasorinsutando)", + "wordSecond": "加油站 (jiayouzhan)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "駐車場 (ちゅうしゃじょう, chuushajou)", + "wordSecond": "停车场 (tingchechang)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "レンタカー (れんたかー, rentakaa)", + "wordSecond": "租车 (zuche)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "地下鉄 (ちかてつ, chikatetsu)", + "wordSecond": "地铁 (ditie)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "新幹線 (しんかんせん, shinkansen)", + "wordSecond": "新干线 (xinganxian)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "フェリー (ふぇりー, ferii)", + "wordSecond": "渡轮 (dulun)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "観光 (かんこう, kankou)", + "wordSecond": "观光 (guanguang)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "旅行 (りょこう, ryokou)", + "wordSecond": "旅行 (lvxing)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "観光客 (かんこうきゃく, kankoukyaku)", + "wordSecond": "游客 (youke)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ガイド (がいど, gaido)", + "wordSecond": "导游 (daoyou)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ツアー (つあー, tsuaa)", + "wordSecond": "旅游团 (lvyoutuan)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "予約 (よやく, yoyaku)", + "wordSecond": "预订 (yuding)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "チェックイン (ちぇっくいん, chekkuin)", + "wordSecond": "办理入住 (banliruzhu)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "チェックアウト (ちぇっくあうと, chekkuauto)", + "wordSecond": "退房 (tuifang)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "部屋 (へや, heya)", + "wordSecond": "房间 (fangjian)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "鍵 (かぎ, kagi)", + "wordSecond": "钥匙 (yaoshi)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "エレベーター (えれべーたー, erebeetaa)", + "wordSecond": "电梯 (dianti)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "エスカレーター (えすかれーたー, esukareetaa)", + "wordSecond": "自动扶梯 (zidongfuti)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "トイレ (といれ, toire)", + "wordSecond": "厕所 (cesuo)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "入口 (いりぐち, iriguchi)", + "wordSecond": "入口 (rukou)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "出口 (でぐち, deguchi)", + "wordSecond": "出口 (chukou)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "非常口 (ひじょうぐち, hijouguchi)", + "wordSecond": "紧急出口 (jinjichukou)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "案内所 (あんないじょ, annaijo)", + "wordSecond": "问讯处 (wenxunchu)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "両替 (りょうがえ, ryougae)", + "wordSecond": "兑换 (duihuan)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お金 (おかね, okane)", + "wordSecond": "钱 (qian)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "カメラ (かめら, kamera)", + "wordSecond": "照相机 (zhaoxiangji)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ビザ (びざ, biza)", + "wordSecond": "签证 (qianzheng)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "国 (くに, kuni)", + "wordSecond": "国家 (guojia)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "外国 (がいこく, gaikoku)", + "wordSecond": "外国 (waiguo)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "海 (うみ, umi)", + "wordSecond": "海 (hai)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "山 (やま, yama)", + "wordSecond": "山 (shan)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "町 (まち, machi)", + "wordSecond": "城镇 (chengzhen)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "ビーチ (びーち, biichi)", + "wordSecond": "海滩 (haitan)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "博物館 (はくぶつかん, hakubutsukan)", + "wordSecond": "博物馆 (bowuguan)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "レストラン (れすとらん, resutoran)", + "wordSecond": "餐厅 (canting)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "お土産 (おみやげ, omiyage)", + "wordSecond": "纪念品 (jinianpin)", + "createdAt": "2026-02-19T14:39:47.189Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_ko_pl_A2.json b/output/2026_02_19_travel_transport_ko_pl_A2.json new file mode 100644 index 0000000..457f404 --- /dev/null +++ b/output/2026_02_19_travel_transport_ko_pl_A2.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:41:48.127Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "공항 (gonghang)", + "wordSecond": "lotnisko", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "비행기 (bihaenggi)", + "wordSecond": "samolot", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "기차 (gicha)", + "wordSecond": "pociąg", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "버스 (beoseu)", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "택시 (taeksi)", + "wordSecond": "taksówka", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "자동차 (jadongcha)", + "wordSecond": "samochód", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "배 (bae)", + "wordSecond": "statek", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "호텔 (hotel)", + "wordSecond": "hotel", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "표 (pyo)", + "wordSecond": "bilet", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "여권 (yeogwon)", + "wordSecond": "paszport", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "가방 (gabang)", + "wordSecond": "torba", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "여행 가방 (yeohaeng gabang)", + "wordSecond": "walizka", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "지도 (jido)", + "wordSecond": "mapa", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "왼쪽 (oenjjok)", + "wordSecond": "lewo", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "오른쪽 (oreunjjok)", + "wordSecond": "prawo", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "직진 (jikjin)", + "wordSecond": "prosto", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "역 (yeok)", + "wordSecond": "stacja", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "버스 정류장 (beoseu jeongnyujang)", + "wordSecond": "przystanek autobusowy", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "출구 (chulgu)", + "wordSecond": "wyjście", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "입구 (ipgu)", + "wordSecond": "wejście", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "탑승 (tapseung)", + "wordSecond": "wsiadać", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "하차 (hacha)", + "wordSecond": "wysiadać", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "도착 (dochak)", + "wordSecond": "przyjazd", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "출발 (chulbal)", + "wordSecond": "odjazd", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "시간표 (sigampyo)", + "wordSecond": "rozklad jazdy", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "좌석 (jwaseok)", + "wordSecond": "miejsce", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "창문 (changmun)", + "wordSecond": "okno", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "문 (mun)", + "wordSecond": "drzwi", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "계단 (gyedan)", + "wordSecond": "schody", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "엘리베이터 (ellibeiteo)", + "wordSecond": "winda", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "화장실 (hwajangsil)", + "wordSecond": "toaleta", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "수하물 (suhamul)", + "wordSecond": "bagaż", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "체크인 (chekeuin)", + "wordSecond": "zameldowanie", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "체크아웃 (chekeuaut)", + "wordSecond": "wymeldowanie", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "열쇠 (yeolsoe)", + "wordSecond": "klucz", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "방 (bang)", + "wordSecond": "pokój", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "예약 (yeyak)", + "wordSecond": "rezerwacja", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "여행사 (yeohaengsa)", + "wordSecond": "biuro podróży", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "가이드 (gaideu)", + "wordSecond": "przewodnik", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "관광 (gwangwang)", + "wordSecond": "zwiedzanie", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "휴가 (hyuga)", + "wordSecond": "wakacje", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "휴일 (hyuil)", + "wordSecond": "urlop", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "비자 (bija)", + "wordSecond": "wiza", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "세관 (segwan)", + "wordSecond": "cło", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "세금 (segeum)", + "wordSecond": "podatek", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "돈 (don)", + "wordSecond": "pieniądze", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "교통 (gyotong)", + "wordSecond": "transport", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "길 (gil)", + "wordSecond": "droga", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "교차로 (gyocharo)", + "wordSecond": "skrzyżowanie", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "신호등 (sinhodeung)", + "wordSecond": "sygnalizacja świetlna", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "표지판 (pyojipan)", + "wordSecond": "znak", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "정류장 (jeongnyujang)", + "wordSecond": "przystanek", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "기차역 (gichayeok)", + "wordSecond": "dworzec kolejowy", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "공항 버스 (gonghang beoseu)", + "wordSecond": "autobus lotniskowy", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "주차장 (juchajang)", + "wordSecond": "parking", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "주유소 (juyuso)", + "wordSecond": "stacja benzynowa", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "운전사 (unjeonsa)", + "wordSecond": "kierowca", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "승객 (seunggaek)", + "wordSecond": "pasażer", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "승무원 (seungmuwon)", + "wordSecond": "załoga", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "조종사 (jojongsa)", + "wordSecond": "pilot", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "선장 (seonjang)", + "wordSecond": "kapitan", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "항구 (hanggu)", + "wordSecond": "port", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "해변 (haebyeon)", + "wordSecond": "plaża", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "산 (san)", + "wordSecond": "góra", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "도시 (dosi)", + "wordSecond": "miasto", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "마을 (maeul)", + "wordSecond": "wieś", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "국가 (gukga)", + "wordSecond": "kraj", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "언어 (eoneo)", + "wordSecond": "język", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "여행자 (yeohaengja)", + "wordSecond": "podróżny", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "가족 여행 (gajok yeohaeng)", + "wordSecond": "podróż rodzinna", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "단체 여행 (danche yeohaeng)", + "wordSecond": "wycieczka grupowa", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "배낭 여행 (baenang yeohaeng)", + "wordSecond": "podróż z plecakiem", + "createdAt": "2026-02-19T14:41:48.127Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_pt_de_A2.json b/output/2026_02_19_travel_transport_pt_de_A2.json new file mode 100644 index 0000000..484f34b --- /dev/null +++ b/output/2026_02_19_travel_transport_pt_de_A2.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:32:29.871Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "aeroporto", + "wordSecond": "Flughafen", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "avião", + "wordSecond": "Flugzeug", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "passaporte", + "wordSecond": "Reisepass", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "passagem", + "wordSecond": "Fahrkarte", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "bagagem", + "wordSecond": "Gepäck", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "hotel", + "wordSecond": "Hotel", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ônibus", + "wordSecond": "Bus", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "estação de ônibus", + "wordSecond": "Bushaltestelle", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "trem", + "wordSecond": "Zug", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "estação de trem", + "wordSecond": "Bahnhof", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "carro", + "wordSecond": "Auto", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "taxi", + "wordSecond": "Taxi", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "navio", + "wordSecond": "Schiff", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "bicicleta", + "wordSecond": "Fahrrad", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "moto", + "wordSecond": "Motorrad", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "esquerda", + "wordSecond": "links", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "direita", + "wordSecond": "rechts", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "direto", + "wordSecond": "geradeaus", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mapa", + "wordSecond": "Karte", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "guia", + "wordSecond": "Führer", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "turista", + "wordSecond": "Tourist", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "viagem", + "wordSecond": "Reise", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chegada", + "wordSecond": "Ankunft", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "partida", + "wordSecond": "Abfahrt", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "portão", + "wordSecond": "Gate", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "check-in", + "wordSecond": "Check-in", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "segurança", + "wordSecond": "Sicherheit", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fila", + "wordSecond": "Schlange", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "assento", + "wordSecond": "Sitz", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "janela", + "wordSecond": "Fenster", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "corredor", + "wordSecond": "Gang", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "piloto", + "wordSecond": "Pilot", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "comissário de bordo", + "wordSecond": "Flugbegleiter", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "motorista", + "wordSecond": "Fahrer", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "condutor", + "wordSecond": "Fahrer", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "bilhete", + "wordSecond": "Ticket", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "reserva", + "wordSecond": "Reservierung", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "horário", + "wordSecond": "Fahrplan", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "atraso", + "wordSecond": "Verspätung", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cancelado", + "wordSecond": "annulliert", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "saída", + "wordSecond": "Ausgang", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "entrada", + "wordSecond": "Eingang", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "elevador", + "wordSecond": "Aufzug", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escada rolante", + "wordSecond": "Rolltreppe", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "banheiro", + "wordSecond": "Toilette", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "informações", + "wordSecond": "Auskunft", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "moeda", + "wordSecond": "Währung", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "câmbio", + "wordSecond": "Wechselstube", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mala", + "wordSecond": "Koffer", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mochila", + "wordSecond": "Rucksack", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "carteira de identidade", + "wordSecond": "Ausweis", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "visto", + "wordSecond": "Visum", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "alfândega", + "wordSecond": "Zoll", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "praia", + "wordSecond": "Strand", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "montanha", + "wordSecond": "Berg", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cidade", + "wordSecond": "Stadt", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "campo", + "wordSecond": "Land", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "rua", + "wordSecond": "Straße", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "praça", + "wordSecond": "Platz", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ponte", + "wordSecond": "Brücke", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "parada", + "wordSecond": "Haltestelle", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "destino", + "wordSecond": "Ziel", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "origem", + "wordSecond": "Ursprung", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "viagem de negócios", + "wordSecond": "Geschäftsreise", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "férias", + "wordSecond": "Urlaub", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "passeio", + "wordSecond": "Ausflug", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "souvenir", + "wordSecond": "Andenken", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "câmera", + "wordSecond": "Kamera", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "passageiro", + "wordSecond": "Passagier", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "malas", + "wordSecond": "Koffer", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "trânsito", + "wordSecond": "Verkehr", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "semáforo", + "wordSecond": "Ampel", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "estacionamento", + "wordSecond": "Parkplatz", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pedestre", + "wordSecond": "Fußgänger", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cinto de segurança", + "wordSecond": "Sicherheitsgurt", + "createdAt": "2026-02-19T14:32:29.871Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_pt_fr_A2.json b/output/2026_02_19_travel_transport_pt_fr_A2.json new file mode 100644 index 0000000..e7262ef --- /dev/null +++ b/output/2026_02_19_travel_transport_pt_fr_A2.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:32:44.067Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "aeroporto", + "wordSecond": "aéroport", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "avião", + "wordSecond": "avion", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "passagem", + "wordSecond": "billet", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "passaporte", + "wordSecond": "passeport", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "bagagem", + "wordSecond": "bagage", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "malas", + "wordSecond": "valises", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "taxi", + "wordSecond": "taxi", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ônibus", + "wordSecond": "bus", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "trem", + "wordSecond": "train", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estação de trem", + "wordSecond": "gare", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estação de ônibus", + "wordSecond": "gare routière", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "hotel", + "wordSecond": "hôtel", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quarto", + "wordSecond": "chambre", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "recepção", + "wordSecond": "réception", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "carro", + "wordSecond": "voiture", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "navio", + "wordSecond": "bateau", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "barco", + "wordSecond": "navire", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "bicicleta", + "wordSecond": "vélo", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "moto", + "wordSecond": "moto", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "esquerda", + "wordSecond": "gauche", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "direita", + "wordSecond": "droite", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "direto", + "wordSecond": "tout droit", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mapa", + "wordSecond": "carte", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "rua", + "wordSecond": "rue", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cidade", + "wordSecond": "ville", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "país", + "wordSecond": "pays", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chegada", + "wordSecond": "arrivée", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "partida", + "wordSecond": "départ", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "portão", + "wordSecond": "porte", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "check-in", + "wordSecond": "enregistrement", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "segurança", + "wordSecond": "sécurité", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "guichê", + "wordSecond": "guichet", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "bilhete", + "wordSecond": "ticket", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "passageiro", + "wordSecond": "passager", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "piloto", + "wordSecond": "pilote", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "comissário de bordo", + "wordSecond": "steward", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "comissária de bordo", + "wordSecond": "hôtesse de l'air", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "motorista", + "wordSecond": "chauffeur", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "condutor", + "wordSecond": "conducteur", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "parada", + "wordSecond": "arrêt", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "terminal", + "wordSecond": "terminal", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "corredor", + "wordSecond": "couloir", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "elevador", + "wordSecond": "ascenseur", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "escada", + "wordSecond": "escalier", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "banheiro", + "wordSecond": "toilettes", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "restaurante", + "wordSecond": "restaurant", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "café", + "wordSecond": "café", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "loja", + "wordSecond": "magasin", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dinheiro", + "wordSecond": "argent", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "câmbio", + "wordSecond": "change", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "viagem", + "wordSecond": "voyage", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "férias", + "wordSecond": "vacances", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "turista", + "wordSecond": "touriste", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "guia", + "wordSecond": "guide", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "praia", + "wordSecond": "plage", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "montanha", + "wordSecond": "montagne", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "museu", + "wordSecond": "musée", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "parque", + "wordSecond": "parc", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "trânsito", + "wordSecond": "circulation", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sinal", + "wordSecond": "feu", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "semáforo", + "wordSecond": "feu tricolore", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pedestre", + "wordSecond": "piéton", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "calçada", + "wordSecond": "trottoir", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ponte", + "wordSecond": "pont", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "túnel", + "wordSecond": "tunnel", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "porto", + "wordSecond": "port", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "helicóptero", + "wordSecond": "hélicoptère", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "metrô", + "wordSecond": "métro", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "táxi aéreo", + "wordSecond": "taxi aérien", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cinto de segurança", + "wordSecond": "ceinture de sécurité", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "janela", + "wordSecond": "fenêtre", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "corredor", + "wordSecond": "allée", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "assento", + "wordSecond": "siège", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "porta", + "wordSecond": "porte", + "createdAt": "2026-02-19T14:32:44.067Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_pt_it_A2.json b/output/2026_02_19_travel_transport_pt_it_A2.json new file mode 100644 index 0000000..e252053 --- /dev/null +++ b/output/2026_02_19_travel_transport_pt_it_A2.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:32:59.142Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "aeroporto", + "wordSecond": "aeroporto", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "avião", + "wordSecond": "aereo", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ônibus", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "trem", + "wordSecond": "treno", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "carro", + "wordSecond": "macchina", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "navio", + "wordSecond": "nave", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bicicleta", + "wordSecond": "bicicletta", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "moto", + "wordSecond": "moto", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "táxi", + "wordSecond": "taxi", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estação", + "wordSecond": "stazione", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estação de trem", + "wordSecond": "stazione ferroviaria", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estação de ônibus", + "wordSecond": "stazione degli autobus", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "hotel", + "wordSecond": "albergo", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "passagem", + "wordSecond": "biglietto", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "passaporte", + "wordSecond": "passaporto", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bagagem", + "wordSecond": "bagaglio", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mala", + "wordSecond": "valigia", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "esquerda", + "wordSecond": "sinistra", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "direita", + "wordSecond": "destra", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "direto", + "wordSecond": "dritto", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "parar", + "wordSecond": "fermare", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "virar", + "wordSecond": "girare", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chegar", + "wordSecond": "arrivare", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "partir", + "wordSecond": "partire", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "viajar", + "wordSecond": "viaggiare", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "turista", + "wordSecond": "turista", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "guia", + "wordSecond": "guida", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mapa", + "wordSecond": "mappa", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "rua", + "wordSecond": "strada", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cidade", + "wordSecond": "città", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "país", + "wordSecond": "paese", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fronteira", + "wordSecond": "frontiera", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "portão", + "wordSecond": "cancello", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "check-in", + "wordSecond": "check-in", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "check-out", + "wordSecond": "check-out", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "voo", + "wordSecond": "volo", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "piloto", + "wordSecond": "pilota", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "comissário", + "wordSecond": "assistente di volo", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "terminal", + "wordSecond": "terminal", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "portão de embarque", + "wordSecond": "gate", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "segurança", + "wordSecond": "sicurezza", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "alfândega", + "wordSecond": "dogana", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "carteira de motorista", + "wordSecond": "patente di guida", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gasolina", + "wordSecond": "benzina", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "posto de gasolina", + "wordSecond": "stazione di servizio", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pedágio", + "wordSecond": "pedaggio", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "semáforo", + "wordSecond": "semaforo", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "parada de ônibus", + "wordSecond": "fermata dell'autobus", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "bilhete", + "wordSecond": "biglietto", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "reserva", + "wordSecond": "prenotazione", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "horário", + "wordSecond": "orario", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "atraso", + "wordSecond": "ritardo", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chegada", + "wordSecond": "arrivo", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "partida", + "wordSecond": "partenza", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "destino", + "wordSecond": "destinazione", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "passageiro", + "wordSecond": "passeggero", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "motorista", + "wordSecond": "autista", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "condutor", + "wordSecond": "conducente", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cinto de segurança", + "wordSecond": "cintura di sicurezza", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "janela", + "wordSecond": "finestra", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "corredor", + "wordSecond": "corridoio", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "assento", + "wordSecond": "posto", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "porta", + "wordSecond": "porta", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "elevador", + "wordSecond": "ascensore", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "escada", + "wordSecond": "scala", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "recepção", + "wordSecond": "reception", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quarto", + "wordSecond": "camera", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chave", + "wordSecond": "chiave", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "câmbio", + "wordSecond": "cambio", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dinheiro", + "wordSecond": "denaro", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "carteira", + "wordSecond": "portafoglio", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "passagem aérea", + "wordSecond": "biglietto aereo", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "passagem de trem", + "wordSecond": "biglietto del treno", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "passagem de ônibus", + "wordSecond": "biglietto dell'autobus", + "createdAt": "2026-02-19T14:32:59.142Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_pt_ja_A2.json b/output/2026_02_19_travel_transport_pt_ja_A2.json new file mode 100644 index 0000000..0505ac4 --- /dev/null +++ b/output/2026_02_19_travel_transport_pt_ja_A2.json @@ -0,0 +1,1033 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:33:28.024Z", + "metadata": { + "itemCount": 78, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "aeroporto", + "wordSecond": "空港 (くうこう, kūkō)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "avião", + "wordSecond": "飛行機 (ひこうき, hikōki)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ônibus", + "wordSecond": "バス (ばす, basu)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "trem", + "wordSecond": "電車 (でんしゃ, densha)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "carro", + "wordSecond": "車 (くるま, kuruma)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "navio", + "wordSecond": "船 (ふね, fune)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "bicicleta", + "wordSecond": "自転車 (じてんしゃ, jitensha)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "moto", + "wordSecond": "バイク (ばいく, baiku)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "táxi", + "wordSecond": "タクシー (たくしー, takushī)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "estação de trem", + "wordSecond": "駅 (えき, eki)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "estação de ônibus", + "wordSecond": "バス停 (ばすてい, basutei)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "hotel", + "wordSecond": "ホテル (ほてる, hoteru)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "passaporte", + "wordSecond": "パスポート (ぱすぽーと, pasupōto)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "bilhete", + "wordSecond": "切符 (きっぷ, kippu)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "passagem", + "wordSecond": "チケット (ちけっと, chiketto)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "bagagem", + "wordSecond": "荷物 (にもつ, nimotsu)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "mala", + "wordSecond": "スーツケース (すーつけーす, sūtsukēsu)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "mapa", + "wordSecond": "地図 (ちず, chizu)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "direita", + "wordSecond": "右 (みぎ, migi)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "esquerda", + "wordSecond": "左 (ひだり, hidari)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "frente", + "wordSecond": "前 (まえ, mae)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "atrás", + "wordSecond": "後ろ (うしろ, ushiro)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "reto", + "wordSecond": "まっすぐ (まっすぐ, massugu)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "perto", + "wordSecond": "近い (ちかい, chikai)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "longe", + "wordSecond": "遠い (とおい, tōi)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "entrada", + "wordSecond": "入口 (いりぐち, iriguchi)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "saída", + "wordSecond": "出口 (でぐち, deguchi)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "banheiro", + "wordSecond": "トイレ (といれ, toire)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "restaurante", + "wordSecond": "レストラン (れすとらん, resutoran)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "café", + "wordSecond": "喫茶店 (きっさてん, kissaten)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dinheiro", + "wordSecond": "お金 (おかね, okane)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "câmbio", + "wordSecond": "両替 (りょうがえ, ryōgae)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "guia", + "wordSecond": "ガイド (がいど, gaido)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "turista", + "wordSecond": "観光客 (かんこうきゃく, kankōkyaku)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "viagem", + "wordSecond": "旅行 (りょこう, ryokō)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "férias", + "wordSecond": "休暇 (きゅうか, kyūka)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "chegada", + "wordSecond": "到着 (とうちゃく, tōchaku)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "partida", + "wordSecond": "出発 (しゅっぱつ, shuppatsu)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "horário", + "wordSecond": "時間 (じかん, jikan)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "atraso", + "wordSecond": "遅れ (おくれ, okure)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "portão", + "wordSecond": "ゲート (げーと, gēto)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "check-in", + "wordSecond": "チェックイン (ちぇっくいん, chekkuin)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "segurança", + "wordSecond": "セキュリティ (せきゅりてぃ, sekyuriti)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "passageiro", + "wordSecond": "乗客 (じょうきゃく, jōkyaku)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "motorista", + "wordSecond": "運転手 (うんてんしゅ, untenshu)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "piloto", + "wordSecond": "パイロット (ぱいろっと, pairotto)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "comissário de bordo", + "wordSecond": "客室乗務員 (きゃくしつじょうむいん, kyakushitsu jōmuin)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "taxista", + "wordSecond": "タクシー運転手 (たくしーうんてんしゅ, takushī untenshu)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "boleto", + "wordSecond": "チケット (ちけっと, chiketto)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "reserva", + "wordSecond": "予約 (よやく, yoyaku)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "quarto", + "wordSecond": "部屋 (へや, heya)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cama", + "wordSecond": "ベッド (べっど, beddo)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "chave", + "wordSecond": "鍵 (かぎ, kagi)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "elevador", + "wordSecond": "エレベーター (えれべーたー, erebētā)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "escada", + "wordSecond": "階段 (かいだん, kaidan)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "recepção", + "wordSecond": "フロント (ふろんと, furonto)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "piscina", + "wordSecond": "プール (ぷーる, pūru)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "praia", + "wordSecond": "ビーチ (びーち, bīchi)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "montanha", + "wordSecond": "山 (やま, yama)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cidade", + "wordSecond": "町 (まち, machi)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "país", + "wordSecond": "国 (くに, kuni)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "fronteira", + "wordSecond": "国境 (こっきょう, kokkyō)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "visto", + "wordSecond": "ビザ (びざ, biza)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "alfândega", + "wordSecond": "税関 (ぜいかん, zeikan)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "carteira de motorista", + "wordSecond": "運転免許証 (うんてんめんきょしょう, unten menkyoshō)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "gasolina", + "wordSecond": "ガソリン (がそりん, gasorin)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "posto de gasolina", + "wordSecond": "ガソリンスタンド (がそりんすたんど, gasorin sutando)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "parada de ônibus", + "wordSecond": "バス停 (ばすてい, basutei)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "semáforo", + "wordSecond": "信号 (しんごう, shingō)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cruzamento", + "wordSecond": "交差点 (こうさてん, kōsaten)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ponte", + "wordSecond": "橋 (はし, hashi)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "túnel", + "wordSecond": "トンネル (とんねる, tonneru)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "trânsito", + "wordSecond": "交通 (こうつう, kōtsū)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "acidente", + "wordSecond": "事故 (じこ, jiko)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "policial", + "wordSecond": "警察 (けいさつ, keisatsu)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "hospital", + "wordSecond": "病院 (びょういん, byōin)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "farmacácia", + "wordSecond": "薬局 (やっきょく, yakkyoku)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "supermercado", + "wordSecond": "スーパー (すーぱー, sūpā)", + "createdAt": "2026-02-19T14:33:28.024Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_pt_ko_A2.json b/output/2026_02_19_travel_transport_pt_ko_A2.json new file mode 100644 index 0000000..ccf8435 --- /dev/null +++ b/output/2026_02_19_travel_transport_pt_ko_A2.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:34:06.972Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "aeroporto", + "wordSecond": "공항 (gonghang)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "avião", + "wordSecond": "비행기 (bihaenggi)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ônibus", + "wordSecond": "버스 (beoseu)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "trem", + "wordSecond": "기차 (gicha)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "carro", + "wordSecond": "차 (cha)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "navio", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "táxi", + "wordSecond": "택시 (taeksi)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "bicicleta", + "wordSecond": "자전거 (jajeongeo)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "estação de trem", + "wordSecond": "기차역 (gichayeok)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "estação de ônibus", + "wordSecond": "버스 정류장 (beoseu jeongnyujang)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "hotel", + "wordSecond": "호텔 (hotel)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "quarto", + "wordSecond": "방 (bang)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "passaporte", + "wordSecond": "여권 (yeogwon)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "visto", + "wordSecond": "비자 (bija)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "passagem", + "wordSecond": "표 (pyo)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "bagagem", + "wordSecond": "짐 (jim)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "mala", + "wordSecond": "가방 (gabang)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "mapa", + "wordSecond": "지도 (jido)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "esquerda", + "wordSecond": "왼쪽 (oenjjok)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "direita", + "wordSecond": "오른쪽 (oreunjjok)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "direto", + "wordSecond": "직진 (jikjin)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "atrás", + "wordSecond": "뒤 (dwi)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "frente", + "wordSecond": "앞 (ap)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "perto", + "wordSecond": "가까이 (gakkai)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "longe", + "wordSecond": "멀리 (meolli)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "entrada", + "wordSecond": "입구 (ipgu)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "saída", + "wordSecond": "출구 (chulgu)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "banheiro", + "wordSecond": "화장실 (hwajangsil)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "restaurante", + "wordSecond": "식당 (sikdang)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "café", + "wordSecond": "카페 (kape)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dinheiro", + "wordSecond": "돈 (don)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cartão", + "wordSecond": "카드 (kadeu)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "guia", + "wordSecond": "가이드 (gaideu)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "turista", + "wordSecond": "관광객 (gwangwanggaek)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "viagem", + "wordSecond": "여행 (yeohaeng)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "férias", + "wordSecond": "휴가 (hyuga)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "praia", + "wordSecond": "해변 (haebyeon)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "montanha", + "wordSecond": "산 (san)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cidade", + "wordSecond": "도시 (dosi)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "país", + "wordSecond": "나라 (nara)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "chegada", + "wordSecond": "도착 (dochak)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "partida", + "wordSecond": "출발 (chulbal)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "horário", + "wordSecond": "시간표 (siganpyo)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "atraso", + "wordSecond": "지연 (jiyeon)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cancelado", + "wordSecond": "취소 (chwiso)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "seguro", + "wordSecond": "안전 (anjeon)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "perdido", + "wordSecond": "길을 잃다 (gireul ilta)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ajuda", + "wordSecond": "도움 (doum)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "polícia", + "wordSecond": "경찰 (gyeongchal)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "hospital", + "wordSecond": "병원 (byeongwon)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "farmacácia", + "wordSecond": "약국 (yakguk)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "comida", + "wordSecond": "음식 (eumsik)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "água", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "câmbio", + "wordSecond": "환전 (hwanjeon)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "loja", + "wordSecond": "가게 (gage)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "souvenir", + "wordSecond": "기념품 (ginyeompum)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "foto", + "wordSecond": "사진 (sajin)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "telefone", + "wordSecond": "전화 (jeonhwa)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "internet", + "wordSecond": "인터넷 (inteonet)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "Wi-Fi", + "wordSecond": "와이파이 (waipai)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "elevador", + "wordSecond": "엘리베이터 (ellibeiteo)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "escada", + "wordSecond": "계단 (gyedan)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "corredor", + "wordSecond": "복도 (bokdo)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "recepção", + "wordSecond": "프런트 (peureonteu)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "chave", + "wordSecond": "열쇠 (yeolsoe)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "janela", + "wordSecond": "창문 (changmun)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "porta", + "wordSecond": "문 (mun)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "carteira de motorista", + "wordSecond": "운전면허증 (unjeonmyeonheojeung)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "gasolina", + "wordSecond": "휘발유 (hwibaryu)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "estacionamento", + "wordSecond": "주차장 (juchajang)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "semáforo", + "wordSecond": "신호등 (sinhodeung)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cinto de segurança", + "wordSecond": "안전벨트 (anjeonbelteu)", + "createdAt": "2026-02-19T14:34:06.972Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_pt_pl_A2.json b/output/2026_02_19_travel_transport_pt_pl_A2.json new file mode 100644 index 0000000..65edfa5 --- /dev/null +++ b/output/2026_02_19_travel_transport_pt_pl_A2.json @@ -0,0 +1,994 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:34:22.346Z", + "metadata": { + "itemCount": 75, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "aeroporto", + "wordSecond": "lotnisko", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "avião", + "wordSecond": "samolot", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ônibus", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "trem", + "wordSecond": "pociąg", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "carro", + "wordSecond": "samochód", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "navio", + "wordSecond": "statek", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "bicicleta", + "wordSecond": "rower", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "moto", + "wordSecond": "motocykl", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "táxi", + "wordSecond": "taksówka", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "estação", + "wordSecond": "stacja", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "estação de trem", + "wordSecond": "dworzec kolejowy", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "estação de ônibus", + "wordSecond": "dworzec autobusowy", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "hotel", + "wordSecond": "hotel", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "passagem", + "wordSecond": "bilet", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "passaporte", + "wordSecond": "paszport", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "bagagem", + "wordSecond": "bagaż", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "mala", + "wordSecond": "walizka", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "mapa", + "wordSecond": "mapa", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "guia", + "wordSecond": "przewodnik", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "esquerda", + "wordSecond": "lewo", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "direita", + "wordSecond": "prawo", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "direto", + "wordSecond": "prosto", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "aqui", + "wordSecond": "tutaj", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ali", + "wordSecond": "tam", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "longe", + "wordSecond": "daleko", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "perto", + "wordSecond": "blisko", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "entrada", + "wordSecond": "wejście", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "saída", + "wordSecond": "wyjście", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "partida", + "wordSecond": "odjazd", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "chegada", + "wordSecond": "przyjazd", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "portão", + "wordSecond": "brama", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "bilheteira", + "wordSecond": "kasa biletowa", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "check-in", + "wordSecond": "odbiór pokoju", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "check-out", + "wordSecond": "wymeldowanie", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "quarto", + "wordSecond": "pokój", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cama", + "wordSecond": "łóżko", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "banheiro", + "wordSecond": "łazienka", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "recepção", + "wordSecond": "recepcja", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "elevador", + "wordSecond": "winda", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "escada", + "wordSecond": "schody", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "restaurante", + "wordSecond": "restauracja", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "café da manhã", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "piscina", + "wordSecond": "basen", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "praia", + "wordSecond": "plaża", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cidade", + "wordSecond": "miasto", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "país", + "wordSecond": "kraj", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "fronteira", + "wordSecond": "granica", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "moeda", + "wordSecond": "waluta", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dinheiro", + "wordSecond": "pieniądze", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "câmbio", + "wordSecond": "kantor", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "viagem", + "wordSecond": "podróż", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "turista", + "wordSecond": "turysta", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "passeio", + "wordSecond": "wycieczka", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "visita", + "wordSecond": "zwiedzanie", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "foto", + "wordSecond": "zdjęcie", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "câmera", + "wordSecond": "aparat fotograficzny", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "passageiro", + "wordSecond": "pasażer", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "motorista", + "wordSecond": "kierowca", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "piloto", + "wordSecond": "pilot", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "comissário de bordo", + "wordSecond": "steward", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "porto", + "wordSecond": "port", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "doca", + "wordSecond": "przystań", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "trânsito", + "wordSecond": "korek", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "semáforo", + "wordSecond": "sygnalizacja świetlna", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "parada", + "wordSecond": "przystanek", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "plataforma", + "wordSecond": "peron", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "assento", + "wordSecond": "miejsce", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "corredor", + "wordSecond": "przejście", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "janela", + "wordSecond": "okno", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "porta", + "wordSecond": "drzwi", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tempo", + "wordSecond": "czas", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "atraso", + "wordSecond": "opóźnienie", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "horário", + "wordSecond": "rozklad jazdy", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "informação", + "wordSecond": "informacja", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ajuda", + "wordSecond": "pomoc", + "createdAt": "2026-02-19T14:34:22.346Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_pt_zh_A2.json b/output/2026_02_19_travel_transport_pt_zh_A2.json new file mode 100644 index 0000000..d42621b --- /dev/null +++ b/output/2026_02_19_travel_transport_pt_zh_A2.json @@ -0,0 +1,955 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:33:46.328Z", + "metadata": { + "itemCount": 72, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "aeroporto", + "wordSecond": "机场 (jichang)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "avião", + "wordSecond": "飞机 (feiji)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "passaporte", + "wordSecond": "护照 (huzhao)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "visto", + "wordSecond": "签证 (qianzheng)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "bagagem", + "wordSecond": "行李 (xingli)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "mala", + "wordSecond": "行李箱 (xinglixiang)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ônibus", + "wordSecond": "公共汽车 (gonggong qiche)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ônibus", + "wordSecond": "巴士 (bashi)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "trem", + "wordSecond": "火车 (huoche)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "estação de trem", + "wordSecond": "火车站 (huochezhan)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "estação de ônibus", + "wordSecond": "汽车站 (qichezhan)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "carro", + "wordSecond": "汽车 (qiche)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "táxi", + "wordSecond": "出租车 (chuzuche)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "navio", + "wordSecond": "船 (chuan)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "bicicleta", + "wordSecond": "自行车 (zixingche)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "metrô", + "wordSecond": "地铁 (ditie)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "hotel", + "wordSecond": "酒店 (jiudian)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "quarto", + "wordSecond": "房间 (fangjian)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cama", + "wordSecond": "床 (chuang)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "banheiro", + "wordSecond": "浴室 (yushi)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "chave", + "wordSecond": "钥匙 (yaoshi)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "recepção", + "wordSecond": "前台 (qiantai)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "bilhete", + "wordSecond": "票 (piao)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "passagem", + "wordSecond": "车票 (chepiao)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "passagem de avião", + "wordSecond": "机票 (jipiao)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "entrada", + "wordSecond": "入口 (rukou)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "saída", + "wordSecond": "出口 (chukou)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "esquerda", + "wordSecond": "左 (zuo)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "direita", + "wordSecond": "右 (you)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "em frente", + "wordSecond": "直走 (zhizou)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "parar", + "wordSecond": "停 (ting)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "virar", + "wordSecond": "转弯 (zhuanwan)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "mapa", + "wordSecond": "地图 (ditu)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "rua", + "wordSecond": "街 (jie)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "praça", + "wordSecond": "广场 (guangchang)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "centro", + "wordSecond": "市中心 (shizhongxin)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dinheiro", + "wordSecond": "钱 (qian)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cartão", + "wordSecond": "卡 (ka)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "carteira", + "wordSecond": "钱包 (qianbao)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "passageiro", + "wordSecond": "乘客 (chengke)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "motorista", + "wordSecond": "司机 (siji)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "piloto", + "wordSecond": "飞行员 (feixingyuan)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "comissário de bordo", + "wordSecond": "空乘 (kongcheng)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "portão", + "wordSecond": "登机口 (dengjikou)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "check-in", + "wordSecond": "办理登机 (banli dengji)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "segurança", + "wordSecond": "安检 (anjian)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "alfândega", + "wordSecond": "海关 (haiguan)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "partida", + "wordSecond": "出发 (chufa)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "chegada", + "wordSecond": "到达 (daoda)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "atraso", + "wordSecond": "延误 (yanwu)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "horário", + "wordSecond": "时间表 (shijianbiao)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "informação", + "wordSecond": "信息 (xinxi)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ajuda", + "wordSecond": "帮助 (bangzhu)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "perdido", + "wordSecond": "迷路 (milu)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "banco", + "wordSecond": "银行 (yinhang)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "caixa eletrônico", + "wordSecond": "自动取款机 (zidong qukuanji)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "restaurante", + "wordSecond": "餐厅 (canting)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "café", + "wordSecond": "咖啡馆 (kafeiguan)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "comida", + "wordSecond": "食物 (shiwu)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "água", + "wordSecond": "水 (shui)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "banco", + "wordSecond": "长椅 (changyi)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sinal", + "wordSecond": "信号 (xinhao)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "semáforo", + "wordSecond": "红绿灯 (honglvdeng)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ponte", + "wordSecond": "桥 (qiao)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "túnel", + "wordSecond": "隧道 (suidao)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "parque", + "wordSecond": "公园 (gongyuan)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "museu", + "wordSecond": "博物馆 (bowuguan)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "loja", + "wordSecond": "商店 (shangdian)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "farmacia", + "wordSecond": "药店 (yaodian)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "hospital", + "wordSecond": "医院 (yiyuan)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "telefone", + "wordSecond": "电话 (dianhua)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "internet", + "wordSecond": "网络 (wangluo)", + "createdAt": "2026-02-19T14:33:46.328Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_zh_ko_A2.json b/output/2026_02_19_travel_transport_zh_ko_A2.json new file mode 100644 index 0000000..0b71d8f --- /dev/null +++ b/output/2026_02_19_travel_transport_zh_ko_A2.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:41:10.331Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "飞机 (feiji)", + "wordSecond": "비행기 (bihaenggi)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "火车 (huoche)", + "wordSecond": "기차 (gicha)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "公共汽车 (gonggong qiche)", + "wordSecond": "버스 (beoseu)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "出租车 (chuzuche)", + "wordSecond": "택시 (taeksi)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "船 (chuan)", + "wordSecond": "배 (bae)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "汽车 (qiche)", + "wordSecond": "자동차 (jadongcha)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "自行车 (zixingche)", + "wordSecond": "자전거 (jajeongeo)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "地铁 (ditie)", + "wordSecond": "지하철 (jihacheol)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "机场 (jichang)", + "wordSecond": "공항 (gonghang)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "火车站 (huochezhan)", + "wordSecond": "기차역 (gichayeok)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "汽车站 (qichezhan)", + "wordSecond": "버스 터미널 (beoseu teomineol)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "酒店 (jiudian)", + "wordSecond": "호텔 (hotel)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "护照 (huzhao)", + "wordSecond": "여권 (yeogwon)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "票 (piao)", + "wordSecond": "표 (pyo)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "行李 (xingli)", + "wordSecond": "짐 (jim)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "行李箱 (xinglixiang)", + "wordSecond": "여행 가방 (yeohaeng gabang)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "地图 (ditu)", + "wordSecond": "지도 (jido)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "左 (zuo)", + "wordSecond": "왼쪽 (oenjjok)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "右 (you)", + "wordSecond": "오른쪽 (oreunjjok)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "直走 (zhizou)", + "wordSecond": "똑바로 가다 (ttokbaro gada)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "前面 (qianmian)", + "wordSecond": "앞 (ap)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "后面 (houmian)", + "wordSecond": "뒤 (dwi)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "这里 (zheli)", + "wordSecond": "여기 (yeogi)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "那里 (nali)", + "wordSecond": "저기 (jeogi)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "入口 (rukou)", + "wordSecond": "입구 (ipgu)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "出口 (chukou)", + "wordSecond": "출구 (chulgu)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "门 (men)", + "wordSecond": "문 (mun)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "窗户 (chuanghu)", + "wordSecond": "창문 (changmun)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "座位 (zuowei)", + "wordSecond": "좌석 (jwaseok)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "司机 (siji)", + "wordSecond": "운전사 (unjeonsa)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "乘客 (chengke)", + "wordSecond": "승객 (seunggaek)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "站台 (zhantai)", + "wordSecond": "플랫폼 (peullaetpom)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "时间 (shijian)", + "wordSecond": "시간 (sigan)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "到达 (daoda)", + "wordSecond": "도착하다 (dochakada)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "出发 (chufa)", + "wordSecond": "출발하다 (chulbalada)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "离开 (likai)", + "wordSecond": "떠나다 (tteonada)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "等待 (dengdai)", + "wordSecond": "기다리다 (gidarida)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "问 (wen)", + "wordSecond": "묻다 (mutda)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "帮助 (bangzhu)", + "wordSecond": "도움 (doum)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "钱 (qian)", + "wordSecond": "돈 (don)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "买 (mai)", + "wordSecond": "사다 (sada)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "卖 (mai)", + "wordSecond": "팔다 (palda)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "贵 (gui)", + "wordSecond": "비싸다 (bissada)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "便宜 (pianyi)", + "wordSecond": "싸다 (ssada)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "快 (kuai)", + "wordSecond": "빠르다 (ppareuda)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "慢 (man)", + "wordSecond": "느리다 (neurida)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "远 (yuan)", + "wordSecond": "멀다 (meolda)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "近 (jin)", + "wordSecond": "가깝다 (gakkapda)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "大 (da)", + "wordSecond": "크다 (keuda)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "小 (xiao)", + "wordSecond": "작다 (jakda)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "热 (re)", + "wordSecond": "덥다 (deopda)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "冷 (leng)", + "wordSecond": "춥다 (chupda)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "食物 (shiwu)", + "wordSecond": "음식 (eumsik)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "水 (shui)", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "咖啡 (kafei)", + "wordSecond": "커피 (keopi)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "茶 (cha)", + "wordSecond": "차 (cha)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "房间 (fangjian)", + "wordSecond": "방 (bang)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "床 (chuang)", + "wordSecond": "침대 (chimdae)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "钥匙 (yaoshi)", + "wordSecond": "열쇠 (yeolsoe)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "电梯 (dianti)", + "wordSecond": "엘리베이터 (ellibeiteo)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "楼梯 (louti)", + "wordSecond": "계단 (gyedan)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "街道 (jiedao)", + "wordSecond": "거리 (geori)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "城市 (chengshi)", + "wordSecond": "도시 (dosi)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "国家 (guojia)", + "wordSecond": "나라 (nara)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "旅行 (luxing)", + "wordSecond": "여행 (yeohaeng)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "假期 (jiaqi)", + "wordSecond": "휴가 (hyuga)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "海滩 (haitan)", + "wordSecond": "해변 (haebyeon)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "山 (shan)", + "wordSecond": "산 (san)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "博物馆 (bowuguan)", + "wordSecond": "박물관 (bangmulgwan)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "公园 (gongyuan)", + "wordSecond": "공원 (gongwon)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "商店 (shangdian)", + "wordSecond": "가게 (gage)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "厕所 (cesuo)", + "wordSecond": "화장실 (hwajangsil)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "医院 (yiyuan)", + "wordSecond": "병원 (byeongwon)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "警察 (jingcha)", + "wordSecond": "경찰 (gyeongchal)", + "createdAt": "2026-02-19T14:41:10.331Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_travel_transport_zh_pl_A2.json b/output/2026_02_19_travel_transport_zh_pl_A2.json new file mode 100644 index 0000000..2de313b --- /dev/null +++ b/output/2026_02_19_travel_transport_zh_pl_A2.json @@ -0,0 +1,981 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T14:41:27.960Z", + "metadata": { + "itemCount": 74, + "categoryCount": 1, + "exportScope": "Category: Travel & Transport" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Travel & Transport" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "飞机 (fei ji)", + "wordSecond": "samolot", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "火车 (huo che)", + "wordSecond": "pociąg", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "公共汽车 (gong gong qi che)", + "wordSecond": "autobus", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "汽车 (qi che)", + "wordSecond": "samochód", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "船 (chuan)", + "wordSecond": "statek", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "地铁 (di tie)", + "wordSecond": "metro", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "出租车 (chu zu che)", + "wordSecond": "taksówka", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "自行车 (zi xing che)", + "wordSecond": "rower", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "摩托车 (mo tuo che)", + "wordSecond": "motocykl", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "机场 (ji chang)", + "wordSecond": "lotnisko", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "火车站 (huo che zhan)", + "wordSecond": "dworzec kolejowy", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "汽车站 (qi che zhan)", + "wordSecond": "dworzec autobusowy", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "酒店 (jiu dian)", + "wordSecond": "hotel", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "护照 (hu zhao)", + "wordSecond": "paszport", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "票 (piao)", + "wordSecond": "bilet", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "行李 (xing li)", + "wordSecond": "bagaż", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "行李箱 (xing li xiang)", + "wordSecond": "walizka", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "背包 (bei bao)", + "wordSecond": "plecak", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "地图 (di tu)", + "wordSecond": "mapa", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "左 (zuo)", + "wordSecond": "lewo", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "右 (you)", + "wordSecond": "prawo", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "直走 (zhi zou)", + "wordSecond": "prosto", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "前 (qian)", + "wordSecond": "przód", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "后 (hou)", + "wordSecond": "tył", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "上 (shang)", + "wordSecond": "góra", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "下 (xia)", + "wordSecond": "dół", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "这里 (zhe li)", + "wordSecond": "tutaj", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "那里 (na li)", + "wordSecond": "tam", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "近 (jin)", + "wordSecond": "blisko", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "远 (yuan)", + "wordSecond": "daleko", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "快 (kuai)", + "wordSecond": "szybko", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "慢 (man)", + "wordSecond": "wolno", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "停 (ting)", + "wordSecond": "stop", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "走 (zou)", + "wordSecond": "iść", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "来 (lai)", + "wordSecond": "przyjść", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "去 (qu)", + "wordSecond": "iść (do)", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "到达 (dao da)", + "wordSecond": "przybyć", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "离开 (li kai)", + "wordSecond": "wyjechać", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "出发 (chu fa)", + "wordSecond": "wyruszyć", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "等待 (deng dai)", + "wordSecond": "czekać", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "问 (wen)", + "wordSecond": "pytać", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "帮助 (bang zhu)", + "wordSecond": "pomoc", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "厕所 (ce suo)", + "wordSecond": "toaleta", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "入口 (ru kou)", + "wordSecond": "wejście", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "出口 (chu kou)", + "wordSecond": "wyjście", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "门 (men)", + "wordSecond": "drzwi", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "窗户 (chuang hu)", + "wordSecond": "okno", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "座位 (zuo wei)", + "wordSecond": "miejsce", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "站台 (zhan tai)", + "wordSecond": "peron", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "登机口 (deng ji kou)", + "wordSecond": "bramka", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "安全检查 (an quan jian cha)", + "wordSecond": "kontrola bezpieczeństwa", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "海关 (hai guan)", + "wordSecond": "cło", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "钱 (qian)", + "wordSecond": "pieniądze", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "兑换 (dui huan)", + "wordSecond": "wymieniać", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "价格 (jia ge)", + "wordSecond": "cena", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "贵 (gui)", + "wordSecond": "drogi", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "便宜 (pian yi)", + "wordSecond": "tani", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "时间 (shi jian)", + "wordSecond": "czas", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "今天 (jin tian)", + "wordSecond": "dziś", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "明天 (ming tian)", + "wordSecond": "jutro", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "昨天 (zuo tian)", + "wordSecond": "wczoraj", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "小时 (xiao shi)", + "wordSecond": "godzina", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "分钟 (fen zhong)", + "wordSecond": "minuta", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "号码 (hao ma)", + "wordSecond": "numer", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "名字 (ming zi)", + "wordSecond": "imię", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "地址 (di zhi)", + "wordSecond": "adres", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "电话 (dian hua)", + "wordSecond": "telefon", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "钥匙 (yao shi)", + "wordSecond": "klucz", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "房间 (fang jian)", + "wordSecond": "pokój", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "床 (chuang)", + "wordSecond": "łóżko", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "早餐 (zao can)", + "wordSecond": "śniadanie", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "水 (shui)", + "wordSecond": "woda", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "食物 (shi wu)", + "wordSecond": "jedzenie", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "饮料 (yin liao)", + "wordSecond": "napój", + "createdAt": "2026-02-19T14:41:27.960Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_advanced_en_es_C1.json b/output/2026_02_19_verbs_advanced_en_es_C1.json new file mode 100644 index 0000000..143999e --- /dev/null +++ b/output/2026_02_19_verbs_advanced_en_es_C1.json @@ -0,0 +1,1904 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:49:17.083Z", + "metadata": { + "itemCount": 145, + "categoryCount": 1, + "exportScope": "Category: Verbs - Advanced" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Advanced" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "contemplate", + "wordSecond": "contemplar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "substantiate", + "wordSecond": "sustanciar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "corroborate", + "wordSecond": "corroborar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mitigate", + "wordSecond": "mitigar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "facilitate", + "wordSecond": "facilitar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "articulate", + "wordSecond": "articular", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lament", + "wordSecond": "lamentar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rejoice", + "wordSecond": "regocijarse", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "beseech", + "wordSecond": "suplicar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "forsake", + "wordSecond": "abandonar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "compel", + "wordSecond": "compeler", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "distinguish", + "wordSecond": "distinguir", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "elucidate", + "wordSecond": "elucidar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "scrutinize", + "wordSecond": "escrutar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "conjecture", + "wordSecond": "conjeturar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "exacerbate", + "wordSecond": "exacerbar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ameliorate", + "wordSecond": "mejorar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "procrastinate", + "wordSecond": "procrastinar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "reiterate", + "wordSecond": "reiterar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "perpetuate", + "wordSecond": "perpetuar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "oscillate", + "wordSecond": "oscilar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "coalesce", + "wordSecond": "coalescer", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "disseminate", + "wordSecond": "diseminar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "extrapolate", + "wordSecond": "extrapolar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "juxtapose", + "wordSecond": "yuxtaponer", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "obfuscate", + "wordSecond": "ofuscar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "preclude", + "wordSecond": "impedir", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "reconcile", + "wordSecond": "reconciliar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "subsume", + "wordSecond": "subsumir", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "transcend", + "wordSecond": "trascender", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "undermine", + "wordSecond": "socavar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "vindicate", + "wordSecond": "vindicar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wane", + "wordSecond": "menguar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "abhor", + "wordSecond": "aborrecer", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "acquiesce", + "wordSecond": "consentir", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "admonish", + "wordSecond": "amonestar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "alleviate", + "wordSecond": "aliviar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ascertain", + "wordSecond": "averiguar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "assuage", + "wordSecond": "calmar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "atrophy", + "wordSecond": "atrofiar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "augment", + "wordSecond": "aumentar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "berate", + "wordSecond": "regañar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "capitulate", + "wordSecond": "capitular", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "coerce", + "wordSecond": "coaccionar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "concur", + "wordSecond": "coincidir", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "condone", + "wordSecond": "condonar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "construe", + "wordSecond": "interpretar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "debilitate", + "wordSecond": "debilitar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "decimate", + "wordSecond": "diezmar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "deem", + "wordSecond": "considerar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "defer", + "wordSecond": "aplazar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "delineate", + "wordSecond": "delinear", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "demur", + "wordSecond": "objetar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "denigrate", + "wordSecond": "denigrar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "deplete", + "wordSecond": "agotar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "deride", + "wordSecond": "burlarse", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "deter", + "wordSecond": "disuadir", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dilate", + "wordSecond": "dilatar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "disavow", + "wordSecond": "rechazar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "disparage", + "wordSecond": "menospreciar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dissipate", + "wordSecond": "disipar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "divulge", + "wordSecond": "divulgar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "edify", + "wordSecond": "edificar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "elicit", + "wordSecond": "suscitar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "embellish", + "wordSecond": "embellecer", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "emulate", + "wordSecond": "emular", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "enamor", + "wordSecond": "enamorar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "encroach", + "wordSecond": "invadir", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "endorse", + "wordSecond": "respaldar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "engender", + "wordSecond": "engendrar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "enrapture", + "wordSecond": "embelesar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ensconce", + "wordSecond": "instalarse", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "enthrall", + "wordSecond": "cautivar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "entice", + "wordSecond": "tentar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "equivocate", + "wordSecond": "equívoco", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "eradicate", + "wordSecond": "erradicar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "espouse", + "wordSecond": "adoptar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "evince", + "wordSecond": "mostrar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "exculpate", + "wordSecond": "exculpar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "exhort", + "wordSecond": "exhortar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "exonerate", + "wordSecond": "exonerar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "expedite", + "wordSecond": "acelerar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "expound", + "wordSecond": "exponer", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "extol", + "wordSecond": "ensalzar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "extricate", + "wordSecond": "librar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fathom", + "wordSecond": "comprender", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "flounder", + "wordSecond": "forcejear", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "gainsay", + "wordSecond": "contradecir", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "garner", + "wordSecond": "reunir", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "goad", + "wordSecond": "incitar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hinder", + "wordSecond": "obstaculizar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "impair", + "wordSecond": "perjudicar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "implore", + "wordSecond": "implorar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "incarcerate", + "wordSecond": "encarcelar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "incite", + "wordSecond": "incitar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "inculcate", + "wordSecond": "inculcar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "indict", + "wordSecond": "acusar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "induce", + "wordSecond": "inducir", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "infer", + "wordSecond": "inferir", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ingratiate", + "wordSecond": "congraciarse", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "inhibit", + "wordSecond": "inhibir", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "instigate", + "wordSecond": "instigar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "interpolate", + "wordSecond": "interpolar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "inundate", + "wordSecond": "inundar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "inveigh", + "wordSecond": "invectivar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "languish", + "wordSecond": "languidecer", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lionize", + "wordSecond": "enaltecer", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "malign", + "wordSecond": "difamar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mollify", + "wordSecond": "aplacar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100109, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "obliterate", + "wordSecond": "borrar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100110, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "obviate", + "wordSecond": "obviar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100111, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "permeate", + "wordSecond": "permeabilizar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100112, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "perturb", + "wordSecond": "perturbar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100113, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "postulate", + "wordSecond": "postular", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100114, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "prevaricate", + "wordSecond": "prevaricar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100115, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "proliferate", + "wordSecond": "proliferar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100116, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "propagate", + "wordSecond": "propagar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100117, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "propitiate", + "wordSecond": "propiciar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100118, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "proscribe", + "wordSecond": "proscribir", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100119, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "quell", + "wordSecond": "sofocar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100120, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rebuff", + "wordSecond": "rechazar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100121, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "relegate", + "wordSecond": "relegar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100122, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "remonstrate", + "wordSecond": "protestar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100123, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "renege", + "wordSecond": "renegar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100124, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "repudiate", + "wordSecond": "repudiar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100125, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rescind", + "wordSecond": "rescindir", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100126, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "retaliate", + "wordSecond": "vengarse", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100127, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sanction", + "wordSecond": "sancionar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100128, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "satiate", + "wordSecond": "saciar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100129, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sequester", + "wordSecond": "secuestrar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100130, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "solicit", + "wordSecond": "solicitar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100131, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "stymie", + "wordSecond": "obstaculizar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100132, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "subjugate", + "wordSecond": "subyugar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100133, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "suffice", + "wordSecond": "bastar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100134, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "supplant", + "wordSecond": "suplantar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100135, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "tantalize", + "wordSecond": "tentar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100136, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "temporize", + "wordSecond": "temporizar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100137, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "truncate", + "wordSecond": "truncar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100138, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "undulate", + "wordSecond": "ondular", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100139, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "usurp", + "wordSecond": "usurpar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100140, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "vacillate", + "wordSecond": "vacilar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100141, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "vilify", + "wordSecond": "vilipendiar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100142, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "vouchsafe", + "wordSecond": "conceder", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100143, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wheedle", + "wordSecond": "engatusar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + }, + { + "id": 100144, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wither", + "wordSecond": "marchitar", + "createdAt": "2026-02-19T15:49:17.083Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + }, + { + "vocabularyItemId": 100109, + "stage": "NEW" + }, + { + "vocabularyItemId": 100110, + "stage": "NEW" + }, + { + "vocabularyItemId": 100111, + "stage": "NEW" + }, + { + "vocabularyItemId": 100112, + "stage": "NEW" + }, + { + "vocabularyItemId": 100113, + "stage": "NEW" + }, + { + "vocabularyItemId": 100114, + "stage": "NEW" + }, + { + "vocabularyItemId": 100115, + "stage": "NEW" + }, + { + "vocabularyItemId": 100116, + "stage": "NEW" + }, + { + "vocabularyItemId": 100117, + "stage": "NEW" + }, + { + "vocabularyItemId": 100118, + "stage": "NEW" + }, + { + "vocabularyItemId": 100119, + "stage": "NEW" + }, + { + "vocabularyItemId": 100120, + "stage": "NEW" + }, + { + "vocabularyItemId": 100121, + "stage": "NEW" + }, + { + "vocabularyItemId": 100122, + "stage": "NEW" + }, + { + "vocabularyItemId": 100123, + "stage": "NEW" + }, + { + "vocabularyItemId": 100124, + "stage": "NEW" + }, + { + "vocabularyItemId": 100125, + "stage": "NEW" + }, + { + "vocabularyItemId": 100126, + "stage": "NEW" + }, + { + "vocabularyItemId": 100127, + "stage": "NEW" + }, + { + "vocabularyItemId": 100128, + "stage": "NEW" + }, + { + "vocabularyItemId": 100129, + "stage": "NEW" + }, + { + "vocabularyItemId": 100130, + "stage": "NEW" + }, + { + "vocabularyItemId": 100131, + "stage": "NEW" + }, + { + "vocabularyItemId": 100132, + "stage": "NEW" + }, + { + "vocabularyItemId": 100133, + "stage": "NEW" + }, + { + "vocabularyItemId": 100134, + "stage": "NEW" + }, + { + "vocabularyItemId": 100135, + "stage": "NEW" + }, + { + "vocabularyItemId": 100136, + "stage": "NEW" + }, + { + "vocabularyItemId": 100137, + "stage": "NEW" + }, + { + "vocabularyItemId": 100138, + "stage": "NEW" + }, + { + "vocabularyItemId": 100139, + "stage": "NEW" + }, + { + "vocabularyItemId": 100140, + "stage": "NEW" + }, + { + "vocabularyItemId": 100141, + "stage": "NEW" + }, + { + "vocabularyItemId": 100142, + "stage": "NEW" + }, + { + "vocabularyItemId": 100143, + "stage": "NEW" + }, + { + "vocabularyItemId": 100144, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_advanced_en_pt_C1.json b/output/2026_02_19_verbs_advanced_en_pt_C1.json new file mode 100644 index 0000000..f9062ce --- /dev/null +++ b/output/2026_02_19_verbs_advanced_en_pt_C1.json @@ -0,0 +1,1553 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:49:42.055Z", + "metadata": { + "itemCount": 118, + "categoryCount": 1, + "exportScope": "Category: Verbs - Advanced" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Advanced" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "contemplate", + "wordSecond": "contemplar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "substantiate", + "wordSecond": "substanciar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "corroborate", + "wordSecond": "corroborar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mitigate", + "wordSecond": "mitigar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "facilitate", + "wordSecond": "facilitar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "articulate", + "wordSecond": "articular", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lament", + "wordSecond": "lamentar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rejoice", + "wordSecond": "regozijar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "beseech", + "wordSecond": "implorar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "forsake", + "wordSecond": "abandonar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "distinguish", + "wordSecond": "distinguir", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "compel", + "wordSecond": "compelir", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "elucidate", + "wordSecond": "esclarecer", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "scrutinize", + "wordSecond": "escrutinar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "conjecture", + "wordSecond": "conjeturar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "exacerbate", + "wordSecond": "exacerbar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ameliorate", + "wordSecond": "ameliorar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "procrastinate", + "wordSecond": "procrastinar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "oscillate", + "wordSecond": "oscilar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "perpetuate", + "wordSecond": "perpetuar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "reconcile", + "wordSecond": "reconciliar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "delineate", + "wordSecond": "delinear", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "expropriate", + "wordSecond": "expropriar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "extrapolate", + "wordSecond": "extrapolar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "disseminate", + "wordSecond": "disseminar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "assimilate", + "wordSecond": "assimilar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "coalesce", + "wordSecond": "coalescer", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "abrogate", + "wordSecond": "ab-rogar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "construe", + "wordSecond": "interpretar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "obfuscate", + "wordSecond": "obfuscar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "relegate", + "wordSecond": "relegar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "transcend", + "wordSecond": "transcender", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "vindicate", + "wordSecond": "vindicar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "exonerate", + "wordSecond": "exonerar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "incarcerate", + "wordSecond": "encarcerar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "extricate", + "wordSecond": "extricar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "prevaricate", + "wordSecond": "prevaricar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "equivocate", + "wordSecond": "equivocar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "exculpate", + "wordSecond": "exculpar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "expatiate", + "wordSecond": "expatiar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "expropriate", + "wordSecond": "expropriar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "extirpate", + "wordSecond": "extirpar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fulminate", + "wordSecond": "fulminar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "inculcate", + "wordSecond": "inculcar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "obviate", + "wordSecond": "obviar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "perambulate", + "wordSecond": "perambular", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "peregrinate", + "wordSecond": "peregrinar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "proliferate", + "wordSecond": "proliferar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "recapitulate", + "wordSecond": "recapitular", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "reconnoiter", + "wordSecond": "reconhecer", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rejuvenate", + "wordSecond": "rejuvenescer", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "remonstrate", + "wordSecond": "remonstrar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "resuscitate", + "wordSecond": "ressuscitar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "retaliate", + "wordSecond": "retaliar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sequester", + "wordSecond": "sequestrar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "subjugate", + "wordSecond": "subjugar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "suffocate", + "wordSecond": "sufocar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "supplicate", + "wordSecond": "suplicar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "transmute", + "wordSecond": "transmutar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "vacillate", + "wordSecond": "vacilar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "vilify", + "wordSecond": "vilipendiar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "vituperate", + "wordSecond": "vituperar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "abate", + "wordSecond": "abater", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "abet", + "wordSecond": "incitar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "abhor", + "wordSecond": "aborrecer", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "abjure", + "wordSecond": "abjurar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "abnegate", + "wordSecond": "abnegar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "abscond", + "wordSecond": "evadir-se", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "accede", + "wordSecond": "acceder", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "acclimate", + "wordSecond": "aclimatar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "accrete", + "wordSecond": "acrescer", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "acquiesce", + "wordSecond": "aquiescer", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "adjudicate", + "wordSecond": "adjudicar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "admonish", + "wordSecond": "admoestar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "adulterate", + "wordSecond": "adulterar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "aggrandize", + "wordSecond": "engrandecer", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "alleviate", + "wordSecond": "aliviar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "amalgamate", + "wordSecond": "amalgamar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "annihilate", + "wordSecond": "aniquilar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "apportion", + "wordSecond": "ratear", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "apprise", + "wordSecond": "informar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "appropriate", + "wordSecond": "apropriar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "arrogate", + "wordSecond": "arrogatar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "attenuate", + "wordSecond": "atenuar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "aver", + "wordSecond": "afirmar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "beguile", + "wordSecond": "iludir", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "behoove", + "wordSecond": "convir", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "berate", + "wordSecond": "repreender", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "blaspheme", + "wordSecond": "blasfemar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cajole", + "wordSecond": "lisonjear", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "castigate", + "wordSecond": "castigar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cavort", + "wordSecond": "saltitar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "circumvent", + "wordSecond": "contornar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "coerce", + "wordSecond": "coagir", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cogitate", + "wordSecond": "cogitar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "commiserate", + "wordSecond": "comiserar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "conciliate", + "wordSecond": "conciliar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "condone", + "wordSecond": "condonar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "conflate", + "wordSecond": "fundir", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "confute", + "wordSecond": "refutar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "consecrate", + "wordSecond": "consagrar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "construe", + "wordSecond": "interpretar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "contravene", + "wordSecond": "contrapor", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "convalesce", + "wordSecond": "convalescer", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "convoke", + "wordSecond": "convocar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "debase", + "wordSecond": "rebaixar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "decimate", + "wordSecond": "dizimar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "decry", + "wordSecond": "denunciar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "defenestrate", + "wordSecond": "defenestrar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100109, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "deign", + "wordSecond": "dignar-se", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100110, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "demur", + "wordSecond": "objetar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100111, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "denigrate", + "wordSecond": "denegrir", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100112, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "deprecate", + "wordSecond": "depreciar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100113, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "deride", + "wordSecond": "zombar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100114, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "desecrate", + "wordSecond": "profanar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100115, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "desiccate", + "wordSecond": "dessecar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100116, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "detonate", + "wordSecond": "detonar", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + }, + { + "id": 100117, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "devolve", + "wordSecond": "devolver", + "createdAt": "2026-02-19T15:49:42.055Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + }, + { + "vocabularyItemId": 100109, + "stage": "NEW" + }, + { + "vocabularyItemId": 100110, + "stage": "NEW" + }, + { + "vocabularyItemId": 100111, + "stage": "NEW" + }, + { + "vocabularyItemId": 100112, + "stage": "NEW" + }, + { + "vocabularyItemId": 100113, + "stage": "NEW" + }, + { + "vocabularyItemId": 100114, + "stage": "NEW" + }, + { + "vocabularyItemId": 100115, + "stage": "NEW" + }, + { + "vocabularyItemId": 100116, + "stage": "NEW" + }, + { + "vocabularyItemId": 100117, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_advanced_es_pt_C1.json b/output/2026_02_19_verbs_advanced_es_pt_C1.json new file mode 100644 index 0000000..dbfd367 --- /dev/null +++ b/output/2026_02_19_verbs_advanced_es_pt_C1.json @@ -0,0 +1,1462 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:50:05.349Z", + "metadata": { + "itemCount": 111, + "categoryCount": 1, + "exportScope": "Category: Verbs - Advanced" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Advanced" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "contemplar", + "wordSecond": "contemplar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sustanciar", + "wordSecond": "substanciar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "corroborar", + "wordSecond": "corroborar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mitigar", + "wordSecond": "mitigar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "facilitar", + "wordSecond": "facilitar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "articular", + "wordSecond": "articular", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lamentar", + "wordSecond": "lamentar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "regocijarse", + "wordSecond": "regozijar-se", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "suplicar", + "wordSecond": "suplicar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "implorar", + "wordSecond": "implorar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "abandonar", + "wordSecond": "abandonar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "distinguir", + "wordSecond": "distinguir", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "compeler", + "wordSecond": "compelir", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "obligar", + "wordSecond": "obrigar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "forzar", + "wordSecond": "forçar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "percibir", + "wordSecond": "perceber", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "concebir", + "wordSecond": "conceber", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "elucidar", + "wordSecond": "elucidar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escrutar", + "wordSecond": "escrutar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "especular", + "wordSecond": "especular", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "postular", + "wordSecond": "postular", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "presuponer", + "wordSecond": "pressupor", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "conjeturar", + "wordSecond": "conjeturar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "inferir", + "wordSecond": "inferir", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "deducir", + "wordSecond": "deduzir", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "extrapolar", + "wordSecond": "extrapolar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sintetizar", + "wordSecond": "sintetizar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "concatenar", + "wordSecond": "concatenar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "integrar", + "wordSecond": "integrar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "asimilar", + "wordSecond": "assimilar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "digerir", + "wordSecond": "digerir", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dilucidar", + "wordSecond": "dilucidar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desentrañar", + "wordSecond": "desvendar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desglosar", + "wordSecond": "desmembrar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "descomponer", + "wordSecond": "decompor", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "recomponer", + "wordSecond": "recompor", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reconfigurar", + "wordSecond": "reconfigurar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reestructurar", + "wordSecond": "reestruturar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reformular", + "wordSecond": "reformular", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "replantear", + "wordSecond": "replanejar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cuestionar", + "wordSecond": "questionar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "impugnar", + "wordSecond": "impugnar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "refutar", + "wordSecond": "refutar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rebatir", + "wordSecond": "rebater", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "contradecir", + "wordSecond": "contradizer", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desmentir", + "wordSecond": "desmentir", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desacreditar", + "wordSecond": "desacreditar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "invalidar", + "wordSecond": "invalidar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "anular", + "wordSecond": "anular", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "revocar", + "wordSecond": "revogar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ratificar", + "wordSecond": "ratificar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sancionar", + "wordSecond": "sancionar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "promulgar", + "wordSecond": "promulgar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "promover", + "wordSecond": "promover", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "propulsar", + "wordSecond": "propulsar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "propiciar", + "wordSecond": "propiciar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fomentar", + "wordSecond": "fomentar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "incentivar", + "wordSecond": "incentivar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estimular", + "wordSecond": "estimular", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "incitar", + "wordSecond": "incitar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "instigar", + "wordSecond": "instigar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "provocar", + "wordSecond": "provocar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desencadenar", + "wordSecond": "desencadear", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desatar", + "wordSecond": "desatar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desbordar", + "wordSecond": "transbordar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rebasar", + "wordSecond": "ultrapassar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sobrepasar", + "wordSecond": "sobrepassar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "superar", + "wordSecond": "superar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sobrellevar", + "wordSecond": "sobrelevar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "soportar", + "wordSecond": "suportar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tolerar", + "wordSecond": "tolerar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sustentar", + "wordSecond": "sustentar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sostener", + "wordSecond": "sustentar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mantener", + "wordSecond": "manter", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "preservar", + "wordSecond": "preservar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "conservar", + "wordSecond": "conservar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "custodiar", + "wordSecond": "custodiar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "salvaguardar", + "wordSecond": "salvaguardar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "resguardar", + "wordSecond": "resguardar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "proteger", + "wordSecond": "proteger", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "amparar", + "wordSecond": "amparar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "acoger", + "wordSecond": "acolher", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "albergar", + "wordSecond": "abrigar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alojar", + "wordSecond": "alojar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hospedar", + "wordSecond": "hospedar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "acomodar", + "wordSecond": "acomodar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "adaptar", + "wordSecond": "adaptar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ajustar", + "wordSecond": "ajustar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "afinar", + "wordSecond": "afinar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "perfeccionar", + "wordSecond": "aperfeiçoar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pulir", + "wordSecond": "polir", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "depurar", + "wordSecond": "depurar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "refinar", + "wordSecond": "refinar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sublimar", + "wordSecond": "sublimar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "transmutar", + "wordSecond": "transmutar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "transformar", + "wordSecond": "transformar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "transfigurar", + "wordSecond": "transfigurar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "metamorfosear", + "wordSecond": "metamorfosear", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "evolucionar", + "wordSecond": "evoluir", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "progresar", + "wordSecond": "progredir", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "avanzar", + "wordSecond": "avançar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "prosperar", + "wordSecond": "prosperar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "florecer", + "wordSecond": "florescer", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "menguar", + "wordSecond": "minguar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "decaer", + "wordSecond": "decair", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desvanecer", + "wordSecond": "desvanecer", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desaparecer", + "wordSecond": "desaparecer", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "extinguir", + "wordSecond": "extinguir", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "erradicar", + "wordSecond": "erradicar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100109, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "exterminar", + "wordSecond": "exterminar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + }, + { + "id": 100110, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aniquilar", + "wordSecond": "aniquilar", + "createdAt": "2026-02-19T15:50:05.349Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + }, + { + "vocabularyItemId": 100109, + "stage": "NEW" + }, + { + "vocabularyItemId": 100110, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_de_fr_A1.json b/output/2026_02_19_verbs_beginners_de_fr_A1.json new file mode 100644 index 0000000..f171ae9 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_de_fr_A1.json @@ -0,0 +1,1410 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:26:12.177Z", + "metadata": { + "itemCount": 107, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "sein", + "wordSecond": "être", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "haben", + "wordSecond": "avoir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "machen", + "wordSecond": "faire", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "gehen", + "wordSecond": "aller", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "kommen", + "wordSecond": "venir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "sehen", + "wordSecond": "voir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "hören", + "wordSecond": "entendre", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "sagen", + "wordSecond": "dire", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "wissen", + "wordSecond": "savoir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "denken", + "wordSecond": "penser", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "finden", + "wordSecond": "trouver", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "nehmen", + "wordSecond": "prendre", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "geben", + "wordSecond": "donner", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "leben", + "wordSecond": "vivre", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "arbeiten", + "wordSecond": "travailler", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "brauchen", + "wordSecond": "avoir besoin", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "spielen", + "wordSecond": "jouer", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "lieben", + "wordSecond": "aimer", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "mögen", + "wordSecond": "aimer", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "essen", + "wordSecond": "manger", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "trinken", + "wordSecond": "boire", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schlafen", + "wordSecond": "dormir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "wachen", + "wordSecond": "se réveiller", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "stehen", + "wordSecond": "se lever", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "sitzen", + "wordSecond": "s'asseoir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "laufen", + "wordSecond": "courir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "fahren", + "wordSecond": "conduire", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "fliegen", + "wordSecond": "voler", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schwimmen", + "wordSecond": "nager", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "tanzen", + "wordSecond": "danser", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "singen", + "wordSecond": "chanter", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "lachen", + "wordSecond": "rire", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "weinen", + "wordSecond": "pleurer", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "fragen", + "wordSecond": "demander", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "antworten", + "wordSecond": "répondre", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "lesen", + "wordSecond": "lire", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schreiben", + "wordSecond": "écrire", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "öffnen", + "wordSecond": "ouvrir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schließen", + "wordSecond": "fermer", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "kaufen", + "wordSecond": "acheter", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "verkaufen", + "wordSecond": "vendre", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "zahlen", + "wordSecond": "payer", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "kosten", + "wordSecond": "coûter", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "helfen", + "wordSecond": "aider", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "warten", + "wordSecond": "attendre", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "beginnen", + "wordSecond": "commencer", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "enden", + "wordSecond": "finir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "verstehen", + "wordSecond": "comprendre", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "lernen", + "wordSecond": "apprendre", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "lehren", + "wordSecond": "enseigner", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "vergessen", + "wordSecond": "oublier", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "erinnern", + "wordSecond": "se souvenir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "suchen", + "wordSecond": "chercher", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "zeigen", + "wordSecond": "montrer", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "folgen", + "wordSecond": "suivre", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "bleiben", + "wordSecond": "rester", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "verlassen", + "wordSecond": "quitter", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "ankommen", + "wordSecond": "arriver", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "verlieren", + "wordSecond": "perdre", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "gewinnen", + "wordSecond": "gagner", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "kochen", + "wordSecond": "cuisiner", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "backen", + "wordSecond": "faire cuire", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "waschen", + "wordSecond": "laver", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "putzen", + "wordSecond": "nettoyer", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "räumen", + "wordSecond": "ranger", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "bauen", + "wordSecond": "construire", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "reparieren", + "wordSecond": "réparer", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "malen", + "wordSecond": "peindre", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "zeichnen", + "wordSecond": "dessiner", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "fotografieren", + "wordSecond": "photographier", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "telefonieren", + "wordSecond": "téléphoner", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "hören", + "wordSecond": "écouter", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schauen", + "wordSecond": "regarder", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "fühlen", + "wordSecond": "sentir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "riechen", + "wordSecond": "sentir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schmecken", + "wordSecond": "goûter", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "berühren", + "wordSecond": "toucher", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "tragen", + "wordSecond": "porter", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "anziehen", + "wordSecond": "s'habiller", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "ausziehen", + "wordSecond": "se déshabiller", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "waschen", + "wordSecond": "se laver", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "kämmen", + "wordSecond": "se peigner", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "grüßen", + "wordSecond": "saluer", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "danken", + "wordSecond": "remercier", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "entschuldigen", + "wordSecond": "s'excuser", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "wünschen", + "wordSecond": "souhaiter", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "hoffen", + "wordSecond": "espérer", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "fürchten", + "wordSecond": "craindre", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "müssen", + "wordSecond": "devoir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "können", + "wordSecond": "pouvoir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "wollen", + "wordSecond": "vouloir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "dürfen", + "wordSecond": "pouvoir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "sollen", + "wordSecond": "devoir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "möchten", + "wordSecond": "vouloir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "werden", + "wordSecond": "devenir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "bleiben", + "wordSecond": "rester", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "scheinen", + "wordSecond": "sembler", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "passieren", + "wordSecond": "arriver", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "gefallen", + "wordSecond": "plaire", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "gehören", + "wordSecond": "appartenir", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "bedeuten", + "wordSecond": "signifier", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "erklären", + "wordSecond": "expliquer", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "erzählen", + "wordSecond": "raconter", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "versuchen", + "wordSecond": "essayer", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "vergessen", + "wordSecond": "oublier", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "merken", + "wordSecond": "remarquer", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "entscheiden", + "wordSecond": "décider", + "createdAt": "2026-02-19T12:26:12.177Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_de_it_A1.json b/output/2026_02_19_verbs_beginners_de_it_A1.json new file mode 100644 index 0000000..c41c6ab --- /dev/null +++ b/output/2026_02_19_verbs_beginners_de_it_A1.json @@ -0,0 +1,1358 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:26:31.588Z", + "metadata": { + "itemCount": 103, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "sein", + "wordSecond": "essere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "haben", + "wordSecond": "avere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "machen", + "wordSecond": "fare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "gehen", + "wordSecond": "andare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "kommen", + "wordSecond": "venire", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "sehen", + "wordSecond": "vedere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "hören", + "wordSecond": "sentire", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "sagen", + "wordSecond": "dire", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "geben", + "wordSecond": "dare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "nehmen", + "wordSecond": "prendere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "wissen", + "wordSecond": "sapere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "denken", + "wordSecond": "pensare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "finden", + "wordSecond": "trovare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "bleiben", + "wordSecond": "restare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "liegen", + "wordSecond": "giacere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "stehen", + "wordSecond": "stare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "legen", + "wordSecond": "mettere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "setzen", + "wordSecond": "sedere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "laufen", + "wordSecond": "correre", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "fahren", + "wordSecond": "guidare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "fliegen", + "wordSecond": "volare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "schwimmen", + "wordSecond": "nuotare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "springen", + "wordSecond": "saltare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "tanzen", + "wordSecond": "ballare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "singen", + "wordSecond": "cantare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "spielen", + "wordSecond": "giocare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "arbeiten", + "wordSecond": "lavorare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "lernen", + "wordSecond": "imparare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "lesen", + "wordSecond": "leggere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "schreiben", + "wordSecond": "scrivere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "öffnen", + "wordSecond": "aprire", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "schließen", + "wordSecond": "chiudere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "kaufen", + "wordSecond": "comprare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "verkaufen", + "wordSecond": "vendere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zahlen", + "wordSecond": "pagare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "essen", + "wordSecond": "mangiare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "trinken", + "wordSecond": "bere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "kochen", + "wordSecond": "cucinare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "backen", + "wordSecond": "cuocere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "waschen", + "wordSecond": "lavare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "putzen", + "wordSecond": "pulire", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "räumen", + "wordSecond": "riordinare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "schlafen", + "wordSecond": "dormire", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "aufwachen", + "wordSecond": "svegliarsi", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "anziehen", + "wordSecond": "vestirsi", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "ausziehen", + "wordSecond": "spogliarsi", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "warten", + "wordSecond": "aspettare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "helfen", + "wordSecond": "aiutare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "brauchen", + "wordSecond": "aver bisogno", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "mögen", + "wordSecond": "piacere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "lieben", + "wordSecond": "amare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "hassen", + "wordSecond": "odiare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "lachen", + "wordSecond": "ridere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "weinen", + "wordSecond": "piangere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "lächeln", + "wordSecond": "sorridere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "fühlen", + "wordSecond": "sentire", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "verstehen", + "wordSecond": "capire", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "fragen", + "wordSecond": "chiedere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "antworten", + "wordSecond": "rispondere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "erzählen", + "wordSecond": "raccontare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zeigen", + "wordSecond": "mostrare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "suchen", + "wordSecond": "cercare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "beginnen", + "wordSecond": "cominciare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "enden", + "wordSecond": "finire", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "stoppen", + "wordSecond": "fermare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "vergessen", + "wordSecond": "dimenticare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "erinnern", + "wordSecond": "ricordare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "gewinnen", + "wordSecond": "vincere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "verlieren", + "wordSecond": "perdere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "bauen", + "wordSecond": "costruire", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "reparieren", + "wordSecond": "riparare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "zeichnen", + "wordSecond": "disegnare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "malen", + "wordSecond": "dipingere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "fotografieren", + "wordSecond": "fotografare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "fernsehen", + "wordSecond": "guardare la TV", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "telefonieren", + "wordSecond": "telefonare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "besuchen", + "wordSecond": "visitare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "reisen", + "wordSecond": "viaggiare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "ankommen", + "wordSecond": "arrivare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "verlassen", + "wordSecond": "lasciare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "treffen", + "wordSecond": "incontrare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "grüßen", + "wordSecond": "salutare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "danken", + "wordSecond": "ringraziare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "entschuldigen", + "wordSecond": "scusarsi", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "wollen", + "wordSecond": "volere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "können", + "wordSecond": "potere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "müssen", + "wordSecond": "dovere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "dürfen", + "wordSecond": "potere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "sollen", + "wordSecond": "dovere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "möchten", + "wordSecond": "desiderare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "versuchen", + "wordSecond": "provare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "hoffen", + "wordSecond": "sperare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "glauben", + "wordSecond": "credere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "wünschen", + "wordSecond": "desiderare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "bitten", + "wordSecond": "chiedere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "erlauben", + "wordSecond": "permettere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "verbieten", + "wordSecond": "proibire", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "empfehlen", + "wordSecond": "consigliare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "bedeuten", + "wordSecond": "significare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "ändern", + "wordSecond": "cambiare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "vergessen", + "wordSecond": "dimenticare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "wiederholen", + "wordSecond": "ripetere", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "erklären", + "wordSecond": "spiegare", + "createdAt": "2026-02-19T12:26:31.588Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_de_ja_A1.json b/output/2026_02_19_verbs_beginners_de_ja_A1.json new file mode 100644 index 0000000..1717ef1 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_de_ja_A1.json @@ -0,0 +1,1395 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:27:08.685Z", + "metadata": { + "itemCount": 110, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "gehen", + "wordSecond": "行く (いく, iku)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "kommen", + "wordSecond": "来る (くる, kuru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "laufen", + "wordSecond": "走る (はしる, hashiru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "stehen", + "wordSecond": "立つ (たつ, tatsu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "sitzen", + "wordSecond": "座る (すわる, suwaru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "schlafen", + "wordSecond": "寝る (ねる, neru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "aufwachen", + "wordSecond": "起きる (おきる, okiru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "essen", + "wordSecond": "食べる (たべる, taberu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "trinken", + "wordSecond": "飲む (のむ, nomu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "sehen", + "wordSecond": "見る (みる, miru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "hören", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "sprechen", + "wordSecond": "話す (はなす, hanasu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "sagen", + "wordSecond": "言う (いう, iu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "fragen", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "antworten", + "wordSecond": "答える (こたえる, kotaeru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "lesen", + "wordSecond": "読む (よむ, yomu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "schreiben", + "wordSecond": "書く (かく, kaku)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "arbeiten", + "wordSecond": "働く (はたらく, hataraku)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "lernen", + "wordSecond": "勉強する (べんきょうする, benkyō suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "spielen", + "wordSecond": "遊ぶ (あそぶ, asobu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "kaufen", + "wordSecond": "買う (かう, kau)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "verkaufen", + "wordSecond": "売る (うる, uru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "geben", + "wordSecond": "あげる (ageru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "nehmen", + "wordSecond": "取る (とる, toru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "öffnen", + "wordSecond": "開ける (あける, akeru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "schließen", + "wordSecond": "閉める (しめる, shimeru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "beginnen", + "wordSecond": "始める (はじめる, hajimeru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "enden", + "wordSecond": "終わる (おわる, owaru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "warten", + "wordSecond": "待つ (まつ, matsu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "treffen", + "wordSecond": "会う (あう, au)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "verlassen", + "wordSecond": "出る (でる, deru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "ankommen", + "wordSecond": "着く (つく, tsuku)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "reisen", + "wordSecond": "旅行する (りょこうする, ryokō suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "fahren", + "wordSecond": "乗る (のる, noru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "fliegen", + "wordSecond": "飛ぶ (とぶ, tobu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "schwimmen", + "wordSecond": "泳ぐ (およぐ, oyogu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "tanzen", + "wordSecond": "踊る (おどる, odoru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "singen", + "wordSecond": "歌う (うたう, utau)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "lachen", + "wordSecond": "笑う (わらう, warau)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "weinen", + "wordSecond": "泣く (なく, naku)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "lieben", + "wordSecond": "愛する (あいする, ai suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "mögen", + "wordSecond": "好き (すき, suki)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "denken", + "wordSecond": "思う (おもう, omou)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "wissen", + "wordSecond": "知る (しる, shiru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "verstehen", + "wordSecond": "分かる (わかる, wakaru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "vergessen", + "wordSecond": "忘れる (わすれる, wasureru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "erinnern", + "wordSecond": "覚える (おぼえる, oboeru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "helfen", + "wordSecond": "助ける (たすける, tasukeru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "brauchen", + "wordSecond": "要る (いる, iru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "haben", + "wordSecond": "持つ (もつ, motsu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "sein", + "wordSecond": "いる (iru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "tun", + "wordSecond": "する (suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "machen", + "wordSecond": "作る (つくる, tsukuru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "kochen", + "wordSecond": "料理する (りょうりする, ryōri suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "backen", + "wordSecond": "焼く (やく, yaku)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "waschen", + "wordSecond": "洗う (あらう, arau)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "putzen", + "wordSecond": "掃除する (そうじする, sōji suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "aufräumen", + "wordSecond": "片付ける (かたづける, katazukeru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "einkaufen", + "wordSecond": "買い物する (かいものする, kaimono suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "bezahlen", + "wordSecond": "払う (はらう, harau)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "zahlen", + "wordSecond": "支払う (しはらう, shiharau)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "finden", + "wordSecond": "見つける (みつける, mitsukeru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "suchen", + "wordSecond": "探す (さがす, sagasu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "verlieren", + "wordSecond": "失くす (なくす, nakusu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "gewinnen", + "wordSecond": "勝つ (かつ, katsu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "sparen", + "wordSecond": "貯める (ためる, tameru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "ausgeben", + "wordSecond": "使う (つかう, tsukau)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "reparieren", + "wordSecond": "直す (なおす, naosu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "bauen", + "wordSecond": "建てる (たてる, tateru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "zeichnen", + "wordSecond": "描く (かく, kaku)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "malen", + "wordSecond": "塗る (ぬる, nuru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "fotografieren", + "wordSecond": "撮る (とる, toru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "filmen", + "wordSecond": "録画する (ろくがする, rokuga suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "telefonieren", + "wordSecond": "電話する (でんわする, denwa suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "mailen", + "wordSecond": "メールする (mēru suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "surfen", + "wordSecond": "ネットする (netto suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "essen gehen", + "wordSecond": "食べに行く (たべにいく, tabe ni iku)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "trinken gehen", + "wordSecond": "飲みに行く (のみにいく, nomi ni iku)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "spazieren gehen", + "wordSecond": "散歩する (さんぽする, sanpo suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "joggen", + "wordSecond": "ジョギングする (jogingu suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "trainieren", + "wordSecond": "練習する (れんしゅうする, renshū suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "anziehen", + "wordSecond": "着る (きる, kiru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "ausziehen", + "wordSecond": "脱ぐ (ぬぐ, nugu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "trocknen", + "wordSecond": "乾かす (かわかす, kawakasu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "bügeln", + "wordSecond": "アイロンをかける (airon o kakeru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "kämmen", + "wordSecond": "梳かす (とかす, tokasu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "rasieren", + "wordSecond": "剃る (そる, soru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "duschen", + "wordSecond": "シャワーを浴びる (shawā o abiru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "baden", + "wordSecond": "風呂に入る (ふろにはいる, furo ni hairu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "zähneputzen", + "wordSecond": "歯を磨く (はをみがく, ha o migaku)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "frühstücken", + "wordSecond": "朝食をとる (ちょうしょくをとる, chōshoku o toru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "mittagessen", + "wordSecond": "昼食をとる (ちゅうしょくをとる, chūshoku o toru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "abendessen", + "wordSecond": "夕食をとる (ゆうしょくをとる, yūshoku o toru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "braten", + "wordSecond": "焼く (やく, yaku)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "schneiden", + "wordSecond": "切る (きる, kiru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "mischen", + "wordSecond": "混ぜる (まぜる, mazeru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "gießen", + "wordSecond": "注ぐ (そそぐ, sosogu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "füllen", + "wordSecond": "満たす (みたす, mitasu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "leeren", + "wordSecond": "空ける (あける, akeru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "reinigen", + "wordSecond": "清掃する (せいそうする, seisō suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "ordnen", + "wordSecond": "整理する (せいりする, seiri suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "planen", + "wordSecond": "計画する (けいかくする, keikaku suru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "entscheiden", + "wordSecond": "決める (きめる, kimeru)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + }, + { + "id": 100109, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "wählen", + "wordSecond": "選ぶ (えらぶ, erabu)", + "createdAt": "2026-02-19T12:27:08.685Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + }, + { + "vocabularyItemId": 100109, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_de_ko_A1.json b/output/2026_02_19_verbs_beginners_de_ko_A1.json new file mode 100644 index 0000000..d3ba7d7 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_de_ko_A1.json @@ -0,0 +1,1356 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:28:06.739Z", + "metadata": { + "itemCount": 107, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "sein", + "wordSecond": "이다 (ida)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "haben", + "wordSecond": "가지다 (gajida)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "machen", + "wordSecond": "하다 (hada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "gehen", + "wordSecond": "가다 (gada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "kommen", + "wordSecond": "오다 (oda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "sehen", + "wordSecond": "보다 (boda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "hören", + "wordSecond": "듣다 (deutda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "sagen", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "wissen", + "wordSecond": "알다 (alda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "denken", + "wordSecond": "생각하다 (saenggakhada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "arbeiten", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "spielen", + "wordSecond": "놀다 (nolda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "schlafen", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "essen", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "trinken", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "lesen", + "wordSecond": "읽다 (ikda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "schreiben", + "wordSecond": "쓰다 (sseuda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "lernen", + "wordSecond": "배우다 (baeuda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "verstehen", + "wordSecond": "이해하다 (ihaehada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "sprechen", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "fragen", + "wordSecond": "묻다 (mutda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "antworten", + "wordSecond": "대답하다 (daedaphada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "öffnen", + "wordSecond": "열다 (yeolda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "schließen", + "wordSecond": "닫다 (datda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "kaufen", + "wordSecond": "사다 (sada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "verkaufen", + "wordSecond": "팔다 (palda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "geben", + "wordSecond": "주다 (juda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "nehmen", + "wordSecond": "가지다 (gajida)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "finden", + "wordSecond": "찾다 (chatda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "verlieren", + "wordSecond": "잃다 (ilta)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "suchen", + "wordSecond": "찾다 (chatda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "brauchen", + "wordSecond": "필요하다 (piryohada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "mögen", + "wordSecond": "좋아하다 (joahada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "lieben", + "wordSecond": "사랑하다 (saranghada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "lachen", + "wordSecond": "웃다 (utda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "weinen", + "wordSecond": "울다 (ulda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "singen", + "wordSecond": "노래하다 (noraehada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "tanzen", + "wordSecond": "춤추다 (chumchuda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "laufen", + "wordSecond": "달리다 (dallida)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "stehen", + "wordSecond": "서다 (seoda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "sitzen", + "wordSecond": "앉다 (anda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "legen", + "wordSecond": "놓다 (nota)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "stellen", + "wordSecond": "세우다 (seuda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "tragen", + "wordSecond": "들다 (deulda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "bringen", + "wordSecond": "가져오다 (gajyeooda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "helfen", + "wordSecond": "도와주다 (dowajuda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "warten", + "wordSecond": "기다리다 (gidarida)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "beginnen", + "wordSecond": "시작하다 (sijakhada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "enden", + "wordSecond": "끝나다 (kkeunnada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "bleiben", + "wordSecond": "남다 (namda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "wohnen", + "wordSecond": "살다 (salda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "besuchen", + "wordSecond": "방문하다 (bangmunhada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "treffen", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "reisen", + "wordSecond": "여행하다 (yeohaenghada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "fahren", + "wordSecond": "타다 (tada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "fliegen", + "wordSecond": "날다 (nalda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "schwimmen", + "wordSecond": "수영하다 (suyeonghada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "springen", + "wordSecond": "뛰다 (ttwida)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "kochen", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "backen", + "wordSecond": "굽다 (gupda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "waschen", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "putzen", + "wordSecond": "청소하다 (cheongsohada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "räumen", + "wordSecond": "정리하다 (jeongnihada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "aufräumen", + "wordSecond": "정리하다 (jeongnihada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "baden", + "wordSecond": "목욕하다 (mogyokada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "duschen", + "wordSecond": "샤워하다 (syawohada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "anziehen", + "wordSecond": "입다 (ipda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "ausziehen", + "wordSecond": "벗다 (beotda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "ziehen", + "wordSecond": "당기다 (danggida)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "drücken", + "wordSecond": "누르다 (nureuda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "halten", + "wordSecond": "잡다 (japda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "lassen", + "wordSecond": "놓다 (nota)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "fallen", + "wordSecond": "떨어지다 (tteoreojida)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "steigen", + "wordSecond": "오르다 (oreuda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "zeigen", + "wordSecond": "보여주다 (boyeojuda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "erklären", + "wordSecond": "설명하다 (seolmyeonghada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "erzählen", + "wordSecond": "이야기하다 (iyagihada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "rufen", + "wordSecond": "부르다 (bureuda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "schreien", + "wordSecond": "소리치다 (sorichida)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "flüstern", + "wordSecond": "속삭이다 (soksagida)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "fühlen", + "wordSecond": "느끼다 (neukkida)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "spüren", + "wordSecond": "느끼다 (neukkida)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "wollen", + "wordSecond": "원하다 (wonhada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "können", + "wordSecond": "할 수 있다 (hal su itda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "müssen", + "wordSecond": "해야 한다 (haeya handa)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "dürfen", + "wordSecond": "해도 된다 (haedo doenda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "sollen", + "wordSecond": "해야 한다 (haeya handa)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "möchten", + "wordSecond": "하고 싶다 (hago sipda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "vergessen", + "wordSecond": "잊다 (itda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "erinnern", + "wordSecond": "기억하다 (gieokada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "entscheiden", + "wordSecond": "결정하다 (gyeoljeonghada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "wählen", + "wordSecond": "선택하다 (seontaekada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "gewinnen", + "wordSecond": "이기다 (igida)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "kosten", + "wordSecond": "비용이 들다 (biyongi deulda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "bezahlen", + "wordSecond": "지불하다 (jibulhada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "rechnen", + "wordSecond": "계산하다 (gyesanhada)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "messen", + "wordSecond": "재다 (jaeda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "wiegen", + "wordSecond": "무게를 재다 (mugereul jaeda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "bauen", + "wordSecond": "짓다 (jitda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "reparieren", + "wordSecond": "고치다 (gochida)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "ändern", + "wordSecond": "바꾸다 (bakkuda)", + "createdAt": "2026-02-19T12:28:06.739Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_de_pl_A1.json b/output/2026_02_19_verbs_beginners_de_pl_A1.json new file mode 100644 index 0000000..47dc1d1 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_de_pl_A1.json @@ -0,0 +1,1384 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:28:27.294Z", + "metadata": { + "itemCount": 105, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "sein", + "wordSecond": "być", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "haben", + "wordSecond": "mieć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "gehen", + "wordSecond": "iść", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "kommen", + "wordSecond": "przychodzić", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "machen", + "wordSecond": "robić", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "sehen", + "wordSecond": "widzieć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "hören", + "wordSecond": "słyszeć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "sagen", + "wordSecond": "mówić", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "wissen", + "wordSecond": "wiedzieć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "lesen", + "wordSecond": "czytać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "schreiben", + "wordSecond": "pisać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "arbeiten", + "wordSecond": "pracować", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "spielen", + "wordSecond": "grać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "lernen", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "wohnen", + "wordSecond": "mieszkać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "essen", + "wordSecond": "jeść", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "trinken", + "wordSecond": "pić", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "schlafen", + "wordSecond": "spać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "kaufen", + "wordSecond": "kupować", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "verkaufen", + "wordSecond": "sprzedawać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "öffnen", + "wordSecond": "otwierać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "schließen", + "wordSecond": "zamykać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "nehmen", + "wordSecond": "brać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "geben", + "wordSecond": "dawać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "finden", + "wordSecond": "znajdować", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "helfen", + "wordSecond": "pomagać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "brauchen", + "wordSecond": "potrzebować", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "wollen", + "wordSecond": "chcieć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "mögen", + "wordSecond": "lubić", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "lieben", + "wordSecond": "kochać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "denken", + "wordSecond": "myśleć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "verstehen", + "wordSecond": "rozumieć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "fragen", + "wordSecond": "pytać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "antworten", + "wordSecond": "odpowiadać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "singen", + "wordSecond": "śpiewać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "tanzen", + "wordSecond": "tańczyć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "laufen", + "wordSecond": "biegać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "stehen", + "wordSecond": "stać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "sitzen", + "wordSecond": "siedzieć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "legen", + "wordSecond": "kłaść", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "stellen", + "wordSecond": "stawiać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "setzen", + "wordSecond": "sadzać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "tragen", + "wordSecond": "nosić", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "bringen", + "wordSecond": "przynosić", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "holen", + "wordSecond": "przynieść", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "waschen", + "wordSecond": "myć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "putzen", + "wordSecond": "czyścić", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "kochen", + "wordSecond": "gotować", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "backen", + "wordSecond": "piec", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "räumen", + "wordSecond": "sprzątać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "aufräumen", + "wordSecond": "porządkować", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "suchen", + "wordSecond": "szukać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zeigen", + "wordSecond": "pokazywać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "erklären", + "wordSecond": "wyjaśniać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "beginnen", + "wordSecond": "zaczynać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "enden", + "wordSecond": "kończyć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "warten", + "wordSecond": "czekać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "treffen", + "wordSecond": "spotykać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "besuchen", + "wordSecond": "odwiedzać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "reisen", + "wordSecond": "podróżować", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "fahren", + "wordSecond": "jechać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "fliegen", + "wordSecond": "latać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "schwimmen", + "wordSecond": "pływać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "springen", + "wordSecond": "skakać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "fallen", + "wordSecond": "spadać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "heben", + "wordSecond": "podnosić", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "halten", + "wordSecond": "trzymać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "lassen", + "wordSecond": "zostawiać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "vergessen", + "wordSecond": "zapominać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "erinnern", + "wordSecond": "pamiętać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "glauben", + "wordSecond": "wierzyć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "hoffen", + "wordSecond": "mieć nadzieję", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "fürchten", + "wordSecond": "bać się", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "lachen", + "wordSecond": "śmiać się", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "weinen", + "wordSecond": "płakać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "rufen", + "wordSecond": "wołać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "sprechen", + "wordSecond": "mówić", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "erzählen", + "wordSecond": "opowiadać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zuhören", + "wordSecond": "słuchać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "schauen", + "wordSecond": "patrzeć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zeigen", + "wordSecond": "pokazywać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "bauen", + "wordSecond": "budować", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "reparieren", + "wordSecond": "naprawiać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "malen", + "wordSecond": "malować", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zeichnen", + "wordSecond": "rysować", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "rechnen", + "wordSecond": "liczyć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "zählen", + "wordSecond": "liczyć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "wiegen", + "wordSecond": "ważyć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "messen", + "wordSecond": "mierzyć", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "kosten", + "wordSecond": "kosztować", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "bezahlen", + "wordSecond": "płacić", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "verdienen", + "wordSecond": "zarabiać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "sparen", + "wordSecond": "oszczędzać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "leihen", + "wordSecond": "pożyczać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "schenken", + "wordSecond": "dawać w prezencie", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "feiern", + "wordSecond": "świętować", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "einladen", + "wordSecond": "zapraszać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "danken", + "wordSecond": "dziękować", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "grüßen", + "wordSecond": "witać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "verabschieden", + "wordSecond": "żegnać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "winken", + "wordSecond": "machać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "umarmen", + "wordSecond": "przytulać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "küssen", + "wordSecond": "całować", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "gewinnen", + "wordSecond": "wygrywać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "verlieren", + "wordSecond": "przegrywać", + "createdAt": "2026-02-19T12:28:27.294Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_de_zh_A1.json b/output/2026_02_19_verbs_beginners_de_zh_A1.json new file mode 100644 index 0000000..d7d52bb --- /dev/null +++ b/output/2026_02_19_verbs_beginners_de_zh_A1.json @@ -0,0 +1,1397 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:27:35.442Z", + "metadata": { + "itemCount": 106, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "sein", + "wordSecond": "是 (shì)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "haben", + "wordSecond": "有 (yǒu)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "machen", + "wordSecond": "做 (zuò)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "gehen", + "wordSecond": "去 (qù)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "kommen", + "wordSecond": "来 (lái)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "sehen", + "wordSecond": "看 (kàn)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "hören", + "wordSecond": "听 (tīng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "sagen", + "wordSecond": "说 (shuō)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "sprechen", + "wordSecond": "讲 (jiǎng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "wissen", + "wordSecond": "知道 (zhīdào)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "denken", + "wordSecond": "想 (xiǎng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "finden", + "wordSecond": "找 (zhǎo)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "nehmen", + "wordSecond": "拿 (ná)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "geben", + "wordSecond": "给 (gěi)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "helfen", + "wordSecond": "帮助 (bāngzhù)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "arbeiten", + "wordSecond": "工作 (gōngzuò)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "spielen", + "wordSecond": "玩 (wán)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "lernen", + "wordSecond": "学习 (xuéxí)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "lesen", + "wordSecond": "读 (dú)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "schreiben", + "wordSecond": "写 (xiě)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "essen", + "wordSecond": "吃 (chī)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "trinken", + "wordSecond": "喝 (hē)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "kaufen", + "wordSecond": "买 (mǎi)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "verkaufen", + "wordSecond": "卖 (mài)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "öffnen", + "wordSecond": "开 (kāi)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "schließen", + "wordSecond": "关 (guān)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "wohnen", + "wordSecond": "住 (zhù)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "schlafen", + "wordSecond": "睡觉 (shuìjiào)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "aufstehen", + "wordSecond": "起床 (qǐchuáng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "laufen", + "wordSecond": "跑 (pǎo)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "stehen", + "wordSecond": "站 (zhàn)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "sitzen", + "wordSecond": "坐 (zuò)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "liegen", + "wordSecond": "躺 (tǎng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "setzen", + "wordSecond": "放 (fàng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "tragen", + "wordSecond": "穿 (chuān)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "waschen", + "wordSecond": "洗 (xǐ)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "putzen", + "wordSecond": "打扫 (dǎsǎo)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "kochen", + "wordSecond": "做饭 (zuòfàn)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "backen", + "wordSecond": "烤 (kǎo)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "räumen", + "wordSecond": "整理 (zhěnglǐ)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "warten", + "wordSecond": "等 (děng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "beginnen", + "wordSecond": "开始 (kāishǐ)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "enden", + "wordSecond": "结束 (jiéshù)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "brauchen", + "wordSecond": "需要 (xūyào)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "mögen", + "wordSecond": "喜欢 (xǐhuan)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "lieben", + "wordSecond": "爱 (ài)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "lachen", + "wordSecond": "笑 (xiào)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "weinen", + "wordSecond": "哭 (kū)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "fühlen", + "wordSecond": "感觉 (gǎnjué)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "verstehen", + "wordSecond": "明白 (míngbai)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "fragen", + "wordSecond": "问 (wèn)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "antworten", + "wordSecond": "回答 (huídá)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "erklären", + "wordSecond": "解释 (jiěshì)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "zeigen", + "wordSecond": "给看 (gěi kàn)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "folgen", + "wordSecond": "跟 (gēn)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "bringen", + "wordSecond": "带 (dài)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "holen", + "wordSecond": "取 (qǔ)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "bezahlen", + "wordSecond": "付钱 (fùqián)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "kosten", + "wordSecond": "花费 (huāfèi)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "reisen", + "wordSecond": "旅行 (lǚxíng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "fahren", + "wordSecond": "开车 (kāichē)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "fliegen", + "wordSecond": "飞 (fēi)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "schwimmen", + "wordSecond": "游泳 (yóuyǒng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "tanzen", + "wordSecond": "跳舞 (tiàowǔ)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "singen", + "wordSecond": "唱歌 (chànggē)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "zeichnen", + "wordSecond": "画 (huà)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "bauen", + "wordSecond": "建造 (jiànzào)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "reparieren", + "wordSecond": "修理 (xiūlǐ)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "glauben", + "wordSecond": "相信 (xiāngxìn)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "hoffen", + "wordSecond": "希望 (xīwàng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "vergessen", + "wordSecond": "忘记 (wàngjì)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "erinnern", + "wordSecond": "记得 (jìde)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "treffen", + "wordSecond": "见面 (jiànmiàn)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "besuchen", + "wordSecond": "拜访 (bàifǎng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "einladen", + "wordSecond": "邀请 (yāoqǐng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "danken", + "wordSecond": "谢谢 (xièxie)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "grüßen", + "wordSecond": "打招呼 (dǎ zhāohu)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "verabschieden", + "wordSecond": "告别 (gàobié)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "gewinnen", + "wordSecond": "赢 (yíng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "verlieren", + "wordSecond": "输 (shū)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "suchen", + "wordSecond": "寻找 (xúnzhǎo)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "verlieren", + "wordSecond": "丢 (diū)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "bekommen", + "wordSecond": "得到 (dédào)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "verlassen", + "wordSecond": "离开 (líkāi)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "ankommen", + "wordSecond": "到达 (dàodá)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "bleiben", + "wordSecond": "留 (liú)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "ändern", + "wordSecond": "改变 (gǎibiàn)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "wachsen", + "wordSecond": "生长 (shēngzhǎng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "sterben", + "wordSecond": "死 (sǐ)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "leben", + "wordSecond": "活 (huó)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "atmen", + "wordSecond": "呼吸 (hūxī)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "riechen", + "wordSecond": "闻 (wén)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "schmecken", + "wordSecond": "尝 (cháng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "berühren", + "wordSecond": "摸 (mō)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "halten", + "wordSecond": "拿住 (ná zhù)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "drücken", + "wordSecond": "按 (àn)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "ziehen", + "wordSecond": "拉 (lā)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "schieben", + "wordSecond": "推 (tuī)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "drehen", + "wordSecond": "转 (zhuàn)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "brechen", + "wordSecond": "打破 (dǎpò)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "reparieren", + "wordSecond": "修 (xiū)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "wählen", + "wordSecond": "选择 (xuǎnzé)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "entscheiden", + "wordSecond": "决定 (juédìng)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "planen", + "wordSecond": "计划 (jìhuà)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "versuchen", + "wordSecond": "尝试 (chángshì)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "feiern", + "wordSecond": "庆祝 (qìngzhù)", + "createdAt": "2026-02-19T12:27:35.442Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_en_de_A1.json b/output/2026_02_19_verbs_beginners_en_de_A1.json new file mode 100644 index 0000000..9fb9ef9 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_en_de_A1.json @@ -0,0 +1,1371 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:15:59.535Z", + "metadata": { + "itemCount": 104, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to be", + "wordSecond": "sein", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to have", + "wordSecond": "haben", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to go", + "wordSecond": "gehen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to come", + "wordSecond": "kommen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to see", + "wordSecond": "sehen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to look", + "wordSecond": "schauen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to hear", + "wordSecond": "hören", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to say", + "wordSecond": "sagen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to speak", + "wordSecond": "sprechen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to talk", + "wordSecond": "reden", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to do", + "wordSecond": "machen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to make", + "wordSecond": "machen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to take", + "wordSecond": "nehmen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to give", + "wordSecond": "geben", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to find", + "wordSecond": "finden", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to know", + "wordSecond": "wissen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to know (a person/place)", + "wordSecond": "kennen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to think", + "wordSecond": "denken", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to want", + "wordSecond": "wollen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to like", + "wordSecond": "mögen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to love", + "wordSecond": "lieben", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to eat", + "wordSecond": "essen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to drink", + "wordSecond": "trinken", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to sleep", + "wordSecond": "schlafen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to wake up", + "wordSecond": "aufwachen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to work", + "wordSecond": "arbeiten", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to play", + "wordSecond": "spielen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to read", + "wordSecond": "lesen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to write", + "wordSecond": "schreiben", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to learn", + "wordSecond": "lernen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to understand", + "wordSecond": "verstehen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to ask", + "wordSecond": "fragen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to answer", + "wordSecond": "antworten", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to help", + "wordSecond": "helfen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to live", + "wordSecond": "leben", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to sit", + "wordSecond": "sitzen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to stand", + "wordSecond": "stehen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to walk", + "wordSecond": "laufen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to run", + "wordSecond": "rennen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to jump", + "wordSecond": "springen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to open", + "wordSecond": "öffnen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to close", + "wordSecond": "schließen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to buy", + "wordSecond": "kaufen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to pay", + "wordSecond": "bezahlen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to sell", + "wordSecond": "verkaufen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to cook", + "wordSecond": "kochen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to wash", + "wordSecond": "waschen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to clean", + "wordSecond": "putzen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to wait", + "wordSecond": "warten", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to meet", + "wordSecond": "treffen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to call", + "wordSecond": "anrufen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to listen", + "wordSecond": "zuhören", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to feel", + "wordSecond": "fühlen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to need", + "wordSecond": "brauchen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to use", + "wordSecond": "benutzen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to start", + "wordSecond": "anfangen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to finish", + "wordSecond": "beenden", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to stop", + "wordSecond": "stoppen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to try", + "wordSecond": "versuchen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to forget", + "wordSecond": "vergessen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to remember", + "wordSecond": "erinnern", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to believe", + "wordSecond": "glauben", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to hope", + "wordSecond": "hoffen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to thank", + "wordSecond": "danken", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to smile", + "wordSecond": "lächeln", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to laugh", + "wordSecond": "lachen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to cry", + "wordSecond": "weinen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to sing", + "wordSecond": "singen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to dance", + "wordSecond": "tanzen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to watch", + "wordSecond": "gucken", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to show", + "wordSecond": "zeigen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to bring", + "wordSecond": "bringen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to carry", + "wordSecond": "tragen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to hold", + "wordSecond": "halten", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to touch", + "wordSecond": "berühren", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to break", + "wordSecond": "brechen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to fall", + "wordSecond": "fallen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to drive", + "wordSecond": "fahren", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to travel", + "wordSecond": "reisen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to arrive", + "wordSecond": "ankommen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to leave", + "wordSecond": "verlassen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to stay", + "wordSecond": "bleiben", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to change", + "wordSecond": "wechseln", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to choose", + "wordSecond": "wählen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to decide", + "wordSecond": "entscheiden", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to explain", + "wordSecond": "erklären", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to describe", + "wordSecond": "beschreiben", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to count", + "wordSecond": "zählen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to draw", + "wordSecond": "zeichnen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to paint", + "wordSecond": "malen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to build", + "wordSecond": "bauen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to fix", + "wordSecond": "reparieren", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to search", + "wordSecond": "suchen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to lose", + "wordSecond": "verlieren", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to win", + "wordSecond": "gewinnen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to fight", + "wordSecond": "kämpfen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to agree", + "wordSecond": "zustimmen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to disagree", + "wordSecond": "ablehnen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to invite", + "wordSecond": "einladen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to visit", + "wordSecond": "besuchen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to follow", + "wordSecond": "folgen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to turn", + "wordSecond": "drehen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to push", + "wordSecond": "schieben", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "to pull", + "wordSecond": "ziehen", + "createdAt": "2026-02-19T12:15:59.535Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_en_es_A1.json b/output/2026_02_19_verbs_beginners_en_es_A1.json new file mode 100644 index 0000000..bef3308 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_en_es_A1.json @@ -0,0 +1,1384 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:14:40.412Z", + "metadata": { + "itemCount": 105, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to be", + "wordSecond": "ser", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to have", + "wordSecond": "tener", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to do", + "wordSecond": "hacer", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to go", + "wordSecond": "ir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to come", + "wordSecond": "venir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to see", + "wordSecond": "ver", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to say", + "wordSecond": "decir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to know", + "wordSecond": "saber", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to want", + "wordSecond": "querer", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to eat", + "wordSecond": "comer", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to drink", + "wordSecond": "beber", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to sleep", + "wordSecond": "dormir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to wake up", + "wordSecond": "despertar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to work", + "wordSecond": "trabajar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to study", + "wordSecond": "estudiar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to read", + "wordSecond": "leer", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to write", + "wordSecond": "escribir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to listen", + "wordSecond": "escuchar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to speak", + "wordSecond": "hablar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to understand", + "wordSecond": "entender", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to think", + "wordSecond": "pensar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to like", + "wordSecond": "gustar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to love", + "wordSecond": "amar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to need", + "wordSecond": "necesitar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to live", + "wordSecond": "vivir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to open", + "wordSecond": "abrir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to close", + "wordSecond": "cerrar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to give", + "wordSecond": "dar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to take", + "wordSecond": "tomar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to put", + "wordSecond": "poner", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to find", + "wordSecond": "encontrar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to look for", + "wordSecond": "buscar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to buy", + "wordSecond": "comprar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to pay", + "wordSecond": "pagar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to sell", + "wordSecond": "vender", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to cook", + "wordSecond": "cocinar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to clean", + "wordSecond": "limpiar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to wash", + "wordSecond": "lavar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to help", + "wordSecond": "ayudar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to call", + "wordSecond": "llamar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to ask", + "wordSecond": "preguntar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to answer", + "wordSecond": "responder", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to wait", + "wordSecond": "esperar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to arrive", + "wordSecond": "llegar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to leave", + "wordSecond": "salir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to enter", + "wordSecond": "entrar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to exit", + "wordSecond": "salir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to walk", + "wordSecond": "caminar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to run", + "wordSecond": "correr", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to sit", + "wordSecond": "sentar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to stand", + "wordSecond": "parar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to jump", + "wordSecond": "saltar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to play", + "wordSecond": "jugar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to sing", + "wordSecond": "cantar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to dance", + "wordSecond": "bailar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to watch", + "wordSecond": "mirar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to look", + "wordSecond": "mirar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to show", + "wordSecond": "mostrar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to feel", + "wordSecond": "sentir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to laugh", + "wordSecond": "reír", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to cry", + "wordSecond": "llorar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to smile", + "wordSecond": "sonreír", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to start", + "wordSecond": "empezar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to finish", + "wordSecond": "terminar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to stop", + "wordSecond": "parar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to continue", + "wordSecond": "continuar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to try", + "wordSecond": "intentar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to can", + "wordSecond": "poder", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to must", + "wordSecond": "deber", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to should", + "wordSecond": "deber", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to forget", + "wordSecond": "olvidar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to remember", + "wordSecond": "recordar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to learn", + "wordSecond": "aprender", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to teach", + "wordSecond": "enseñar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to change", + "wordSecond": "cambiar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to use", + "wordSecond": "usar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to make", + "wordSecond": "hacer", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to build", + "wordSecond": "construir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to break", + "wordSecond": "romper", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to fix", + "wordSecond": "arreglar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to cut", + "wordSecond": "cortar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to draw", + "wordSecond": "dibujar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to paint", + "wordSecond": "pintar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to drive", + "wordSecond": "conducir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to travel", + "wordSecond": "viajar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to visit", + "wordSecond": "visitar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to meet", + "wordSecond": "conocer", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to win", + "wordSecond": "ganar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to lose", + "wordSecond": "perder", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to choose", + "wordSecond": "elegir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to decide", + "wordSecond": "decidir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to believe", + "wordSecond": "creer", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to hope", + "wordSecond": "esperar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to dream", + "wordSecond": "soñar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to count", + "wordSecond": "contar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to measure", + "wordSecond": "medir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to weigh", + "wordSecond": "pesar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to touch", + "wordSecond": "tocar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to hold", + "wordSecond": "sostener", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to carry", + "wordSecond": "llevar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to bring", + "wordSecond": "traer", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to send", + "wordSecond": "enviar", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to receive", + "wordSecond": "recibir", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to thank", + "wordSecond": "agradecer", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "to welcome", + "wordSecond": "acoger", + "createdAt": "2026-02-19T12:14:40.412Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_en_fr_A1.json b/output/2026_02_19_verbs_beginners_en_fr_A1.json new file mode 100644 index 0000000..0caed96 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_en_fr_A1.json @@ -0,0 +1,1371 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:16:18.347Z", + "metadata": { + "itemCount": 104, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to be", + "wordSecond": "être", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to have", + "wordSecond": "avoir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to do", + "wordSecond": "faire", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to go", + "wordSecond": "aller", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to come", + "wordSecond": "venir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to see", + "wordSecond": "voir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to look", + "wordSecond": "regarder", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to hear", + "wordSecond": "entendre", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to listen", + "wordSecond": "écouter", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to say", + "wordSecond": "dire", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to speak", + "wordSecond": "parler", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to talk", + "wordSecond": "discuter", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to ask", + "wordSecond": "demander", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to answer", + "wordSecond": "répondre", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to call", + "wordSecond": "appeler", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to give", + "wordSecond": "donner", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to take", + "wordSecond": "prendre", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to put", + "wordSecond": "mettre", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to find", + "wordSecond": "trouver", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to know", + "wordSecond": "savoir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to think", + "wordSecond": "penser", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to understand", + "wordSecond": "comprendre", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to want", + "wordSecond": "vouloir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to like", + "wordSecond": "aimer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to love", + "wordSecond": "adorer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to need", + "wordSecond": "avoir besoin", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to can", + "wordSecond": "pouvoir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to must", + "wordSecond": "devoir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to eat", + "wordSecond": "manger", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to drink", + "wordSecond": "boire", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to cook", + "wordSecond": "cuisiner", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to buy", + "wordSecond": "acheter", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to pay", + "wordSecond": "payer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to open", + "wordSecond": "ouvrir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to close", + "wordSecond": "fermer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to read", + "wordSecond": "lire", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to write", + "wordSecond": "écrire", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to work", + "wordSecond": "travailler", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to study", + "wordSecond": "étudier", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to learn", + "wordSecond": "apprendre", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to play", + "wordSecond": "jouer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to sing", + "wordSecond": "chanter", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to dance", + "wordSecond": "danser", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to walk", + "wordSecond": "marcher", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to run", + "wordSecond": "courir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to jump", + "wordSecond": "sauter", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to sit", + "wordSecond": "s'asseoir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to stand", + "wordSecond": "se lever", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to sleep", + "wordSecond": "dormir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to wake up", + "wordSecond": "se réveiller", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to wash", + "wordSecond": "laver", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to clean", + "wordSecond": "nettoyer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to help", + "wordSecond": "aider", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to wait", + "wordSecond": "attendre", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to meet", + "wordSecond": "rencontrer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to live", + "wordSecond": "vivre", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to die", + "wordSecond": "mourir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to feel", + "wordSecond": "sentir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to touch", + "wordSecond": "toucher", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to hold", + "wordSecond": "tenir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to bring", + "wordSecond": "apporter", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to send", + "wordSecond": "envoyer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to show", + "wordSecond": "montrer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to explain", + "wordSecond": "expliquer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to start", + "wordSecond": "commencer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to finish", + "wordSecond": "finir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to stop", + "wordSecond": "arrêter", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to continue", + "wordSecond": "continuer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to change", + "wordSecond": "changer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to try", + "wordSecond": "essayer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to use", + "wordSecond": "utiliser", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to make", + "wordSecond": "fabriquer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to build", + "wordSecond": "construire", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to break", + "wordSecond": "casser", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to cut", + "wordSecond": "couper", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to drive", + "wordSecond": "conduire", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to travel", + "wordSecond": "voyager", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to arrive", + "wordSecond": "arriver", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to leave", + "wordSecond": "partir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to enter", + "wordSecond": "entrer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to exit", + "wordSecond": "sortir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to follow", + "wordSecond": "suivre", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to turn", + "wordSecond": "tourner", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to fall", + "wordSecond": "tomber", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to get", + "wordSecond": "obtenir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to lose", + "wordSecond": "perdre", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to win", + "wordSecond": "gagner", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to choose", + "wordSecond": "choisir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to decide", + "wordSecond": "décider", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to believe", + "wordSecond": "croire", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to hope", + "wordSecond": "espérer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to remember", + "wordSecond": "se souvenir", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to forget", + "wordSecond": "oublier", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to smile", + "wordSecond": "sourire", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to laugh", + "wordSecond": "rire", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to cry", + "wordSecond": "pleurer", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to shout", + "wordSecond": "crier", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to thank", + "wordSecond": "remercier", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to invite", + "wordSecond": "inviter", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to visit", + "wordSecond": "visiter", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to phone", + "wordSecond": "téléphoner", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to search", + "wordSecond": "chercher", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to count", + "wordSecond": "compter", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "to cost", + "wordSecond": "coûter", + "createdAt": "2026-02-19T12:16:18.347Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_en_it_A1.json b/output/2026_02_19_verbs_beginners_en_it_A1.json new file mode 100644 index 0000000..df29fbb --- /dev/null +++ b/output/2026_02_19_verbs_beginners_en_it_A1.json @@ -0,0 +1,1410 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:16:37.577Z", + "metadata": { + "itemCount": 107, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to be", + "wordSecond": "essere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to have", + "wordSecond": "avere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to do", + "wordSecond": "fare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to go", + "wordSecond": "andare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to come", + "wordSecond": "venire", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to see", + "wordSecond": "vedere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to look", + "wordSecond": "guardare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to hear", + "wordSecond": "sentire", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to listen", + "wordSecond": "ascoltare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to say", + "wordSecond": "dire", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to speak", + "wordSecond": "parlare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to talk", + "wordSecond": "parlare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to ask", + "wordSecond": "chiedere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to answer", + "wordSecond": "rispondere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to call", + "wordSecond": "chiamare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to eat", + "wordSecond": "mangiare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to drink", + "wordSecond": "bere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to cook", + "wordSecond": "cucinare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to buy", + "wordSecond": "comprare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to pay", + "wordSecond": "pagare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to open", + "wordSecond": "aprire", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to close", + "wordSecond": "chiudere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to take", + "wordSecond": "prendere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to give", + "wordSecond": "dare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to put", + "wordSecond": "mettere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to find", + "wordSecond": "trovare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to lose", + "wordSecond": "perdere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to think", + "wordSecond": "pensare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to know", + "wordSecond": "sapere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to understand", + "wordSecond": "capire", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to learn", + "wordSecond": "imparare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to study", + "wordSecond": "studiare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to work", + "wordSecond": "lavorare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to play", + "wordSecond": "giocare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to read", + "wordSecond": "leggere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to write", + "wordSecond": "scrivere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to draw", + "wordSecond": "disegnare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to sing", + "wordSecond": "cantare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to dance", + "wordSecond": "ballare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to walk", + "wordSecond": "camminare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to run", + "wordSecond": "correre", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to jump", + "wordSecond": "saltare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to sit", + "wordSecond": "sedere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to stand", + "wordSecond": "stare in piedi", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to sleep", + "wordSecond": "dormire", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to wake up", + "wordSecond": "svegliarsi", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to get up", + "wordSecond": "alzarsi", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to wash", + "wordSecond": "lavare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to clean", + "wordSecond": "pulire", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to brush", + "wordSecond": "spazzolare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to shower", + "wordSecond": "fare la doccia", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to dress", + "wordSecond": "vestirsi", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to wear", + "wordSecond": "indossare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to like", + "wordSecond": "piacere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to love", + "wordSecond": "amare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to want", + "wordSecond": "volere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to need", + "wordSecond": "avere bisogno", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to can", + "wordSecond": "potere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to must", + "wordSecond": "dovere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to try", + "wordSecond": "provare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to start", + "wordSecond": "iniziare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to finish", + "wordSecond": "finire", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to wait", + "wordSecond": "aspettare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to help", + "wordSecond": "aiutare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to live", + "wordSecond": "vivere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to die", + "wordSecond": "morire", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to feel", + "wordSecond": "sentire", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to smile", + "wordSecond": "sorridere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to laugh", + "wordSecond": "ridere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to cry", + "wordSecond": "piangere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to touch", + "wordSecond": "toccare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to hold", + "wordSecond": "tenere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to carry", + "wordSecond": "portare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to bring", + "wordSecond": "portare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to send", + "wordSecond": "mandare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to receive", + "wordSecond": "ricevere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to meet", + "wordSecond": "incontrare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to leave", + "wordSecond": "partire", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to arrive", + "wordSecond": "arrivare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to travel", + "wordSecond": "viaggiare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to drive", + "wordSecond": "guidare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to fly", + "wordSecond": "volare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to swim", + "wordSecond": "nuotare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to climb", + "wordSecond": "arrampicarsi", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to fall", + "wordSecond": "cadere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to break", + "wordSecond": "rompere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to fix", + "wordSecond": "aggiustare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to build", + "wordSecond": "costruire", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to cut", + "wordSecond": "tagliare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to push", + "wordSecond": "spingere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to pull", + "wordSecond": "tirare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to lift", + "wordSecond": "sollevare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to turn", + "wordSecond": "girare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to stop", + "wordSecond": "fermare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to begin", + "wordSecond": "cominciare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to continue", + "wordSecond": "continuare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to change", + "wordSecond": "cambiare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to use", + "wordSecond": "usare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to make", + "wordSecond": "fare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to create", + "wordSecond": "creare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to choose", + "wordSecond": "scegliere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to decide", + "wordSecond": "decidere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to forget", + "wordSecond": "dimenticare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to remember", + "wordSecond": "ricordare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to hope", + "wordSecond": "sperare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to believe", + "wordSecond": "credere", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "to thank", + "wordSecond": "ringraziare", + "createdAt": "2026-02-19T12:16:37.577Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_en_ja_A1.json b/output/2026_02_19_verbs_beginners_en_ja_A1.json new file mode 100644 index 0000000..b5a5f0c --- /dev/null +++ b/output/2026_02_19_verbs_beginners_en_ja_A1.json @@ -0,0 +1,1358 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:17:09.774Z", + "metadata": { + "itemCount": 103, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to eat", + "wordSecond": "食べる (たべる, taberu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to drink", + "wordSecond": "飲む (のむ, nomu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to go", + "wordSecond": "行く (いく, iku)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to come", + "wordSecond": "来る (くる, kuru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to see", + "wordSecond": "見る (みる, miru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to hear", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to say", + "wordSecond": "言う (いう, iu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to do", + "wordSecond": "する (suru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to make", + "wordSecond": "作る (つくる, tsukuru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to take", + "wordSecond": "取る (とる, toru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to give", + "wordSecond": "あげる (ageru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to get", + "wordSecond": "もらう (morau)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to buy", + "wordSecond": "買う (かう, kau)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to sell", + "wordSecond": "売る (うる, uru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to read", + "wordSecond": "読む (よむ, yomu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to write", + "wordSecond": "書く (かく, kaku)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to speak", + "wordSecond": "話す (はなす, hanasu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to listen", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to walk", + "wordSecond": "歩く (あるく, aruku)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to run", + "wordSecond": "走る (はしる, hashiru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to sit", + "wordSecond": "座る (すわる, suwaru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to stand", + "wordSecond": "立つ (たつ, tatsu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to sleep", + "wordSecond": "寝る (ねる, neru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to wake up", + "wordSecond": "起きる (おきる, okiru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to work", + "wordSecond": "働く (はたらく, hataraku)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to study", + "wordSecond": "勉強する (べんきょうする, benkyou suru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to learn", + "wordSecond": "習う (ならう, narau)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to teach", + "wordSecond": "教える (おしえる, oshieru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to play", + "wordSecond": "遊ぶ (あそぶ, asobu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to sing", + "wordSecond": "歌う (うたう, utau)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to dance", + "wordSecond": "踊る (おどる, odoru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to watch", + "wordSecond": "見る (みる, miru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to look", + "wordSecond": "見る (みる, miru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to find", + "wordSecond": "見つける (みつける, mitsukeru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to lose", + "wordSecond": "なくす (nakusu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to open", + "wordSecond": "開ける (あける, akeru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to close", + "wordSecond": "閉める (しめる, shimeru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to put", + "wordSecond": "置く (おく, oku)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to take off", + "wordSecond": "脱ぐ (ぬぐ, nugu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to wear", + "wordSecond": "着る (きる, kiru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to wash", + "wordSecond": "洗う (あらう, arau)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to clean", + "wordSecond": "掃除する (そうじする, souji suru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to cook", + "wordSecond": "料理する (りょうりする, ryouri suru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to cut", + "wordSecond": "切る (きる, kiru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to meet", + "wordSecond": "会う (あう, au)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to know", + "wordSecond": "知る (しる, shiru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to think", + "wordSecond": "思う (おもう, omou)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to understand", + "wordSecond": "分かる (わかる, wakaru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to like", + "wordSecond": "好き (すき, suki)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to love", + "wordSecond": "愛する (あいする, ai suru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to want", + "wordSecond": "欲しい (ほしい, hoshii)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to need", + "wordSecond": "必要 (ひつよう, hitsuyou)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to can", + "wordSecond": "できる (dekiru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to must", + "wordSecond": "しなければならない (shinakereba naranai)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to try", + "wordSecond": "試す (ためす, tamesu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to start", + "wordSecond": "始める (はじめる, hajimeru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to finish", + "wordSecond": "終わる (おわる, owaru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to wait", + "wordSecond": "待つ (まつ, matsu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to help", + "wordSecond": "手伝う (てつだう, tetsudau)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to ask", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to answer", + "wordSecond": "答える (こたえる, kotaeru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to call", + "wordSecond": "呼ぶ (よぶ, yobu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to send", + "wordSecond": "送る (おくる, okuru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to receive", + "wordSecond": "受け取る (うけとる, uketoru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to pay", + "wordSecond": "払う (はらう, harau)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to use", + "wordSecond": "使う (つかう, tsukau)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to live", + "wordSecond": "住む (すむ, sumu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to die", + "wordSecond": "死ぬ (しぬ, shinu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to be born", + "wordSecond": "生まれる (うまれる, umareru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to grow", + "wordSecond": "育つ (そだつ, sodatsu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to change", + "wordSecond": "変える (かえる, kaeru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to move", + "wordSecond": "動く (うごく, ugoku)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to stop", + "wordSecond": "止まる (とまる, tomaru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to turn", + "wordSecond": "曲がる (まがる, magaru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to enter", + "wordSecond": "入る (はいる, hairu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to exit", + "wordSecond": "出る (でる, deru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to bring", + "wordSecond": "持ってくる (もってくる, motte kuru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to carry", + "wordSecond": "運ぶ (はこぶ, hakobu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to hold", + "wordSecond": "持つ (もつ, motsu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to drop", + "wordSecond": "落とす (おとす, otosu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to push", + "wordSecond": "押す (おす, osu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to pull", + "wordSecond": "引く (ひく, hiku)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to lift", + "wordSecond": "上げる (あげる, ageru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to lower", + "wordSecond": "下げる (さげる, sageru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to break", + "wordSecond": "壊す (こわす, kowasu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to fix", + "wordSecond": "直す (なおす, naosu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to build", + "wordSecond": "建てる (たてる, tateru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to draw", + "wordSecond": "描く (かく, kaku)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to paint", + "wordSecond": "塗る (ぬる, nuru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to measure", + "wordSecond": "測る (はかる, hakaru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to count", + "wordSecond": "数える (かぞえる, kazoeru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to compare", + "wordSecond": "比べる (くらべる, kuraberu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to choose", + "wordSecond": "選ぶ (えらぶ, erabu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to decide", + "wordSecond": "決める (きめる, kimeru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to plan", + "wordSecond": "計画する (けいかくする, keikaku suru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to hope", + "wordSecond": "望む (のぞむ, nozomu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to believe", + "wordSecond": "信じる (しんじる, shinjiru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to remember", + "wordSecond": "覚える (おぼえる, oboeru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to forget", + "wordSecond": "忘れる (わすれる, wasureru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to feel", + "wordSecond": "感じる (かんじる, kanjiru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to touch", + "wordSecond": "触る (さわる, sawaru)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to smell", + "wordSecond": "嗅ぐ (かぐ, kagu)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "to taste", + "wordSecond": "味わう (あじわう, ajiwau)", + "createdAt": "2026-02-19T12:17:09.774Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_en_ko_A1.json b/output/2026_02_19_verbs_beginners_en_ko_A1.json new file mode 100644 index 0000000..475a54e --- /dev/null +++ b/output/2026_02_19_verbs_beginners_en_ko_A1.json @@ -0,0 +1,1332 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:18:02.344Z", + "metadata": { + "itemCount": 101, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to eat", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to drink", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to go", + "wordSecond": "가다 (gada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to come", + "wordSecond": "오다 (oda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to see", + "wordSecond": "보다 (boda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to hear", + "wordSecond": "듣다 (deutda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to speak", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to read", + "wordSecond": "읽다 (ikda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to write", + "wordSecond": "쓰다 (sseuda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to sleep", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to wake up", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to work", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to study", + "wordSecond": "공부하다 (gongbuhada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to learn", + "wordSecond": "배우다 (baeuda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to teach", + "wordSecond": "가르치다 (gareuchida)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to play", + "wordSecond": "놀다 (nolda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to walk", + "wordSecond": "걷다 (geotda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to run", + "wordSecond": "뛰다 (ttwida)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to sit", + "wordSecond": "앉다 (anda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to stand", + "wordSecond": "서다 (seoda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to give", + "wordSecond": "주다 (juda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to take", + "wordSecond": "가지다 (gajida)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to buy", + "wordSecond": "사다 (sada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to sell", + "wordSecond": "팔다 (palda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to open", + "wordSecond": "열다 (yeolda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to close", + "wordSecond": "닫다 (datda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to like", + "wordSecond": "좋아하다 (joahada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to love", + "wordSecond": "사랑하다 (saranghada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to want", + "wordSecond": "원하다 (wonhada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to need", + "wordSecond": "필요하다 (piryohada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to think", + "wordSecond": "생각하다 (saenggakada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to know", + "wordSecond": "알다 (alda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to understand", + "wordSecond": "이해하다 (ihaehada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to ask", + "wordSecond": "묻다 (mutda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to answer", + "wordSecond": "대답하다 (daedapada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to call", + "wordSecond": "부르다 (bureuda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to wait", + "wordSecond": "기다리다 (gidarida)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to meet", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to help", + "wordSecond": "도와주다 (dowajuda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to find", + "wordSecond": "찾다 (chatda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to lose", + "wordSecond": "잃다 (ilta)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to look for", + "wordSecond": "찾다 (chatda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to put", + "wordSecond": "놓다 (nota)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to make", + "wordSecond": "만들다 (mandeulda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to do", + "wordSecond": "하다 (hada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to have", + "wordSecond": "가지다 (gajida)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to be", + "wordSecond": "이다 (ida)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to live", + "wordSecond": "살다 (salda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to die", + "wordSecond": "죽다 (jukda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to laugh", + "wordSecond": "웃다 (utda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to cry", + "wordSecond": "울다 (ulda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to smile", + "wordSecond": "미소 짓다 (miso jitda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to sing", + "wordSecond": "노래하다 (noraehada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to dance", + "wordSecond": "춤추다 (chumchuda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to listen", + "wordSecond": "듣다 (deutda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to watch", + "wordSecond": "보다 (boda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to cook", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to wash", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to clean", + "wordSecond": "청소하다 (cheongsohada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to wash dishes", + "wordSecond": "설거지하다 (seolgeojihada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to iron", + "wordSecond": "다림질하다 (darimjilhada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to sweep", + "wordSecond": "쓸다 (sseulda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to mop", + "wordSecond": "닦다 (dakda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to start", + "wordSecond": "시작하다 (sijakada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to finish", + "wordSecond": "끝내다 (kkeutnaeda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to stop", + "wordSecond": "멈추다 (meomchuda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to continue", + "wordSecond": "계속하다 (gyesokada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to try", + "wordSecond": "시도하다 (sidohada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to change", + "wordSecond": "바꾸다 (bakkuda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to move", + "wordSecond": "움직이다 (umjigida)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to carry", + "wordSecond": "들다 (deulda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to hold", + "wordSecond": "잡다 (japda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to touch", + "wordSecond": "만지다 (manjida)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to feel", + "wordSecond": "느끼다 (neukkida)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to smell", + "wordSecond": "냄새 맡다 (naemsae matda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to taste", + "wordSecond": "맛보다 (matboda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to cut", + "wordSecond": "자르다 (jareuda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to break", + "wordSecond": "깨다 (kkaeda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to fix", + "wordSecond": "고치다 (gochida)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to build", + "wordSecond": "짓다 (jitda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to draw", + "wordSecond": "그리다 (geurida)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to paint", + "wordSecond": "칠하다 (chilhada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to count", + "wordSecond": "세다 (seda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to pay", + "wordSecond": "지불하다 (jibulhada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to save", + "wordSecond": "저축하다 (jeochukada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to spend", + "wordSecond": "쓰다 (sseuda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to travel", + "wordSecond": "여행하다 (yeohaenghada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to arrive", + "wordSecond": "도착하다 (dochakada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to leave", + "wordSecond": "떠나다 (tteonada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to return", + "wordSecond": "돌아오다 (doraoda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to enter", + "wordSecond": "들어가다 (deureogada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to exit", + "wordSecond": "나가다 (nagada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to push", + "wordSecond": "밀다 (milda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to pull", + "wordSecond": "당기다 (danggida)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to lift", + "wordSecond": "들다 (deulda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to fall", + "wordSecond": "떨어지다 (tteoreojida)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to jump", + "wordSecond": "뛰다 (ttwida)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to climb", + "wordSecond": "오르다 (oreuda)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to swim", + "wordSecond": "수영하다 (suyeonghada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to ride", + "wordSecond": "타다 (tada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "to drive", + "wordSecond": "운전하다 (unjeonhada)", + "createdAt": "2026-02-19T12:18:02.344Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_en_pl_A1.json b/output/2026_02_19_verbs_beginners_en_pl_A1.json new file mode 100644 index 0000000..53e3fa4 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_en_pl_A1.json @@ -0,0 +1,1371 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:18:30.877Z", + "metadata": { + "itemCount": 104, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to be", + "wordSecond": "być", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to have", + "wordSecond": "mieć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to do", + "wordSecond": "robić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to go", + "wordSecond": "iść", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to come", + "wordSecond": "przychodzić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to see", + "wordSecond": "widzieć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to look", + "wordSecond": "patrzeć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to hear", + "wordSecond": "słyszeć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to say", + "wordSecond": "mówić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to speak", + "wordSecond": "mówić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to talk", + "wordSecond": "rozmawiać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to ask", + "wordSecond": "pytać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to answer", + "wordSecond": "odpowiadać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to know", + "wordSecond": "wiedzieć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to think", + "wordSecond": "myśleć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to understand", + "wordSecond": "rozumieć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to want", + "wordSecond": "chcieć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to like", + "wordSecond": "lubić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to love", + "wordSecond": "kochać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to need", + "wordSecond": "potrzebować", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to eat", + "wordSecond": "jeść", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to drink", + "wordSecond": "pić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to cook", + "wordSecond": "gotować", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to buy", + "wordSecond": "kupować", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to pay", + "wordSecond": "płacić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to work", + "wordSecond": "pracować", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to live", + "wordSecond": "żyć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to sleep", + "wordSecond": "spać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to wake up", + "wordSecond": "budzić się", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to get up", + "wordSecond": "wstawać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to wash", + "wordSecond": "myć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to clean", + "wordSecond": "sprzątać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to open", + "wordSecond": "otwierać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to close", + "wordSecond": "zamykać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to read", + "wordSecond": "czytać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to write", + "wordSecond": "pisać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to learn", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to play", + "wordSecond": "grać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to sing", + "wordSecond": "śpiewać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to dance", + "wordSecond": "tańczyć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to listen", + "wordSecond": "słuchać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to watch", + "wordSecond": "oglądać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to help", + "wordSecond": "pomagać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to give", + "wordSecond": "dawać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to take", + "wordSecond": "brać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to put", + "wordSecond": "kłaść", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to find", + "wordSecond": "znajdować", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to lose", + "wordSecond": "gubić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to wait", + "wordSecond": "czekać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to meet", + "wordSecond": "spotykać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to call", + "wordSecond": "dzwonić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to start", + "wordSecond": "zaczynać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to finish", + "wordSecond": "kończyć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to stop", + "wordSecond": "przestawać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to walk", + "wordSecond": "chodzić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to run", + "wordSecond": "biegać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to sit", + "wordSecond": "siedzieć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to stand", + "wordSecond": "stać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to lie down", + "wordSecond": "kłaść się", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to jump", + "wordSecond": "skakać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to swim", + "wordSecond": "pływać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to drive", + "wordSecond": "jeździć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to travel", + "wordSecond": "podróżować", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to arrive", + "wordSecond": "przyjeżdżać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to leave", + "wordSecond": "wyjeżdżać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to enter", + "wordSecond": "wchodzić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to exit", + "wordSecond": "wychodzić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to bring", + "wordSecond": "przynosić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to carry", + "wordSecond": "nosić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to hold", + "wordSecond": "trzymać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to touch", + "wordSecond": "dotykać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to feel", + "wordSecond": "czuć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to smile", + "wordSecond": "uśmiechać się", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to laugh", + "wordSecond": "śmiać się", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to cry", + "wordSecond": "płakać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to shout", + "wordSecond": "krzyczeć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to be afraid", + "wordSecond": "bać się", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to hope", + "wordSecond": "mieć nadzieję", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to try", + "wordSecond": "próbować", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to can", + "wordSecond": "móc", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to must", + "wordSecond": "musieć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to should", + "wordSecond": "powinien", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to make", + "wordSecond": "robić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to use", + "wordSecond": "używać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to change", + "wordSecond": "zmieniać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to break", + "wordSecond": "łamać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to fix", + "wordSecond": "naprawiać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to build", + "wordSecond": "budować", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to cut", + "wordSecond": "kroić", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to draw", + "wordSecond": "rysować", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to count", + "wordSecond": "liczyć", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to show", + "wordSecond": "pokazywać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to explain", + "wordSecond": "wyjaśniać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to remember", + "wordSecond": "pamiętać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to forget", + "wordSecond": "zapominać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to choose", + "wordSecond": "wybierać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to decide", + "wordSecond": "decydować", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to agree", + "wordSecond": "zgadzać się", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to disagree", + "wordSecond": "nie zgadzać się", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to thank", + "wordSecond": "dziękować", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to welcome", + "wordSecond": "witać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to say goodbye", + "wordSecond": "żegnać się", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to invite", + "wordSecond": "zapraszać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "to visit", + "wordSecond": "odwiedzać", + "createdAt": "2026-02-19T12:18:30.877Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_en_pt_A1.json b/output/2026_02_19_verbs_beginners_en_pt_A1.json new file mode 100644 index 0000000..f725c54 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_en_pt_A1.json @@ -0,0 +1,1358 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:14:58.616Z", + "metadata": { + "itemCount": 103, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to be", + "wordSecond": "ser", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to have", + "wordSecond": "ter", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to do", + "wordSecond": "fazer", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to go", + "wordSecond": "ir", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to come", + "wordSecond": "vir", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to see", + "wordSecond": "ver", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to look", + "wordSecond": "olhar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to hear", + "wordSecond": "ouvir", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to listen", + "wordSecond": "escutar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to speak", + "wordSecond": "falar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to say", + "wordSecond": "dizer", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to talk", + "wordSecond": "conversar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to ask", + "wordSecond": "perguntar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to answer", + "wordSecond": "responder", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to read", + "wordSecond": "ler", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to write", + "wordSecond": "escrever", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to eat", + "wordSecond": "comer", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to drink", + "wordSecond": "beber", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to cook", + "wordSecond": "cozinhar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to buy", + "wordSecond": "comprar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to sell", + "wordSecond": "vender", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to pay", + "wordSecond": "pagar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to open", + "wordSecond": "abrir", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to close", + "wordSecond": "fechar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to start", + "wordSecond": "começar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to finish", + "wordSecond": "terminar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to work", + "wordSecond": "trabalhar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to study", + "wordSecond": "estudar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to learn", + "wordSecond": "aprender", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to teach", + "wordSecond": "ensinar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to play", + "wordSecond": "brincar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to sing", + "wordSecond": "cantar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to dance", + "wordSecond": "dançar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to walk", + "wordSecond": "andar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to run", + "wordSecond": "correr", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to jump", + "wordSecond": "pular", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to swim", + "wordSecond": "nadar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to drive", + "wordSecond": "dirigir", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to travel", + "wordSecond": "viajar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to arrive", + "wordSecond": "chegar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to leave", + "wordSecond": "sair", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to enter", + "wordSecond": "entrar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to exit", + "wordSecond": "sair", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to sit", + "wordSecond": "sentar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to stand", + "wordSecond": "ficar de pé", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to sleep", + "wordSecond": "dormir", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to wake up", + "wordSecond": "acordar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to live", + "wordSecond": "viver", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to die", + "wordSecond": "morrer", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to love", + "wordSecond": "amar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to like", + "wordSecond": "gostar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to want", + "wordSecond": "querer", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to need", + "wordSecond": "precisar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to think", + "wordSecond": "pensar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to know", + "wordSecond": "saber", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to understand", + "wordSecond": "entender", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to believe", + "wordSecond": "acreditar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to remember", + "wordSecond": "lembrar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to forget", + "wordSecond": "esquecer", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to feel", + "wordSecond": "sentir", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to smile", + "wordSecond": "sorrir", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to laugh", + "wordSecond": "rir", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to cry", + "wordSecond": "chorar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to help", + "wordSecond": "ajudar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to give", + "wordSecond": "dar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to take", + "wordSecond": "pegar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to bring", + "wordSecond": "trazer", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to send", + "wordSecond": "enviar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to receive", + "wordSecond": "receber", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to find", + "wordSecond": "encontrar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to lose", + "wordSecond": "perder", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to search", + "wordSecond": "procurar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to wait", + "wordSecond": "esperar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to meet", + "wordSecond": "encontrar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to call", + "wordSecond": "chamar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to clean", + "wordSecond": "limpar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to wash", + "wordSecond": "lavar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to dry", + "wordSecond": "secar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to organize", + "wordSecond": "organizar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to use", + "wordSecond": "usar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to try", + "wordSecond": "tentar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to change", + "wordSecond": "mudar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to stop", + "wordSecond": "parar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to continue", + "wordSecond": "continuar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to return", + "wordSecond": "voltar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to stay", + "wordSecond": "ficar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to become", + "wordSecond": "tornar-se", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to seem", + "wordSecond": "parecer", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to happen", + "wordSecond": "acontecer", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to rain", + "wordSecond": "chover", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to snow", + "wordSecond": "nevar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to shine", + "wordSecond": "brilhar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to grow", + "wordSecond": "crescer", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to cut", + "wordSecond": "cortar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to break", + "wordSecond": "quebrar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to fix", + "wordSecond": "consertar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to build", + "wordSecond": "construir", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to create", + "wordSecond": "criar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to choose", + "wordSecond": "escolher", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to decide", + "wordSecond": "decidir", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to plan", + "wordSecond": "planejar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to hope", + "wordSecond": "esperar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "to dream", + "wordSecond": "sonhar", + "createdAt": "2026-02-19T12:14:58.616Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_en_zh_A1.json b/output/2026_02_19_verbs_beginners_en_zh_A1.json new file mode 100644 index 0000000..1055501 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_en_zh_A1.json @@ -0,0 +1,1384 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:17:34.429Z", + "metadata": { + "itemCount": 105, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to be", + "wordSecond": "是 (shì)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to have", + "wordSecond": "有 (yǒu)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to do", + "wordSecond": "做 (zuò)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to go", + "wordSecond": "去 (qù)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to come", + "wordSecond": "来 (lái)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to see", + "wordSecond": "看 (kàn)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to look", + "wordSecond": "看 (kàn)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to eat", + "wordSecond": "吃 (chī)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to drink", + "wordSecond": "喝 (hē)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to sleep", + "wordSecond": "睡觉 (shuìjiào)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to wake up", + "wordSecond": "起床 (qǐchuáng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to work", + "wordSecond": "工作 (gōngzuò)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to study", + "wordSecond": "学习 (xuéxí)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to read", + "wordSecond": "读 (dú)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to write", + "wordSecond": "写 (xiě)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to speak", + "wordSecond": "说 (shuō)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to talk", + "wordSecond": "说话 (shuōhuà)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to listen", + "wordSecond": "听 (tīng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to hear", + "wordSecond": "听见 (tīngjiàn)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to know", + "wordSecond": "知道 (zhīdào)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to understand", + "wordSecond": "懂 (dǒng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to think", + "wordSecond": "想 (xiǎng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to like", + "wordSecond": "喜欢 (xǐhuan)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to love", + "wordSecond": "爱 (ài)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to want", + "wordSecond": "要 (yào)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to need", + "wordSecond": "需要 (xūyào)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to can", + "wordSecond": "会 (huì)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to must", + "wordSecond": "必须 (bìxū)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to open", + "wordSecond": "开 (kāi)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to close", + "wordSecond": "关 (guān)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to sit", + "wordSecond": "坐 (zuò)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to stand", + "wordSecond": "站 (zhàn)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to walk", + "wordSecond": "走 (zǒu)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to run", + "wordSecond": "跑 (pǎo)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to stop", + "wordSecond": "停 (tíng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to wait", + "wordSecond": "等 (děng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to give", + "wordSecond": "给 (gěi)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to take", + "wordSecond": "拿 (ná)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to buy", + "wordSecond": "买 (mǎi)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to sell", + "wordSecond": "卖 (mài)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to pay", + "wordSecond": "付钱 (fùqián)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to find", + "wordSecond": "找 (zhǎo)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to lose", + "wordSecond": "丢 (diū)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to play", + "wordSecond": "玩 (wán)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to sing", + "wordSecond": "唱 (chàng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to dance", + "wordSecond": "跳舞 (tiàowǔ)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to watch", + "wordSecond": "看 (kàn)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to help", + "wordSecond": "帮助 (bāngzhù)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to ask", + "wordSecond": "问 (wèn)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to answer", + "wordSecond": "回答 (huídá)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to call", + "wordSecond": "叫 (jiào)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to meet", + "wordSecond": "见 (jiàn)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to live", + "wordSecond": "住 (zhù)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to die", + "wordSecond": "死 (sǐ)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to be born", + "wordSecond": "出生 (chūshēng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to laugh", + "wordSecond": "笑 (xiào)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to cry", + "wordSecond": "哭 (kū)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to smile", + "wordSecond": "微笑 (wēixiào)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to feel", + "wordSecond": "感觉 (gǎnjué)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to hurt", + "wordSecond": "疼 (téng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to cook", + "wordSecond": "做饭 (zuòfàn)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to wash", + "wordSecond": "洗 (xǐ)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to clean", + "wordSecond": "打扫 (dǎsǎo)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to sweep", + "wordSecond": "扫 (sǎo)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to mop", + "wordSecond": "拖 (tuō)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to cook rice", + "wordSecond": "煮饭 (zhǔfàn)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to fry", + "wordSecond": "炒 (chǎo)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to boil", + "wordSecond": "煮 (zhǔ)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to cut", + "wordSecond": "切 (qiē)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to put", + "wordSecond": "放 (fàng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to get", + "wordSecond": "得到 (dédào)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to bring", + "wordSecond": "带 (dài)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to send", + "wordSecond": "送 (sòng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to receive", + "wordSecond": "收到 (shōudào)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to start", + "wordSecond": "开始 (kāishǐ)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to finish", + "wordSecond": "完成 (wánchéng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to end", + "wordSecond": "结束 (jiéshù)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to change", + "wordSecond": "换 (huàn)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to try", + "wordSecond": "试 (shì)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to use", + "wordSecond": "用 (yòng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to make", + "wordSecond": "做 (zuò)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to build", + "wordSecond": "建 (jiàn)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to break", + "wordSecond": "打破 (dǎpò)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to fix", + "wordSecond": "修 (xiū)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to drive", + "wordSecond": "开车 (kāichē)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to ride", + "wordSecond": "骑 (qí)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to fly", + "wordSecond": "飞 (fēi)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to swim", + "wordSecond": "游泳 (yóuyǒng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to jump", + "wordSecond": "跳 (tiào)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to climb", + "wordSecond": "爬 (pá)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to fall", + "wordSecond": "掉 (diào)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to catch", + "wordSecond": "接 (jiē)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to throw", + "wordSecond": "扔 (rēng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to kick", + "wordSecond": "踢 (tī)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to hit", + "wordSecond": "打 (dǎ)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to hold", + "wordSecond": "拿 (ná)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to touch", + "wordSecond": "摸 (mō)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to smell", + "wordSecond": "闻 (wén)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to taste", + "wordSecond": "尝 (cháng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to forget", + "wordSecond": "忘记 (wàngjì)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to remember", + "wordSecond": "记得 (jìde)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to choose", + "wordSecond": "选择 (xuǎnzé)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to decide", + "wordSecond": "决定 (juédìng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to hope", + "wordSecond": "希望 (xīwàng)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "to thank", + "wordSecond": "谢谢 (xièxie)", + "createdAt": "2026-02-19T12:17:34.429Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_es_de_A1.json b/output/2026_02_19_verbs_beginners_es_de_A1.json new file mode 100644 index 0000000..9c38513 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_es_de_A1.json @@ -0,0 +1,1280 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:19:09.146Z", + "metadata": { + "itemCount": 106, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ser", + "wordSecond": "sein", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tener", + "wordSecond": "haben", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hacer", + "wordSecond": "machen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ir", + "wordSecond": "gehen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "venir", + "wordSecond": "kommen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "decir", + "wordSecond": "sagen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ver", + "wordSecond": "sehen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "saber", + "wordSecond": "wissen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "querer", + "wordSecond": "wollen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "poder", + "wordSecond": "können", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dar", + "wordSecond": "geben", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "encontrar", + "wordSecond": "finden", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pensar", + "wordSecond": "denken", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tomar", + "wordSecond": "nehmen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hablar", + "wordSecond": "sprechen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "comer", + "wordSecond": "essen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "beber", + "wordSecond": "trinken", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "vivir", + "wordSecond": "leben", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "trabajar", + "wordSecond": "arbeiten", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "estudiar", + "wordSecond": "lernen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "leer", + "wordSecond": "lesen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "escribir", + "wordSecond": "schreiben", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "escuchar", + "wordSecond": "hören", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mirar", + "wordSecond": "schauen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sentir", + "wordSecond": "fühlen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "amar", + "wordSecond": "lieben", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "gustar", + "wordSecond": "mögen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "necesitar", + "wordSecond": "brauchen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ayudar", + "wordSecond": "helfen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "comprar", + "wordSecond": "kaufen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "vender", + "wordSecond": "verkaufen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pagar", + "wordSecond": "bezahlen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "costar", + "wordSecond": "kosten", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "abrir", + "wordSecond": "öffnen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cerrar", + "wordSecond": "schließen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "empezar", + "wordSecond": "beginnen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "terminar", + "wordSecond": "enden", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "esperar", + "wordSecond": "warten", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "buscar", + "wordSecond": "suchen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "perder", + "wordSecond": "verlieren", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "llegar", + "wordSecond": "ankommen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "salir", + "wordSecond": "ausgehen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "entrar", + "wordSecond": "eintreten", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "volver", + "wordSecond": "zurückkehren", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "quedarse", + "wordSecond": "bleiben", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "dormir", + "wordSecond": "schlafen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "despertar", + "wordSecond": "aufwachen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "levantarse", + "wordSecond": "aufstehen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sentarse", + "wordSecond": "sitzen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "pararse", + "wordSecond": "stehen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "correr", + "wordSecond": "laufen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "caminar", + "wordSecond": "gehen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "saltar", + "wordSecond": "springen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "nadar", + "wordSecond": "schwimmen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "bailar", + "wordSecond": "tanzen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cantar", + "wordSecond": "singen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "jugar", + "wordSecond": "spielen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ganar", + "wordSecond": "gewinnen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "llamar", + "wordSecond": "anrufen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "contestar", + "wordSecond": "antworten", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "preguntar", + "wordSecond": "fragen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "explicar", + "wordSecond": "erklären", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "entender", + "wordSecond": "verstehen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "olvidar", + "wordSecond": "vergessen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "recordar", + "wordSecond": "erinnern", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "creer", + "wordSecond": "glauben", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "conocer", + "wordSecond": "kennenlernen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "saludar", + "wordSecond": "grüßen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "despedirse", + "wordSecond": "verabschieden", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sonreír", + "wordSecond": "lächeln", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "reír", + "wordSecond": "lachen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "llorar", + "wordSecond": "weinen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "gritar", + "wordSecond": "schreien", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "callar", + "wordSecond": "schweigen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cocinar", + "wordSecond": "kochen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lavar", + "wordSecond": "waschen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "limpiar", + "wordSecond": "putzen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ordenar", + "wordSecond": "aufräumen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "planchar", + "wordSecond": "bügeln", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "guardar", + "wordSecond": "aufbewahren", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "usar", + "wordSecond": "benutzen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "recibir", + "wordSecond": "bekommen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "llevar", + "wordSecond": "tragen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "poner", + "wordSecond": "stellen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "quitar", + "wordSecond": "wegnehmen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mover", + "wordSecond": "bewegen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "parar", + "wordSecond": "stoppen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "intentar", + "wordSecond": "versuchen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lograr", + "wordSecond": "schaffen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "fallar", + "wordSecond": "scheitern", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cambiar", + "wordSecond": "wechseln", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "elegir", + "wordSecond": "wählen", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "decidir", + "wordSecond": "entscheiden", + "createdAt": "2026-02-19T12:19:09.146Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_es_fr_A1.json b/output/2026_02_19_verbs_beginners_es_fr_A1.json new file mode 100644 index 0000000..f327104 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_es_fr_A1.json @@ -0,0 +1,1397 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:19:28.411Z", + "metadata": { + "itemCount": 106, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ser", + "wordSecond": "être", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tener", + "wordSecond": "avoir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hacer", + "wordSecond": "faire", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ir", + "wordSecond": "aller", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "venir", + "wordSecond": "venir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "poder", + "wordSecond": "pouvoir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "decir", + "wordSecond": "dire", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ver", + "wordSecond": "voir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "saber", + "wordSecond": "savoir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "querer", + "wordSecond": "vouloir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "comer", + "wordSecond": "manger", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "beber", + "wordSecond": "boire", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dormir", + "wordSecond": "dormir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hablar", + "wordSecond": "parler", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "escuchar", + "wordSecond": "écouter", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "leer", + "wordSecond": "lire", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "escribir", + "wordSecond": "écrire", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "estudiar", + "wordSecond": "étudier", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "trabajar", + "wordSecond": "travailler", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "jugar", + "wordSecond": "jouer", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cantar", + "wordSecond": "chanter", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "bailar", + "wordSecond": "danser", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "caminar", + "wordSecond": "marcher", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "correr", + "wordSecond": "courir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "saltar", + "wordSecond": "sauter", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nadar", + "wordSecond": "nager", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "parar", + "wordSecond": "arrêter", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "comenzar", + "wordSecond": "commencer", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "terminar", + "wordSecond": "terminer", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "abrir", + "wordSecond": "ouvrir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cerrar", + "wordSecond": "fermer", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "entrar", + "wordSecond": "entrer", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "salir", + "wordSecond": "sortir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "subir", + "wordSecond": "monter", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "bajar", + "wordSecond": "descendre", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dar", + "wordSecond": "donner", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "recibir", + "wordSecond": "recevoir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tomar", + "wordSecond": "prendre", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "poner", + "wordSecond": "mettre", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "quitar", + "wordSecond": "enlever", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "buscar", + "wordSecond": "chercher", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "encontrar", + "wordSecond": "trouver", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "perder", + "wordSecond": "perdre", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "comprar", + "wordSecond": "acheter", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vender", + "wordSecond": "vendre", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pagar", + "wordSecond": "payer", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "costar", + "wordSecond": "coûter", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "llevar", + "wordSecond": "porter", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "usar", + "wordSecond": "utiliser", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "necesitar", + "wordSecond": "avoir besoin", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ayudar", + "wordSecond": "aider", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "llamar", + "wordSecond": "appeler", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "esperar", + "wordSecond": "attendre", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "preguntar", + "wordSecond": "demander", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "contestar", + "wordSecond": "répondre", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "explicar", + "wordSecond": "expliquer", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "entender", + "wordSecond": "comprendre", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pensar", + "wordSecond": "penser", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "creer", + "wordSecond": "croire", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "saber", + "wordSecond": "savoir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "conocer", + "wordSecond": "connaître", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "recordar", + "wordSecond": "se souvenir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "olvidar", + "wordSecond": "oublier", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "amar", + "wordSecond": "aimer", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "gustar", + "wordSecond": "aimer", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "odiar", + "wordSecond": "détester", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "reír", + "wordSecond": "rire", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "llorar", + "wordSecond": "pleurer", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sonreír", + "wordSecond": "sourire", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sentir", + "wordSecond": "sentir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vivir", + "wordSecond": "vivre", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "morir", + "wordSecond": "mourir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nacer", + "wordSecond": "naître", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "crecer", + "wordSecond": "grandir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cambiar", + "wordSecond": "changer", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "viajar", + "wordSecond": "voyager", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "conducir", + "wordSecond": "conduire", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "volver", + "wordSecond": "revenir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "regresar", + "wordSecond": "retourner", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "visitar", + "wordSecond": "visiter", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "limpiar", + "wordSecond": "nettoyer", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lavar", + "wordSecond": "laver", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cocinar", + "wordSecond": "cuisiner", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "comprar", + "wordSecond": "acheter", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "preparar", + "wordSecond": "préparer", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "servir", + "wordSecond": "servir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "comer", + "wordSecond": "manger", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "beber", + "wordSecond": "boire", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "limpiar", + "wordSecond": "nettoyer", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ordenar", + "wordSecond": "ranger", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "planchar", + "wordSecond": "repasser", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cortar", + "wordSecond": "couper", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pegar", + "wordSecond": "coller", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "dibujar", + "wordSecond": "dessiner", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "pintar", + "wordSecond": "peindre", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "construir", + "wordSecond": "construire", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "reparar", + "wordSecond": "réparer", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "mirar", + "wordSecond": "regarder", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "escuchar", + "wordSecond": "écouter", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sentarse", + "wordSecond": "s'asseoir", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "levantarse", + "wordSecond": "se lever", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "acostarse", + "wordSecond": "se coucher", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "despertarse", + "wordSecond": "se réveiller", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ducharse", + "wordSecond": "se doucher", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "vestirse", + "wordSecond": "s'habiller", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "desvestirse", + "wordSecond": "se déshabiller", + "createdAt": "2026-02-19T12:19:28.411Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_es_it_A1.json b/output/2026_02_19_verbs_beginners_es_it_A1.json new file mode 100644 index 0000000..6c08bed --- /dev/null +++ b/output/2026_02_19_verbs_beginners_es_it_A1.json @@ -0,0 +1,1449 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:19:48.663Z", + "metadata": { + "itemCount": 110, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ser", + "wordSecond": "essere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estar", + "wordSecond": "stare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tener", + "wordSecond": "avere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hacer", + "wordSecond": "fare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ir", + "wordSecond": "andare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "venir", + "wordSecond": "venire", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "poder", + "wordSecond": "potere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "querer", + "wordSecond": "volere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "decir", + "wordSecond": "dire", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ver", + "wordSecond": "vedere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "saber", + "wordSecond": "sapere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "comer", + "wordSecond": "mangiare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "beber", + "wordSecond": "bere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dormir", + "wordSecond": "dormire", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vivir", + "wordSecond": "vivere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "trabajar", + "wordSecond": "lavorare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estudiar", + "wordSecond": "studiare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "leer", + "wordSecond": "leggere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "escribir", + "wordSecond": "scrivere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "hablar", + "wordSecond": "parlare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "escuchar", + "wordSecond": "ascoltare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "mirar", + "wordSecond": "guardare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "comprar", + "wordSecond": "comprare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vender", + "wordSecond": "vendere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pagar", + "wordSecond": "pagare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cocinar", + "wordSecond": "cucinare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "limpiar", + "wordSecond": "pulire", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lavar", + "wordSecond": "lavare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "planchar", + "wordSecond": "stirare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ordenar", + "wordSecond": "ordinare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "abrir", + "wordSecond": "aprire", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cerrar", + "wordSecond": "chiudere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "entrar", + "wordSecond": "entrare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "salir", + "wordSecond": "uscire", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "llegar", + "wordSecond": "arrivare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "partir", + "wordSecond": "partire", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "correr", + "wordSecond": "correre", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "caminar", + "wordSecond": "camminare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "saltar", + "wordSecond": "saltare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nadar", + "wordSecond": "nuotare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bailar", + "wordSecond": "ballare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cantar", + "wordSecond": "cantare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "jugar", + "wordSecond": "giocare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ganar", + "wordSecond": "vincere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "perder", + "wordSecond": "perdere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "buscar", + "wordSecond": "cercare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "encontrar", + "wordSecond": "trovare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dar", + "wordSecond": "dare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "recibir", + "wordSecond": "ricevere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tomar", + "wordSecond": "prendere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "poner", + "wordSecond": "mettere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "quitar", + "wordSecond": "togliere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "llevar", + "wordSecond": "portare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "traer", + "wordSecond": "portare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ayudar", + "wordSecond": "aiutare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "necesitar", + "wordSecond": "aver bisogno", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "esperar", + "wordSecond": "aspettare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "llamar", + "wordSecond": "chiamare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "contestar", + "wordSecond": "rispondere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "preguntar", + "wordSecond": "chiedere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "explicar", + "wordSecond": "spiegare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "entender", + "wordSecond": "capire", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pensar", + "wordSecond": "pensare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "creer", + "wordSecond": "credere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "saber", + "wordSecond": "sapere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "conocer", + "wordSecond": "conoscere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "recordar", + "wordSecond": "ricordare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "olvidar", + "wordSecond": "dimenticare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sentir", + "wordSecond": "sentire", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "amar", + "wordSecond": "amare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "querer", + "wordSecond": "volere bene", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "gustar", + "wordSecond": "piacere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "odiar", + "wordSecond": "odiare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "temer", + "wordSecond": "temere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "reír", + "wordSecond": "ridere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "llorar", + "wordSecond": "piangere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sonreír", + "wordSecond": "sorridere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sufrir", + "wordSecond": "soffrire", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "disfrutar", + "wordSecond": "godere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "descansar", + "wordSecond": "riposare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "despertar", + "wordSecond": "svegliare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "acostar", + "wordSecond": "coricarsi", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "vestir", + "wordSecond": "vestire", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "desvestir", + "wordSecond": "spogliare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "duchar", + "wordSecond": "fare la doccia", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bañar", + "wordSecond": "fare il bagno", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "afeitar", + "wordSecond": "radere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "peinar", + "wordSecond": "pettinare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cortar", + "wordSecond": "tagliare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "medir", + "wordSecond": "misurare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pesar", + "wordSecond": "pesare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "construir", + "wordSecond": "costruire", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "reparar", + "wordSecond": "riparare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "pintar", + "wordSecond": "dipingere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "dibujar", + "wordSecond": "disegnare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "fotografiar", + "wordSecond": "fotografare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "viajar", + "wordSecond": "viaggiare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "conducir", + "wordSecond": "guidare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "parar", + "wordSecond": "fermare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "subir", + "wordSecond": "salire", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bajar", + "wordSecond": "scendere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "volver", + "wordSecond": "tornare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "empezar", + "wordSecond": "cominciare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "terminar", + "wordSecond": "finire", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "continuar", + "wordSecond": "continuare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cambiar", + "wordSecond": "cambiare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "crecer", + "wordSecond": "crescere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "envejecer", + "wordSecond": "invecchiare", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "morir", + "wordSecond": "morire", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + }, + { + "id": 100109, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nacer", + "wordSecond": "nascere", + "createdAt": "2026-02-19T12:19:48.663Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + }, + { + "vocabularyItemId": 100109, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_es_ja_A1.json b/output/2026_02_19_verbs_beginners_es_ja_A1.json new file mode 100644 index 0000000..00b2357 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_es_ja_A1.json @@ -0,0 +1,1410 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:20:23.732Z", + "metadata": { + "itemCount": 107, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ser", + "wordSecond": "です (です, desu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "estar", + "wordSecond": "です (です, desu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tener", + "wordSecond": "ある (ある, aru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hacer", + "wordSecond": "する (する, suru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ir", + "wordSecond": "行く (いく, iku)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "venir", + "wordSecond": "来る (くる, kuru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ver", + "wordSecond": "見る (みる, miru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "decir", + "wordSecond": "言う (いう, iu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "saber", + "wordSecond": "知る (しる, shiru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "querer", + "wordSecond": "欲しい (ほしい, hoshii)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "poder", + "wordSecond": "できる (できる, dekiru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dar", + "wordSecond": "あげる (あげる, ageru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "comer", + "wordSecond": "食べる (たべる, taberu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "beber", + "wordSecond": "飲む (のむ, nomu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dormir", + "wordSecond": "寝る (ねる, neru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "vivir", + "wordSecond": "住む (すむ, sumu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "trabajar", + "wordSecond": "働く (はたらく, hataraku)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "estudiar", + "wordSecond": "勉強する (べんきょうする, benkyou suru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "leer", + "wordSecond": "読む (よむ, yomu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "escribir", + "wordSecond": "書く (かく, kaku)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hablar", + "wordSecond": "話す (はなす, hanasu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "escuchar", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cantar", + "wordSecond": "歌う (うたう, utau)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "bailar", + "wordSecond": "踊る (おどる, odoru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "jugar", + "wordSecond": "遊ぶ (あそぶ, asobu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "correr", + "wordSecond": "走る (はしる, hashiru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "caminar", + "wordSecond": "歩く (あるく, aruku)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "nadar", + "wordSecond": "泳ぐ (およぐ, oyogu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "saltar", + "wordSecond": "跳ぶ (とぶ, tobu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "parar", + "wordSecond": "止まる (とまる, tomaru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sentarse", + "wordSecond": "座る (すわる, suwaru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "levantarse", + "wordSecond": "立つ (たつ, tatsu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "abrir", + "wordSecond": "開ける (あける, akeru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cerrar", + "wordSecond": "閉める (しめる, shimeru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "entrar", + "wordSecond": "入る (はいる, hairu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "salir", + "wordSecond": "出る (でる, deru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "llegar", + "wordSecond": "着く (つく, tsuku)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "comprar", + "wordSecond": "買う (かう, kau)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "vender", + "wordSecond": "売る (うる, uru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pagar", + "wordSecond": "払う (はらう, harau)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cocinar", + "wordSecond": "料理する (りょうりする, ryouri suru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "limpiar", + "wordSecond": "掃除する (そうじする, souji suru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lavar", + "wordSecond": "洗う (あらう, arau)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "planchar", + "wordSecond": "アイロンをかける (アイロンをかける, airon o kakeru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ordenar", + "wordSecond": "片付ける (かたづける, katazukeru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "esperar", + "wordSecond": "待つ (まつ, matsu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "buscar", + "wordSecond": "探す (さがす, sagasu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "encontrar", + "wordSecond": "見つける (みつける, mitsukeru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "llevar", + "wordSecond": "持つ (もつ, motsu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "poner", + "wordSecond": "置く (おく, oku)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tomar", + "wordSecond": "取る (とる, toru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "usar", + "wordSecond": "使う (つかう, tsukau)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "necesitar", + "wordSecond": "必要がある (ひつようがある, hitsuyou ga aru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "gustar", + "wordSecond": "好き (すき, suki)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "amar", + "wordSecond": "愛する (あいする, ai suru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "odiar", + "wordSecond": "嫌い (きらい, kirai)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "reír", + "wordSecond": "笑う (わらう, warau)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "llorar", + "wordSecond": "泣く (なく, naku)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pensar", + "wordSecond": "考える (かんがえる, kangaeru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "entender", + "wordSecond": "分かる (わかる, wakaru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "aprender", + "wordSecond": "学ぶ (まなぶ, manabu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "enseñar", + "wordSecond": "教える (おしえる, oshieru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ayudar", + "wordSecond": "助ける (たすける, tasukeru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "llamar", + "wordSecond": "呼ぶ (よぶ, yobu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "contestar", + "wordSecond": "答える (こたえる, kotaeru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "preguntar", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "explicar", + "wordSecond": "説明する (せつめいする, setsumei suru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "empezar", + "wordSecond": "始める (はじめる, hajimeru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "terminar", + "wordSecond": "終わる (おわる, owaru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "continuar", + "wordSecond": "続ける (つづける, tsuzukeru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cambiar", + "wordSecond": "変える (かえる, kaeru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "creer", + "wordSecond": "信じる (しんじる, shinjiru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "recordar", + "wordSecond": "覚える (おぼえる, oboeru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "olvidar", + "wordSecond": "忘れる (わすれる, wasureru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mirar", + "wordSecond": "見る (みる, miru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mostrar", + "wordSecond": "見せる (みせる, miseru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "seguir", + "wordSecond": "従う (したがう, shitagau)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "volver", + "wordSecond": "戻る (もどる, modoru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "viajar", + "wordSecond": "旅行する (りょこうする, ryokou suru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "conducir", + "wordSecond": "運転する (うんてんする, unten suru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "parquear", + "wordSecond": "駐車する (ちゅうしゃする, chuusha suru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "subir", + "wordSecond": "上がる (あがる, agaru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "bajar", + "wordSecond": "下がる (さがる, sagaru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "girar", + "wordSecond": "曲がる (まがる, magaru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cruzar", + "wordSecond": "渡る (わたる, wataru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cortar", + "wordSecond": "切る (きる, kiru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pegar", + "wordSecond": "貼る (はる, haru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "dibujar", + "wordSecond": "描く (かく, kaku)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "pintar", + "wordSecond": "塗る (ぬる, nuru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "construir", + "wordSecond": "建てる (たてる, tateru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "reparar", + "wordSecond": "直す (なおす, naosu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "romper", + "wordSecond": "壊す (こわす, kowasu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tocar", + "wordSecond": "触る (さわる, sawaru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sentir", + "wordSecond": "感じる (かんじる, kanjiru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sufrir", + "wordSecond": "苦しむ (くるしむ, kurushimu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "disfrutar", + "wordSecond": "楽しむ (たのしむ, tanoshimu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "celebrar", + "wordSecond": "祝う (いわう, iwau)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "invitar", + "wordSecond": "招待する (しょうたいする, shoutai suru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "visitar", + "wordSecond": "訪ねる (たずねる, tazuneru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "saludar", + "wordSecond": "挨拶する (あいさつする, aisatsu suru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "despedirse", + "wordSecond": "別れる (わかれる, wakareru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "besar", + "wordSecond": "キスする (キスする, kisu suru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "abrazar", + "wordSecond": "抱きしめる (だきしめる, dakishimeru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sonreír", + "wordSecond": "微笑む (ほほえむ, hohoemu)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "suspirar", + "wordSecond": "ため息をつく (ためいきをつく, tameiki o tsuku)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "bostezar", + "wordSecond": "あくびをする (あくびをする, akubi o suru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "respirar", + "wordSecond": "呼吸する (こきゅうする, kokyuu suru)", + "createdAt": "2026-02-19T12:20:23.732Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_es_ko_A1.json b/output/2026_02_19_verbs_beginners_es_ko_A1.json new file mode 100644 index 0000000..28f56d3 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_es_ko_A1.json @@ -0,0 +1,1423 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:22:35.455Z", + "metadata": { + "itemCount": 108, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ser", + "wordSecond": "이다 (ida)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tener", + "wordSecond": "가지다 (gajida)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hacer", + "wordSecond": "하다 (hada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ir", + "wordSecond": "가다 (gada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "venir", + "wordSecond": "오다 (oda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ver", + "wordSecond": "보다 (boda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "decir", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "saber", + "wordSecond": "알다 (alda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "querer", + "wordSecond": "원하다 (wonhada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "poder", + "wordSecond": "할 수 있다 (hal su itda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "estar", + "wordSecond": "있다 (itda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dar", + "wordSecond": "주다 (juda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "comer", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "beber", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dormir", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "vivir", + "wordSecond": "살다 (salda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "trabajar", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "estudiar", + "wordSecond": "공부하다 (gongbuhada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "leer", + "wordSecond": "읽다 (ikda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "escribir", + "wordSecond": "쓰다 (sseuda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "escuchar", + "wordSecond": "듣다 (deutda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hablar", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "llamar", + "wordSecond": "부르다 (bureuda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "preguntar", + "wordSecond": "묻다 (mutda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "responder", + "wordSecond": "대답하다 (daedaphada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "comprar", + "wordSecond": "사다 (sada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "vender", + "wordSecond": "팔다 (palda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pagar", + "wordSecond": "지불하다 (jibulhada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cocinar", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lavar", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "limpiar", + "wordSecond": "청소하다 (cheongsohada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "abrir", + "wordSecond": "열다 (yeolda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cerrar", + "wordSecond": "닫다 (datda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "entrar", + "wordSecond": "들어가다 (deureogada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "salir", + "wordSecond": "나가다 (nagada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "subir", + "wordSecond": "올라가다 (ollagada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "bajar", + "wordSecond": "내려가다 (naeryeogada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "correr", + "wordSecond": "달리다 (dallida)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "caminar", + "wordSecond": "걷다 (geotda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "parar", + "wordSecond": "서다 (seoda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sentar", + "wordSecond": "앉다 (anda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "levantar", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mirar", + "wordSecond": "보다 (boda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "esperar", + "wordSecond": "기다리다 (gidarida)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "buscar", + "wordSecond": "찾다 (chatda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "encontrar", + "wordSecond": "찾다 (chatda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "llevar", + "wordSecond": "가지고 가다 (gajigo gada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "traer", + "wordSecond": "가져오다 (gajyeooda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "poner", + "wordSecond": "놓다 (nota)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "quitar", + "wordSecond": "떼다 (ttedda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "usar", + "wordSecond": "사용하다 (sayonghada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "necesitar", + "wordSecond": "필요하다 (piryohada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "gustar", + "wordSecond": "좋아하다 (joahada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "amar", + "wordSecond": "사랑하다 (saranghada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "odiar", + "wordSecond": "미워하다 (miwohada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "reír", + "wordSecond": "웃다 (utda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "llorar", + "wordSecond": "울다 (ulda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pensar", + "wordSecond": "생각하다 (saenggakhada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "creer", + "wordSecond": "믿다 (mitda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "entender", + "wordSecond": "이해하다 (ihaehada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "aprender", + "wordSecond": "배우다 (baeuda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "enseñar", + "wordSecond": "가르치다 (gareuchida)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ayudar", + "wordSecond": "도와주다 (dowajuda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pedir", + "wordSecond": "요청하다 (yocheonghada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dar las gracias", + "wordSecond": "감사하다 (gamsahada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "perdonar", + "wordSecond": "용서하다 (yongseohada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "empezar", + "wordSecond": "시작하다 (sijakhada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "terminar", + "wordSecond": "끝내다 (kkeutnaeda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "continuar", + "wordSecond": "계속하다 (gyesokhada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cambiar", + "wordSecond": "바꾸다 (bakkuda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "volver", + "wordSecond": "돌아가다 (doragada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "regresar", + "wordSecond": "돌아오다 (doraoda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "viajar", + "wordSecond": "여행하다 (yeohaenghada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "conocer", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "encontrarse", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "jugar", + "wordSecond": "놀다 (nolda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cantar", + "wordSecond": "노래하다 (noraehada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "bailar", + "wordSecond": "춤추다 (chumchuda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "dibujar", + "wordSecond": "그리다 (geurida)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pintar", + "wordSecond": "칠하다 (chilhada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tomar", + "wordSecond": "타다 (tada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "conducir", + "wordSecond": "운전하다 (unjeonhada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "parquear", + "wordSecond": "주차하다 (juchahada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "llover", + "wordSecond": "비가 오다 (biga oda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "nevar", + "wordSecond": "눈이 오다 (nuni oda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "llamar por teléfono", + "wordSecond": "전화하다 (jeonhwahada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "enviar", + "wordSecond": "보내다 (bonaeda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "recibir", + "wordSecond": "받다 (batda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "abrazar", + "wordSecond": "안아주다 (anajuda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "besar", + "wordSecond": "키스하다 (kiseuhada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sonreír", + "wordSecond": "미소 짓다 (miso jitda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tocar", + "wordSecond": "만지다 (manjida)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sentir", + "wordSecond": "느끼다 (neukkida)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "oler", + "wordSecond": "냄새 맡다 (naemsae matda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "probar", + "wordSecond": "맛보다 (matboda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cortar", + "wordSecond": "자르다 (jareuda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pegar", + "wordSecond": "붙이다 (buchida)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "coser", + "wordSecond": "꿰매다 (kkwemaeda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "planchar", + "wordSecond": "다림질하다 (darimjilhada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ordenar", + "wordSecond": "정리하다 (jeongnihada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "guardar", + "wordSecond": "저장하다 (jeojanghada)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "encender", + "wordSecond": "켜다 (kyeoda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "apagar", + "wordSecond": "끄다 (kkeuda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "llenar", + "wordSecond": "채우다 (chaeuda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "vaciar", + "wordSecond": "비우다 (biuda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "medir", + "wordSecond": "재다 (jaeda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pesar", + "wordSecond": "무게를 재다 (mugereul jaeda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "costar", + "wordSecond": "비용이 들다 (biyongi deulda)", + "createdAt": "2026-02-19T12:22:35.455Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_es_pl_A1.json b/output/2026_02_19_verbs_beginners_es_pl_A1.json new file mode 100644 index 0000000..6b3d09d --- /dev/null +++ b/output/2026_02_19_verbs_beginners_es_pl_A1.json @@ -0,0 +1,1436 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:22:56.429Z", + "metadata": { + "itemCount": 109, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ser", + "wordSecond": "być", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tener", + "wordSecond": "mieć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hacer", + "wordSecond": "robić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "decir", + "wordSecond": "mówić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ir", + "wordSecond": "iść", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ver", + "wordSecond": "widzieć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dar", + "wordSecond": "dawać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "saber", + "wordSecond": "wiedzieć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "querer", + "wordSecond": "chcieć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "llegar", + "wordSecond": "przychodzić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pasar", + "wordSecond": "przechodzić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "deber", + "wordSecond": "musieć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "poner", + "wordSecond": "kłaść", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "parecer", + "wordSecond": "wydawać się", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "quedar", + "wordSecond": "zostawać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "creer", + "wordSecond": "wierzyć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hablar", + "wordSecond": "mówić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "llevar", + "wordSecond": "nosić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dejar", + "wordSecond": "zostawiać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "seguir", + "wordSecond": "kontynuować", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "encontrar", + "wordSecond": "znajdować", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "llamar", + "wordSecond": "dzwonić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "venir", + "wordSecond": "przychodzić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pensar", + "wordSecond": "myśleć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "salir", + "wordSecond": "wychodzić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "volver", + "wordSecond": "wracać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tomar", + "wordSecond": "brać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "conocer", + "wordSecond": "znać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "vivir", + "wordSecond": "żyć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sentir", + "wordSecond": "czuć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tratar", + "wordSecond": "próbować", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mirar", + "wordSecond": "patrzeć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "contar", + "wordSecond": "liczyć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "empezar", + "wordSecond": "zaczynać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "esperar", + "wordSecond": "czekać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "buscar", + "wordSecond": "szukać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "entrar", + "wordSecond": "wchodzić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "trabajar", + "wordSecond": "pracować", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "escribir", + "wordSecond": "pisać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "perder", + "wordSecond": "tracić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "producir", + "wordSecond": "produkować", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ocurrir", + "wordSecond": "zdarzać się", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "entender", + "wordSecond": "rozumieć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pedir", + "wordSecond": "prosić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "recibir", + "wordSecond": "otrzymywać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "recordar", + "wordSecond": "pamiętać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "terminar", + "wordSecond": "kończyć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "permitir", + "wordSecond": "pozwalać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "aparecer", + "wordSecond": "pojawiać się", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "conseguir", + "wordSecond": "osiągać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "comenzar", + "wordSecond": "zaczynać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "servir", + "wordSecond": "służyć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sacar", + "wordSecond": "wyjmować", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "necesitar", + "wordSecond": "potrzebować", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mantener", + "wordSecond": "utrzymywać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "resultar", + "wordSecond": "okazywać się", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "leer", + "wordSecond": "czytać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "caer", + "wordSecond": "spadać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cambiar", + "wordSecond": "zmieniać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "presentar", + "wordSecond": "przedstawiać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "crear", + "wordSecond": "tworzyć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "abrir", + "wordSecond": "otwierać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "considerar", + "wordSecond": "rozważać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "oír", + "wordSecond": "słyszeć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "acabar", + "wordSecond": "kończyć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "convertir", + "wordSecond": "przekształcać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ganar", + "wordSecond": "wygrać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "formar", + "wordSecond": "tworzyć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "traer", + "wordSecond": "przynosić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "partir", + "wordSecond": "dzielić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "morir", + "wordSecond": "umierać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "aceptar", + "wordSecond": "akceptować", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "realizar", + "wordSecond": "wykonywać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "suponer", + "wordSecond": "zakładać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "comprender", + "wordSecond": "rozumieć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "lograr", + "wordSecond": "osiągać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "explicar", + "wordSecond": "wyjaśniać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "preguntar", + "wordSecond": "pytać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tocar", + "wordSecond": "dotykać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "reconocer", + "wordSecond": "rozpoznawać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "estudiar", + "wordSecond": "studiować", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "alcanzar", + "wordSecond": "osiągać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "nacer", + "wordSecond": "rodzić się", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dirigir", + "wordSecond": "kierować", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "correr", + "wordSecond": "biegać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "utilizar", + "wordSecond": "używać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "pagar", + "wordSecond": "płacić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ayudar", + "wordSecond": "pomagać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "jugar", + "wordSecond": "grać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "escuchar", + "wordSecond": "słuchać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cumplir", + "wordSecond": "spełniać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ofrecer", + "wordSecond": "oferować", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "descubrir", + "wordSecond": "odkrywać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "levantar", + "wordSecond": "podnosić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "intentar", + "wordSecond": "próbować", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "usar", + "wordSecond": "używać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "comer", + "wordSecond": "jeść", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "beber", + "wordSecond": "pić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "dormir", + "wordSecond": "spać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "despertar", + "wordSecond": "budzić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "lavar", + "wordSecond": "myć", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "limpiar", + "wordSecond": "czyścić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cocinar", + "wordSecond": "gotować", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "comprar", + "wordSecond": "kupować", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "vender", + "wordSecond": "sprzedawać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "amar", + "wordSecond": "kochać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "odiar", + "wordSecond": "nienawidzić", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sonreír", + "wordSecond": "uśmiechać się", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "llorar", + "wordSecond": "płakać", + "createdAt": "2026-02-19T12:22:56.429Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_es_pt_A1.json b/output/2026_02_19_verbs_beginners_es_pt_A1.json new file mode 100644 index 0000000..719b1f0 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_es_pt_A1.json @@ -0,0 +1,1397 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:18:49.859Z", + "metadata": { + "itemCount": 106, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ser", + "wordSecond": "ser", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estar", + "wordSecond": "estar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tener", + "wordSecond": "ter", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hacer", + "wordSecond": "fazer", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ir", + "wordSecond": "ir", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "venir", + "wordSecond": "vir", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "poder", + "wordSecond": "poder", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "querer", + "wordSecond": "querer", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "decir", + "wordSecond": "dizer", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ver", + "wordSecond": "ver", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "saber", + "wordSecond": "saber", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dar", + "wordSecond": "dar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "comer", + "wordSecond": "comer", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "beber", + "wordSecond": "beber", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dormir", + "wordSecond": "dormir", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hablar", + "wordSecond": "falar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escuchar", + "wordSecond": "escutar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "leer", + "wordSecond": "ler", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escribir", + "wordSecond": "escrever", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cantar", + "wordSecond": "cantar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bailar", + "wordSecond": "dançar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "trabajar", + "wordSecond": "trabalhar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estudiar", + "wordSecond": "estudar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aprender", + "wordSecond": "aprender", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "enseñar", + "wordSecond": "ensinar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "comprar", + "wordSecond": "comprar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vender", + "wordSecond": "vender", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pagar", + "wordSecond": "pagar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cocinar", + "wordSecond": "cozinhar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lavar", + "wordSecond": "lavar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "limpiar", + "wordSecond": "limpar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "planchar", + "wordSecond": "passar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ordenar", + "wordSecond": "arrumar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "abrir", + "wordSecond": "abrir", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cerrar", + "wordSecond": "fechar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "entrar", + "wordSecond": "entrar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "salir", + "wordSecond": "sair", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "llegar", + "wordSecond": "chegar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "partir", + "wordSecond": "partir", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "caminar", + "wordSecond": "caminhar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "correr", + "wordSecond": "correr", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "saltar", + "wordSecond": "pular", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nadar", + "wordSecond": "nadar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "subir", + "wordSecond": "subir", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "bajar", + "wordSecond": "descer", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "parar", + "wordSecond": "parar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "esperar", + "wordSecond": "esperar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sentarse", + "wordSecond": "sentar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "levantarse", + "wordSecond": "levantar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "acostarse", + "wordSecond": "deitar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "despertarse", + "wordSecond": "acordar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vestirse", + "wordSecond": "vestir", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ducharse", + "wordSecond": "tomar banho", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "peinarse", + "wordSecond": "pentear", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "llamar", + "wordSecond": "chamar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "preguntar", + "wordSecond": "perguntar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "responder", + "wordSecond": "responder", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "contar", + "wordSecond": "contar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "explicar", + "wordSecond": "explicar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "entender", + "wordSecond": "entender", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pensar", + "wordSecond": "pensar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "creer", + "wordSecond": "acreditar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "recordar", + "wordSecond": "lembrar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "olvidar", + "wordSecond": "esquecer", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "amar", + "wordSecond": "amar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "querer", + "wordSecond": "querer", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gustar", + "wordSecond": "gostar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "odiar", + "wordSecond": "odiar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reír", + "wordSecond": "rir", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "llorar", + "wordSecond": "chorar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sonreír", + "wordSecond": "sorrir", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sentir", + "wordSecond": "sentir", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "temer", + "wordSecond": "temer", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sorprender", + "wordSecond": "surpreender", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ayudar", + "wordSecond": "ajudar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "necesitar", + "wordSecond": "precisar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "buscar", + "wordSecond": "procurar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "encontrar", + "wordSecond": "encontrar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "perder", + "wordSecond": "perder", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ganar", + "wordSecond": "ganhar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "jugar", + "wordSecond": "jogar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mirar", + "wordSecond": "olhar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tomar", + "wordSecond": "tomar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "usar", + "wordSecond": "usar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "llevar", + "wordSecond": "levar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "traer", + "wordSecond": "trazer", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "poner", + "wordSecond": "pôr", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "quitar", + "wordSecond": "tirar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "guardar", + "wordSecond": "guardar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cambiar", + "wordSecond": "mudar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "empezar", + "wordSecond": "começar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "terminar", + "wordSecond": "terminar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "continuar", + "wordSecond": "continuar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "volver", + "wordSecond": "voltar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dejar", + "wordSecond": "deixar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "permitir", + "wordSecond": "permitir", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "prohibir", + "wordSecond": "proibir", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vivir", + "wordSecond": "viver", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "morir", + "wordSecond": "morrer", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nacer", + "wordSecond": "nascer", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "crecer", + "wordSecond": "crescer", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "llover", + "wordSecond": "chover", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nevar", + "wordSecond": "nevar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "viajar", + "wordSecond": "viajar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "conducir", + "wordSecond": "dirigir", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "parquear", + "wordSecond": "estacionar", + "createdAt": "2026-02-19T12:18:49.859Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_es_zh_A1.json b/output/2026_02_19_verbs_beginners_es_zh_A1.json new file mode 100644 index 0000000..4905ced --- /dev/null +++ b/output/2026_02_19_verbs_beginners_es_zh_A1.json @@ -0,0 +1,1384 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:22:04.272Z", + "metadata": { + "itemCount": 105, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "comer", + "wordSecond": "吃 (chī)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "beber", + "wordSecond": "喝 (hē)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "dormir", + "wordSecond": "睡 (shuì)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "levantarse", + "wordSecond": "起 (qǐ)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ir", + "wordSecond": "去 (qù)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "venir", + "wordSecond": "来 (lái)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "caminar", + "wordSecond": "走 (zǒu)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "correr", + "wordSecond": "跑 (pǎo)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "parar", + "wordSecond": "停 (tíng)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sentarse", + "wordSecond": "坐 (zuò)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "estar de pie", + "wordSecond": "站 (zhàn)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mirar", + "wordSecond": "看 (kàn)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ver", + "wordSecond": "看见 (kànjiàn)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "escuchar", + "wordSecond": "听 (tīng)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "oír", + "wordSecond": "听见 (tīngjiàn)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hablar", + "wordSecond": "说 (shuō)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "decir", + "wordSecond": "告诉 (gàosu)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "preguntar", + "wordSecond": "问 (wèn)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "responder", + "wordSecond": "回答 (huídá)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "llamar", + "wordSecond": "叫 (jiào)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "leer", + "wordSecond": "读 (dú)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "escribir", + "wordSecond": "写 (xiě)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cantar", + "wordSecond": "唱 (chàng)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "bailar", + "wordSecond": "跳舞 (tiàowǔ)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "trabajar", + "wordSecond": "工作 (gōngzuò)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "estudiar", + "wordSecond": "学习 (xuéxí)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "enseñar", + "wordSecond": "教 (jiāo)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "aprender", + "wordSecond": "学 (xué)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "comprar", + "wordSecond": "买 (mǎi)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "vender", + "wordSecond": "卖 (mài)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pagar", + "wordSecond": "付钱 (fùqián)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "costar", + "wordSecond": "要 (yào)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "abrir", + "wordSecond": "开 (kāi)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cerrar", + "wordSecond": "关 (guān)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "entrar", + "wordSecond": "进 (jìn)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "salir", + "wordSecond": "出 (chū)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "llegar", + "wordSecond": "到 (dào)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "esperar", + "wordSecond": "等 (děng)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "encontrar", + "wordSecond": "找 (zhǎo)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "perder", + "wordSecond": "丢 (diū)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "dar", + "wordSecond": "给 (gěi)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "recibir", + "wordSecond": "收到 (shōudào)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tomar", + "wordSecond": "拿 (ná)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "poner", + "wordSecond": "放 (fàng)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "llevar", + "wordSecond": "带 (dài)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "traer", + "wordSecond": "带来 (dàilái)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "coger", + "wordSecond": "取 (qǔ)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "dejar", + "wordSecond": "留 (liú)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "empezar", + "wordSecond": "开始 (kāishǐ)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "terminar", + "wordSecond": "结束 (jiéshù)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "continuar", + "wordSecond": "继续 (jìxù)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ayudar", + "wordSecond": "帮助 (bāngzhù)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "necesitar", + "wordSecond": "需要 (xūyào)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "querer", + "wordSecond": "要 (yào)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "gustar", + "wordSecond": "喜欢 (xǐhuan)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "amar", + "wordSecond": "爱 (ài)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "odiar", + "wordSecond": "恨 (hèn)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "reír", + "wordSecond": "笑 (xiào)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "llorar", + "wordSecond": "哭 (kū)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sonreír", + "wordSecond": "微笑 (wēixiào)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "pensar", + "wordSecond": "想 (xiǎng)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "saber", + "wordSecond": "知道 (zhīdào)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "entender", + "wordSecond": "懂 (dǒng)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "recordar", + "wordSecond": "记得 (jìde)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "olvidar", + "wordSecond": "忘记 (wàngjì)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "creer", + "wordSecond": "相信 (xiāngxìn)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "esperar", + "wordSecond": "希望 (xīwàng)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tener", + "wordSecond": "有 (yǒu)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ser", + "wordSecond": "是 (shì)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "estar", + "wordSecond": "在 (zài)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "vivir", + "wordSecond": "住 (zhù)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nacer", + "wordSecond": "出生 (chūshēng)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "morir", + "wordSecond": "死 (sǐ)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cambiar", + "wordSecond": "换 (huàn)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "crecer", + "wordSecond": "长大 (zhǎngdà)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "jugar", + "wordSecond": "玩 (wán)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ganar", + "wordSecond": "赢 (yíng)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "perder", + "wordSecond": "输 (shū)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cocinar", + "wordSecond": "做饭 (zuòfàn)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "comer", + "wordSecond": "吃饭 (chīfàn)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "lavar", + "wordSecond": "洗 (xǐ)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "limpiar", + "wordSecond": "打扫 (dǎsǎo)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "planchar", + "wordSecond": "熨 (yùn)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ordenar", + "wordSecond": "整理 (zhěnglǐ)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "comprar", + "wordSecond": "买东西 (mǎi dōngxi)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "vender", + "wordSecond": "卖东西 (mài dōngxi)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "conducir", + "wordSecond": "开车 (kāichē)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "viajar", + "wordSecond": "旅行 (lǚxíng)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "visitar", + "wordSecond": "参观 (cānguān)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "conocer", + "wordSecond": "认识 (rènshi)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "encontrarse", + "wordSecond": "见面 (jiànmiàn)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "saludar", + "wordSecond": "打招呼 (dǎ zhāohu)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "despedirse", + "wordSecond": "告别 (gàobié)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "invitar", + "wordSecond": "请 (qǐng)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "agradecer", + "wordSecond": "谢谢 (xièxie)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "perdonar", + "wordSecond": "对不起 (duìbuqǐ)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "explicar", + "wordSecond": "解释 (jiěshì)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "mostrar", + "wordSecond": "给看 (gěi kàn)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "seguir", + "wordSecond": "跟 (gēn)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "volver", + "wordSecond": "回 (huí)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "quedarse", + "wordSecond": "留 (liú)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "descansar", + "wordSecond": "休息 (xiūxi)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "dormir", + "wordSecond": "睡觉 (shuìjiào)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "soñar", + "wordSecond": "做梦 (zuòmèng)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "despertarse", + "wordSecond": "醒 (xǐng)", + "createdAt": "2026-02-19T12:22:04.272Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_fr_it_A1.json b/output/2026_02_19_verbs_beginners_fr_it_A1.json new file mode 100644 index 0000000..caf39e4 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_fr_it_A1.json @@ -0,0 +1,1410 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:28:46.931Z", + "metadata": { + "itemCount": 107, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "être", + "wordSecond": "essere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "avoir", + "wordSecond": "avere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "faire", + "wordSecond": "fare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "aller", + "wordSecond": "andare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "venir", + "wordSecond": "venire", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "voir", + "wordSecond": "vedere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "regarder", + "wordSecond": "guardare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "écouter", + "wordSecond": "ascoltare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "parler", + "wordSecond": "parlare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dire", + "wordSecond": "dire", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "demander", + "wordSecond": "chiedere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "répondre", + "wordSecond": "rispondere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "lire", + "wordSecond": "leggere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "écrire", + "wordSecond": "scrivere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "manger", + "wordSecond": "mangiare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "boire", + "wordSecond": "bere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "dormir", + "wordSecond": "dormire", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "se lever", + "wordSecond": "alzarsi", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "se coucher", + "wordSecond": "coricarsi", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "travailler", + "wordSecond": "lavorare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "étudier", + "wordSecond": "studiare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "apprendre", + "wordSecond": "imparare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "comprendre", + "wordSecond": "capire", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "savoir", + "wordSecond": "sapere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "connaître", + "wordSecond": "conoscere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "aimer", + "wordSecond": "amare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "adorer", + "wordSecond": "adorare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "détester", + "wordSecond": "odiare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vouloir", + "wordSecond": "volere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pouvoir", + "wordSecond": "potere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "devoir", + "wordSecond": "dovere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "prendre", + "wordSecond": "prendere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "donner", + "wordSecond": "dare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "recevoir", + "wordSecond": "ricevere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "acheter", + "wordSecond": "comprare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vendre", + "wordSecond": "vendere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "payer", + "wordSecond": "pagare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ouvrir", + "wordSecond": "aprire", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "fermer", + "wordSecond": "chiudere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "entrer", + "wordSecond": "entrare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sortir", + "wordSecond": "uscire", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "monter", + "wordSecond": "salire", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "descendre", + "wordSecond": "scendere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "courir", + "wordSecond": "correre", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "marcher", + "wordSecond": "camminare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sauter", + "wordSecond": "saltare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "nager", + "wordSecond": "nuotare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "danser", + "wordSecond": "ballare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chanter", + "wordSecond": "cantare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "jouer", + "wordSecond": "giocare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "gagner", + "wordSecond": "vincere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "perdre", + "wordSecond": "perdere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chercher", + "wordSecond": "cercare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "trouver", + "wordSecond": "trovare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "attendre", + "wordSecond": "aspettare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "commencer", + "wordSecond": "cominciare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "finir", + "wordSecond": "finire", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "arrêter", + "wordSecond": "fermare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "continuer", + "wordSecond": "continuare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "changer", + "wordSecond": "cambiare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "laver", + "wordSecond": "lavare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "nettoyer", + "wordSecond": "pulire", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "cuisiner", + "wordSecond": "cucinare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "préparer", + "wordSecond": "preparare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "servir", + "wordSecond": "servire", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mettre", + "wordSecond": "mettere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "enlever", + "wordSecond": "togliere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "porter", + "wordSecond": "portare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "essayer", + "wordSecond": "provare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "choisir", + "wordSecond": "scegliere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "utiliser", + "wordSecond": "usare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "aider", + "wordSecond": "aiutare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "appeler", + "wordSecond": "chiamare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rencontrer", + "wordSecond": "incontrare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "visiter", + "wordSecond": "visitare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "voyager", + "wordSecond": "viaggiare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "partir", + "wordSecond": "partire", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "arriver", + "wordSecond": "arrivare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rester", + "wordSecond": "restare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "quitter", + "wordSecond": "lasciare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rentrer", + "wordSecond": "rientrare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "habiter", + "wordSecond": "abitare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vivre", + "wordSecond": "vivere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "mourir", + "wordSecond": "morire", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "naître", + "wordSecond": "nascere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "grandir", + "wordSecond": "crescere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vieillir", + "wordSecond": "invecchiare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sentir", + "wordSecond": "sentire", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "toucher", + "wordSecond": "toccare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "goûter", + "wordSecond": "assaggiare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sentir", + "wordSecond": "odorare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "entendre", + "wordSecond": "udire", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "rire", + "wordSecond": "ridere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pleurer", + "wordSecond": "piangere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sourire", + "wordSecond": "sorridere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "penser", + "wordSecond": "pensare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "croire", + "wordSecond": "credere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "espérer", + "wordSecond": "sperare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "avoir peur", + "wordSecond": "aver paura", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "se souvenir", + "wordSecond": "ricordarsi", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "oublier", + "wordSecond": "dimenticare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "répéter", + "wordSecond": "ripetere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "expliquer", + "wordSecond": "spiegare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "montrer", + "wordSecond": "mostrare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "téléphoner", + "wordSecond": "telefonare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "envoyer", + "wordSecond": "inviare", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "recevoir", + "wordSecond": "ricevere", + "createdAt": "2026-02-19T12:28:46.931Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_fr_ja_A1.json b/output/2026_02_19_verbs_beginners_fr_ja_A1.json new file mode 100644 index 0000000..550986f --- /dev/null +++ b/output/2026_02_19_verbs_beginners_fr_ja_A1.json @@ -0,0 +1,1514 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:29:25.361Z", + "metadata": { + "itemCount": 115, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "être", + "wordSecond": "です (です, desu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "avoir", + "wordSecond": "ある (ある, aru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "faire", + "wordSecond": "する (する, suru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "aller", + "wordSecond": "行く (いく, iku)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "venir", + "wordSecond": "来る (くる, kuru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "dire", + "wordSecond": "言う (いう, iu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "voir", + "wordSecond": "見る (みる, miru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "savoir", + "wordSecond": "知る (しる, shiru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pouvoir", + "wordSecond": "できる (できる, dekiru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "vouloir", + "wordSecond": "欲しい (ほしい, hoshii)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "manger", + "wordSecond": "食べる (たべる, taberu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "boire", + "wordSecond": "飲む (のむ, nomu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "dormir", + "wordSecond": "寝る (ねる, neru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "parler", + "wordSecond": "話す (はなす, hanasu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "écouter", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "lire", + "wordSecond": "読む (よむ, yomu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "écrire", + "wordSecond": "書く (かく, kaku)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "regarder", + "wordSecond": "見る (みる, miru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "acheter", + "wordSecond": "買う (かう, kau)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "vendre", + "wordSecond": "売る (うる, uru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "donner", + "wordSecond": "あげる (あげる, ageru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "prendre", + "wordSecond": "取る (とる, toru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mettre", + "wordSecond": "置く (おく, oku)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ouvrir", + "wordSecond": "開ける (あける, akeru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "fermer", + "wordSecond": "閉める (しめる, shimeru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chercher", + "wordSecond": "探す (さがす, sagasu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "trouver", + "wordSecond": "見つける (みつける, mitsukeru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "attendre", + "wordSecond": "待つ (まつ, matsu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "comprendre", + "wordSecond": "分かる (わかる, wakaru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "apprendre", + "wordSecond": "習う (ならう, narau)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "enseigner", + "wordSecond": "教える (おしえる, oshieru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "travailler", + "wordSecond": "働く (はたらく, hataraku)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "jouer", + "wordSecond": "遊ぶ (あそぶ, asobu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chanter", + "wordSecond": "歌う (うたう, utau)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "danser", + "wordSecond": "踊る (おどる, odoru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "marcher", + "wordSecond": "歩く (あるく, aruku)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "courir", + "wordSecond": "走る (はしる, hashiru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sauter", + "wordSecond": "跳ぶ (とぶ, tobu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "nager", + "wordSecond": "泳ぐ (およぐ, oyogu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "voler", + "wordSecond": "飛ぶ (とぶ, tobu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "monter", + "wordSecond": "上がる (あがる, agaru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "descendre", + "wordSecond": "下りる (おりる, oriru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "entrer", + "wordSecond": "入る (はいる, hairu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sortir", + "wordSecond": "出る (でる, deru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rester", + "wordSecond": "残る (のこる, nokoru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "partir", + "wordSecond": "出発する (しゅっぱつする, shuppatsu suru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "arriver", + "wordSecond": "着く (つく, tsuku)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rentrer", + "wordSecond": "帰る (かえる, kaeru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "visiter", + "wordSecond": "訪ねる (たずねる, tazuneru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "voyager", + "wordSecond": "旅行する (りょこうする, ryokō suru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "aimer", + "wordSecond": "好き (すき, suki)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "adorer", + "wordSecond": "大好き (だいすき, daisuki)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "détester", + "wordSecond": "嫌い (きらい, kirai)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "penser", + "wordSecond": "思う (おもう, omou)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "croire", + "wordSecond": "信じる (しんじる, shinjiru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "espérer", + "wordSecond": "希望する (きぼうする, kibō suru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "avoir peur", + "wordSecond": "怖がる (こわがる, kowagaru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rire", + "wordSecond": "笑う (わらう, warau)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pleurer", + "wordSecond": "泣く (なく, naku)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sourire", + "wordSecond": "微笑む (ほほえむ, hohoemu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "crier", + "wordSecond": "叫ぶ (さけぶ, sakebu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chuchoter", + "wordSecond": "囁く (ささやく, sasayaku)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "demander", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "répondre", + "wordSecond": "答える (こたえる, kotaeru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "expliquer", + "wordSecond": "説明する (せつめいする, setsumei suru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "cuisiner", + "wordSecond": "料理する (りょうりする, ryōri suru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "laver", + "wordSecond": "洗う (あらう, arau)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "nettoyer", + "wordSecond": "掃除する (そうじする, sōji suru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ranger", + "wordSecond": "片付ける (かたづける, katazukeru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "préparer", + "wordSecond": "準備する (じゅんびする, junbi suru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "servir", + "wordSecond": "出す (だす, dasu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "manger (repas)", + "wordSecond": "食べる (たべる, taberu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "boire (boisson)", + "wordSecond": "飲む (のむ, nomu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "payer", + "wordSecond": "払う (はらう, harau)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "compter", + "wordSecond": "数える (かぞえる, kazoeru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mesurer", + "wordSecond": "測る (はかる, hakaru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "peser", + "wordSecond": "量る (はかる, hakaru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "couper", + "wordSecond": "切る (きる, kiru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "coller", + "wordSecond": "貼る (はる, haru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "plier", + "wordSecond": "折る (おる, oru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tirer", + "wordSecond": "引く (ひく, hiku)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pousser", + "wordSecond": "押す (おす, osu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "lever", + "wordSecond": "上げる (あげる, ageru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "baisser", + "wordSecond": "下げる (さげる, sageru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tourner", + "wordSecond": "回す (まわす, mawasu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "arrêter", + "wordSecond": "止める (とめる, tomeru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "commencer", + "wordSecond": "始める (はじめる, hajimeru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "finir", + "wordSecond": "終わる (おわる, owaru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "continuer", + "wordSecond": "続ける (つづける, tsuzukeru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "changer", + "wordSecond": "変える (かえる, kaeru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "choisir", + "wordSecond": "選ぶ (えらぶ, erabu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "décider", + "wordSecond": "決める (きめる, kimeru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "essayer", + "wordSecond": "試す (ためす, tamesu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "réussir", + "wordSecond": "成功する (せいこうする, seikō suru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "échouer", + "wordSecond": "失敗する (しっぱいする, shippai suru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "aider", + "wordSecond": "助ける (たすける, tasukeru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "demander de l'aide", + "wordSecond": "手伝う (てつだう, tetsudau)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "inviter", + "wordSecond": "誘う (さそう, sasou)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rencontrer", + "wordSecond": "会う (あう, au)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "quitter", + "wordSecond": "去る (さる, saru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "se souvenir", + "wordSecond": "覚える (おぼえる, oboeru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "oublier", + "wordSecond": "忘れる (わすれる, wasureru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "téléphoner", + "wordSecond": "電話する (でんわする, denwa suru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "envoyer", + "wordSecond": "送る (おくる, okuru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "recevoir", + "wordSecond": "受け取る (うけとる, uketoru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "porter (vêtements)", + "wordSecond": "着る (きる, kiru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "enlever (vêtements)", + "wordSecond": "脱ぐ (ぬぐ, nugu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "se laver", + "wordSecond": "洗う (あらう, arau)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "se brosser (dents)", + "wordSecond": "磨く (みがく, migaku)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100109, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "se reposer", + "wordSecond": "休む (やすむ, yasumu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100110, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "se réveiller", + "wordSecond": "起きる (おきる, okiru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100111, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "se coucher", + "wordSecond": "寝る (ねる, neru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100112, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "vivre", + "wordSecond": "住む (すむ, sumu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100113, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "mourir", + "wordSecond": "死ぬ (しぬ, shinu)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + }, + { + "id": 100114, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "naître", + "wordSecond": "生まれる (うまれる, umareru)", + "createdAt": "2026-02-19T12:29:25.361Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + }, + { + "vocabularyItemId": 100109, + "stage": "NEW" + }, + { + "vocabularyItemId": 100110, + "stage": "NEW" + }, + { + "vocabularyItemId": 100111, + "stage": "NEW" + }, + { + "vocabularyItemId": 100112, + "stage": "NEW" + }, + { + "vocabularyItemId": 100113, + "stage": "NEW" + }, + { + "vocabularyItemId": 100114, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_fr_ko_A1.json b/output/2026_02_19_verbs_beginners_fr_ko_A1.json new file mode 100644 index 0000000..6ecf6b8 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_fr_ko_A1.json @@ -0,0 +1,1397 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:30:24.622Z", + "metadata": { + "itemCount": 106, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "être", + "wordSecond": "이다 (ida)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "avoir", + "wordSecond": "있다 (itda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "faire", + "wordSecond": "하다 (hada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "aller", + "wordSecond": "가다 (gada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "venir", + "wordSecond": "오다 (oda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "voir", + "wordSecond": "보다 (boda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "regarder", + "wordSecond": "보다 (boda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "écouter", + "wordSecond": "듣다 (deutda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "parler", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dire", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "demander", + "wordSecond": "묻다 (mutda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "répondre", + "wordSecond": "대답하다 (daedaphada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "comprendre", + "wordSecond": "이해하다 (ihaehada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "savoir", + "wordSecond": "알다 (alda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "penser", + "wordSecond": "생각하다 (saenggakhada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "aimer", + "wordSecond": "좋아하다 (joahada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "adorer", + "wordSecond": "사랑하다 (saranghada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "détester", + "wordSecond": "싫어하다 (sireohada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "vouloir", + "wordSecond": "원하다 (wonhada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pouvoir", + "wordSecond": "할 수 있다 (hal su itda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "devoir", + "wordSecond": "해야 하다 (haeya hada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "manger", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "boire", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dormir", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "se réveiller", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "travailler", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "étudier", + "wordSecond": "공부하다 (gongbuhada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "lire", + "wordSecond": "읽다 (ikda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "écrire", + "wordSecond": "쓰다 (sseuda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chanter", + "wordSecond": "노래하다 (noraehada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "danser", + "wordSecond": "춤추다 (chumchuda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "jouer", + "wordSecond": "놀다 (nolda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "acheter", + "wordSecond": "사다 (sada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "vendre", + "wordSecond": "팔다 (palda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "donner", + "wordSecond": "주다 (juda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "prendre", + "wordSecond": "가지다 (gajida)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "mettre", + "wordSecond": "놓다 (nota)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "porter", + "wordSecond": "입다 (ipda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "ouvrir", + "wordSecond": "열다 (yeolda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "fermer", + "wordSecond": "닫다 (datda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "allumer", + "wordSecond": "켜다 (kyeoda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "éteindre", + "wordSecond": "끄다 (kkeuda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "nettoyer", + "wordSecond": "청소하다 (cheongsohada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "laver", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "cuisiner", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "couper", + "wordSecond": "자르다 (jareuda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "couper (ciseaux)", + "wordSecond": "가위질하다 (gawijilhada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "coudre", + "wordSecond": "바느질하다 (baneujilhada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "repasser", + "wordSecond": "다림질하다 (darimjilhada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "téléphoner", + "wordSecond": "전화하다 (jeonhwahada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "envoyer", + "wordSecond": "보내다 (bonaeda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "recevoir", + "wordSecond": "받다 (batda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "attendre", + "wordSecond": "기다리다 (gidarida)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "rencontrer", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "quitter", + "wordSecond": "떠나다 (tteonada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "arriver", + "wordSecond": "도착하다 (dochakhada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "partir", + "wordSecond": "출발하다 (chulbalhada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "monter", + "wordSecond": "오르다 (oreuda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "descendre", + "wordSecond": "내리다 (naerida)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "marcher", + "wordSecond": "걷다 (geotda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "courir", + "wordSecond": "뛰다 (ttwida)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sauter", + "wordSecond": "뛰다 (ttwida)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "nager", + "wordSecond": "수영하다 (suyeonghada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "voler", + "wordSecond": "날다 (nalda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "conduire", + "wordSecond": "운전하다 (unjeonhada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "voyager", + "wordSecond": "여행하다 (yeohaenghada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "visiter", + "wordSecond": "방문하다 (bangmunhada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "habiter", + "wordSecond": "살다 (salda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chercher", + "wordSecond": "찾다 (chatda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "trouver", + "wordSecond": "찾다 (chatda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "perdre", + "wordSecond": "잃다 (ilta)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "garder", + "wordSecond": "지키다 (jikida)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "changer", + "wordSecond": "바꾸다 (bakkuda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "essayer", + "wordSecond": "시도하다 (sidohada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "commencer", + "wordSecond": "시작하다 (sijakhada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "finir", + "wordSecond": "끝내다 (kkeutnaeda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "continuer", + "wordSecond": "계속하다 (gyesokhada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "arrêter", + "wordSecond": "멈추다 (meomchuda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "aider", + "wordSecond": "도와주다 (dowajuda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "demander de l'aide", + "wordSecond": "도움을 청하다 (doum-eul cheonghada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "remercier", + "wordSecond": "감사하다 (gamsahada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "s'excuser", + "wordSecond": "사과하다 (sagwahada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sourire", + "wordSecond": "미소 짓다 (miso jitda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "rire", + "wordSecond": "웃다 (utda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pleurer", + "wordSecond": "울다 (ulda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "crier", + "wordSecond": "소리치다 (sorichida)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chanter", + "wordSecond": "노래하다 (noraehada)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "écouter de la musique", + "wordSecond": "음악을 듣다 (eumag-eul deutda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "regarder la télévision", + "wordSecond": "텔레비전을 보다 (tellebijeon-eul boda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "lire un livre", + "wordSecond": "책을 읽다 (chaeg-eul ikda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "écrire une lettre", + "wordSecond": "편지를 쓰다 (pyeonjileul sseuda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "dessiner", + "wordSecond": "그리다 (geurida)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "peindre", + "wordSecond": "그리다 (geurida)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "construire", + "wordSecond": "짓다 (jitda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "réparer", + "wordSecond": "고치다 (gochida)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "casser", + "wordSecond": "깨다 (kkaeda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "jeter", + "wordSecond": "버리다 (beorida)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "ramasser", + "wordSecond": "주우다 (juuda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pousser", + "wordSecond": "밀다 (milda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tirer", + "wordSecond": "당기다 (danggida)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "soulever", + "wordSecond": "들다 (deulda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "porter (un objet)", + "wordSecond": "들다 (deulda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tomber", + "wordSecond": "떨어지다 (tteoreojida)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "se lever", + "wordSecond": "일어서다 (ireoseoda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "s'asseoir", + "wordSecond": "앉다 (anda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "se coucher", + "wordSecond": "눕다 (nupda)", + "createdAt": "2026-02-19T12:30:24.622Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_fr_pl_A1.json b/output/2026_02_19_verbs_beginners_fr_pl_A1.json new file mode 100644 index 0000000..81df777 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_fr_pl_A1.json @@ -0,0 +1,1436 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:30:47.708Z", + "metadata": { + "itemCount": 109, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "être", + "wordSecond": "być", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "avoir", + "wordSecond": "mieć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "faire", + "wordSecond": "robić", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "aller", + "wordSecond": "iść", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "venir", + "wordSecond": "przychodzić", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dire", + "wordSecond": "mówić", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "parler", + "wordSecond": "rozmawiać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "voir", + "wordSecond": "widzieć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "regarder", + "wordSecond": "patrzeć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "écouter", + "wordSecond": "słuchać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "entendre", + "wordSecond": "słyszeć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "manger", + "wordSecond": "jeść", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "boire", + "wordSecond": "pić", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dormir", + "wordSecond": "spać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "se lever", + "wordSecond": "wstawać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "s'asseoir", + "wordSecond": "siedzieć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rester", + "wordSecond": "zostać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "partir", + "wordSecond": "wyjeżdżać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "arriver", + "wordSecond": "przyjeżdżać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "prendre", + "wordSecond": "brać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "donner", + "wordSecond": "dawać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "recevoir", + "wordSecond": "otrzymywać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "acheter", + "wordSecond": "kupować", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "vendre", + "wordSecond": "sprzedawać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "payer", + "wordSecond": "płacić", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "travailler", + "wordSecond": "pracować", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "étudier", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "apprendre", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "comprendre", + "wordSecond": "rozumieć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "savoir", + "wordSecond": "wiedzieć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "connaître", + "wordSecond": "znać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "penser", + "wordSecond": "myśleć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "croire", + "wordSecond": "wierzyć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "aimer", + "wordSecond": "lubić", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "adorer", + "wordSecond": "uwielbiać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "détester", + "wordSecond": "nienawidzić", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "vouloir", + "wordSecond": "chcieć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pouvoir", + "wordSecond": "móc", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "devoir", + "wordSecond": "musieć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "falloir", + "wordSecond": "trzeba", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "essayer", + "wordSecond": "próbować", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chercher", + "wordSecond": "szukać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "trouver", + "wordSecond": "znajdować", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "perdre", + "wordSecond": "gubić", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "garder", + "wordSecond": "trzymać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "ouvrir", + "wordSecond": "otwierać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "fermer", + "wordSecond": "zamykać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "lire", + "wordSecond": "czytać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "écrire", + "wordSecond": "pisać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dessiner", + "wordSecond": "rysować", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chanter", + "wordSecond": "śpiewać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "danser", + "wordSecond": "tańczyć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "jouer", + "wordSecond": "grać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "gagner", + "wordSecond": "wygrywać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "perdre", + "wordSecond": "przegrywać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "courir", + "wordSecond": "biegać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "marcher", + "wordSecond": "chodzić", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sauter", + "wordSecond": "skakać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "nager", + "wordSecond": "pływać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "voler", + "wordSecond": "latać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "conduire", + "wordSecond": "prowadzić", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "attendre", + "wordSecond": "czekać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "commencer", + "wordSecond": "zaczynać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "finir", + "wordSecond": "kończyć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "arrêter", + "wordSecond": "zatrzymywać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "continuer", + "wordSecond": "kontynuować", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "changer", + "wordSecond": "zmieniać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "laver", + "wordSecond": "myć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "nettoyer", + "wordSecond": "sprzątać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cuisiner", + "wordSecond": "gotować", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "préparer", + "wordSecond": "przygotowywać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "servir", + "wordSecond": "podawać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "mettre", + "wordSecond": "kłaść", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "enlever", + "wordSecond": "zdejmować", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "porter", + "wordSecond": "nosić", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "habiter", + "wordSecond": "mieszkać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "visiter", + "wordSecond": "zwiedzać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "voyager", + "wordSecond": "podróżować", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rencontrer", + "wordSecond": "spotykać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "appeler", + "wordSecond": "dzwonić", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "répondre", + "wordSecond": "odpowiadać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "demander", + "wordSecond": "pytać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "répéter", + "wordSecond": "powtarzać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "expliquer", + "wordSecond": "wyjaśniać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "montrer", + "wordSecond": "pokazywać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "cacher", + "wordSecond": "chować", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "choisir", + "wordSecond": "wybierać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "décider", + "wordSecond": "decydować", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "aider", + "wordSecond": "pomagać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sauver", + "wordSecond": "ratować", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "blesser", + "wordSecond": "ranić", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "guérir", + "wordSecond": "leczyć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sentir", + "wordSecond": "czuć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rire", + "wordSecond": "śmiać się", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pleurer", + "wordSecond": "płakać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sourire", + "wordSecond": "uśmiechać się", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "embrasser", + "wordSecond": "całować", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "saluer", + "wordSecond": "witać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "dire au revoir", + "wordSecond": "żegnać się", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "remercier", + "wordSecond": "dziękować", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "s'excuser", + "wordSecond": "przepraszać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "permettre", + "wordSecond": "pozwalać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "interdire", + "wordSecond": "zabraniać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "oublier", + "wordSecond": "zapominać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "se souvenir", + "wordSecond": "pamiętać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "rêver", + "wordSecond": "marzyć", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "espérer", + "wordSecond": "mieć nadzieję", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "avoir peur", + "wordSecond": "bać się", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "se reposer", + "wordSecond": "odpoczywać", + "createdAt": "2026-02-19T12:30:47.708Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_fr_zh_A1.json b/output/2026_02_19_verbs_beginners_fr_zh_A1.json new file mode 100644 index 0000000..a3b9256 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_fr_zh_A1.json @@ -0,0 +1,1397 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:29:52.781Z", + "metadata": { + "itemCount": 106, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "être", + "wordSecond": "是 (shì)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "avoir", + "wordSecond": "有 (yǒu)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "faire", + "wordSecond": "做 (zuò)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "aller", + "wordSecond": "去 (qù)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "venir", + "wordSecond": "来 (lái)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "dire", + "wordSecond": "说 (shuō)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "voir", + "wordSecond": "看 (kàn)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "savoir", + "wordSecond": "知道 (zhīdào)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vouloir", + "wordSecond": "想 (xiǎng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pouvoir", + "wordSecond": "能 (néng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "devoir", + "wordSecond": "应该 (yīnggāi)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "parler", + "wordSecond": "说话 (shuōhuà)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "manger", + "wordSecond": "吃 (chī)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "boire", + "wordSecond": "喝 (hē)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "dormir", + "wordSecond": "睡觉 (shuìjiào)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "travailler", + "wordSecond": "工作 (gōngzuò)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "étudier", + "wordSecond": "学习 (xuéxí)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lire", + "wordSecond": "读 (dú)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "écrire", + "wordSecond": "写 (xiě)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "écouter", + "wordSecond": "听 (tīng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "regarder", + "wordSecond": "看 (kàn)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "acheter", + "wordSecond": "买 (mǎi)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vendre", + "wordSecond": "卖 (mài)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "payer", + "wordSecond": "付钱 (fùqián)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "donner", + "wordSecond": "给 (gěi)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "prendre", + "wordSecond": "拿 (ná)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mettre", + "wordSecond": "放 (fàng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ouvrir", + "wordSecond": "开 (kāi)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "fermer", + "wordSecond": "关 (guān)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "entrer", + "wordSecond": "进 (jìn)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sortir", + "wordSecond": "出 (chū)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "monter", + "wordSecond": "上 (shàng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "descendre", + "wordSecond": "下 (xià)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "courir", + "wordSecond": "跑 (pǎo)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "marcher", + "wordSecond": "走 (zǒu)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sauter", + "wordSecond": "跳 (tiào)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "nager", + "wordSecond": "游泳 (yóuyǒng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "jouer", + "wordSecond": "玩 (wán)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chanter", + "wordSecond": "唱 (chàng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "danser", + "wordSecond": "跳舞 (tiàowǔ)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "aimer", + "wordSecond": "喜欢 (xǐhuan)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "adorer", + "wordSecond": "爱 (ài)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "détester", + "wordSecond": "讨厌 (tǎoyàn)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "penser", + "wordSecond": "想 (xiǎng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "comprendre", + "wordSecond": "懂 (dǒng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "apprendre", + "wordSecond": "学 (xué)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "enseigner", + "wordSecond": "教 (jiāo)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "demander", + "wordSecond": "问 (wèn)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "répondre", + "wordSecond": "回答 (huídá)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chercher", + "wordSecond": "找 (zhǎo)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "trouver", + "wordSecond": "找到 (zhǎodào)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "attendre", + "wordSecond": "等 (děng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "commencer", + "wordSecond": "开始 (kāishǐ)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "finir", + "wordSecond": "结束 (jiéshù)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "arrêter", + "wordSecond": "停 (tíng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "continuer", + "wordSecond": "继续 (jìxù)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "essayer", + "wordSecond": "试 (shì)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "réussir", + "wordSecond": "成功 (chénggōng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "échouer", + "wordSecond": "失败 (shībài)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "aider", + "wordSecond": "帮助 (bāngzhù)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "visiter", + "wordSecond": "参观 (cānguān)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "voyager", + "wordSecond": "旅行 (lǚxíng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "habiter", + "wordSecond": "住 (zhù)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "rentrer", + "wordSecond": "回家 (huí jiā)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "partir", + "wordSecond": "离开 (líkāi)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "arriver", + "wordSecond": "到 (dào)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "rester", + "wordSecond": "留 (liú)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "changer", + "wordSecond": "换 (huàn)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "laver", + "wordSecond": "洗 (xǐ)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "nettoyer", + "wordSecond": "打扫 (dǎsǎo)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "cuisiner", + "wordSecond": "做饭 (zuò fàn)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "préparer", + "wordSecond": "准备 (zhǔnbèi)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "servir", + "wordSecond": "服务 (fúwù)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "manger", + "wordSecond": "吃饭 (chī fàn)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "boire", + "wordSecond": "喝水 (hē shuǐ)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "porter", + "wordSecond": "穿 (chuān)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "enlever", + "wordSecond": "脱 (tuō)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "acheter", + "wordSecond": "买东西 (mǎi dōngxi)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vendre", + "wordSecond": "卖东西 (mài dōngxi)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "payer", + "wordSecond": "付款 (fù kuǎn)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "coûter", + "wordSecond": "花费 (huāfèi)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "gagner", + "wordSecond": "赢 (yíng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "perdre", + "wordSecond": "输 (shū)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "téléphoner", + "wordSecond": "打电话 (dǎ diànhuà)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "envoyer", + "wordSecond": "发送 (fāsòng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "recevoir", + "wordSecond": "收到 (shōudào)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "lire", + "wordSecond": "读书 (dú shū)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "écrire", + "wordSecond": "写字 (xiě zì)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "dessiner", + "wordSecond": "画 (huà)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "photographier", + "wordSecond": "拍照 (pāizhào)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "regarder", + "wordSecond": "看电视 (kàn diànshì)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "écouter", + "wordSecond": "听音乐 (tīng yīnyuè)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "jouer", + "wordSecond": "玩游戏 (wán yóuxì)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chanter", + "wordSecond": "唱歌 (chànggē)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "danser", + "wordSecond": "跳舞 (tiàowǔ)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "rire", + "wordSecond": "笑 (xiào)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pleurer", + "wordSecond": "哭 (kū)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "crier", + "wordSecond": "喊 (hǎn)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sourire", + "wordSecond": "微笑 (wēixiào)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "embrasser", + "wordSecond": "吻 (wěn)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "serrer", + "wordSecond": "抱 (bào)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "se lever", + "wordSecond": "起床 (qǐchuáng)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "se coucher", + "wordSecond": "睡觉 (shuìjiào)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "se laver", + "wordSecond": "洗澡 (xǐzǎo)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "se brosser", + "wordSecond": "刷 (shuā)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "se reposer", + "wordSecond": "休息 (xiūxi)", + "createdAt": "2026-02-19T12:29:52.781Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_it_ja_A1.json b/output/2026_02_19_verbs_beginners_it_ja_A1.json new file mode 100644 index 0000000..963309f --- /dev/null +++ b/output/2026_02_19_verbs_beginners_it_ja_A1.json @@ -0,0 +1,1444 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:31:25.126Z", + "metadata": { + "itemCount": 111, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "essere", + "wordSecond": "です (です, desu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "avere", + "wordSecond": "ある (ある, aru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fare", + "wordSecond": "する (する, suru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dire", + "wordSecond": "言う (いう, iu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "andare", + "wordSecond": "行く (いく, iku)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "venire", + "wordSecond": "来る (くる, kuru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "vedere", + "wordSecond": "見る (みる, miru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sentire", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "parlare", + "wordSecond": "話す (はなす, hanasu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mangiare", + "wordSecond": "食べる (たべる, taberu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "bere", + "wordSecond": "飲む (のむ, nomu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dormire", + "wordSecond": "寝る (ねる, neru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lavorare", + "wordSecond": "働く (はたらく, hataraku)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "studiare", + "wordSecond": "勉強する (べんきょうする, benkyou suru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "leggere", + "wordSecond": "読む (よむ, yomu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "scrivere", + "wordSecond": "書く (かく, kaku)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ascoltare", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "guardare", + "wordSecond": "見る (みる, miru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "comprare", + "wordSecond": "買う (かう, kau)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "vendere", + "wordSecond": "売る (うる, uru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "aprire", + "wordSecond": "開ける (あける, akeru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "chiudere", + "wordSecond": "閉める (しめる, shimeru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "entrare", + "wordSecond": "入る (はいる, hairu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "uscire", + "wordSecond": "出る (でる, deru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "camminare", + "wordSecond": "歩く (あるく, aruku)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "correre", + "wordSecond": "走る (はしる, hashiru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "saltare", + "wordSecond": "跳ぶ (とぶ, tobu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sedere", + "wordSecond": "座る (すわる, suwaru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "alzarsi", + "wordSecond": "立つ (たつ, tatsu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cadere", + "wordSecond": "落ちる (おちる, ochiru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "prendere", + "wordSecond": "取る (とる, toru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dare", + "wordSecond": "あげる (あげる, ageru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mettere", + "wordSecond": "置く (おく, oku)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "trovare", + "wordSecond": "見つける (みつける, mitsukeru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "perdere", + "wordSecond": "失う (うしなう, ushinau)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cercare", + "wordSecond": "探す (さがす, sagasu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "chiedere", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "rispondere", + "wordSecond": "答える (こたえる, kotaeru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "chiamare", + "wordSecond": "呼ぶ (よぶ, yobu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "aspettare", + "wordSecond": "待つ (まつ, matsu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "incontrare", + "wordSecond": "会う (あう, au)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "conoscere", + "wordSecond": "知る (しる, shiru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pensare", + "wordSecond": "思う (おもう, omou)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sapere", + "wordSecond": "知っている (しっている, shitte iru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "capire", + "wordSecond": "分かる (わかる, wakaru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "volere", + "wordSecond": "欲しい (ほしい, hoshii)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "potere", + "wordSecond": "できる (できる, dekiru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dovere", + "wordSecond": "しなければならない (しなければならない, shinakereba naranai)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "piacere", + "wordSecond": "好き (すき, suki)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "amare", + "wordSecond": "愛する (あいする, ai suru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "odiare", + "wordSecond": "嫌う (きらう, kirau)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ridere", + "wordSecond": "笑う (わらう, warau)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "piangere", + "wordSecond": "泣く (なく, naku)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "urlare", + "wordSecond": "叫ぶ (さけぶ, sakebu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sorridere", + "wordSecond": "微笑む (ほほえむ, hohoemu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "temere", + "wordSecond": "恐れる (おそれる, osoreru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sperare", + "wordSecond": "希望する (きぼうする, kibou suru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cucinare", + "wordSecond": "料理する (りょうりする, ryouri suru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lavare", + "wordSecond": "洗う (あらう, arau)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pulire", + "wordSecond": "掃除する (そうじする, souji suru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "stirare", + "wordSecond": "アイロンをかける (アイロンをかける, airon o kakeru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "spazzare", + "wordSecond": "掃く (はく, haku)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cucire", + "wordSecond": "縫う (ぬう, nuu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tagliare", + "wordSecond": "切る (きる, kiru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "preparare", + "wordSecond": "準備する (じゅんびする, junbi suru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "servire", + "wordSecond": "出す (だす, dasu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "finire", + "wordSecond": "終わる (おわる, owaru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cominciare", + "wordSecond": "始める (はじめる, hajimeru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "continuare", + "wordSecond": "続ける (つづける, tsuzukeru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cambiare", + "wordSecond": "変える (かえる, kaeru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "aiutare", + "wordSecond": "助ける (たすける, tasukeru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "imparare", + "wordSecond": "学ぶ (まなぶ, manabu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "insegnare", + "wordSecond": "教える (おしえる, oshieru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "giocare", + "wordSecond": "遊ぶ (あそぶ, asobu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cantare", + "wordSecond": "歌う (うたう, utau)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ballare", + "wordSecond": "踊る (おどる, odoru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "disegnare", + "wordSecond": "描く (かく, kaku)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dipingere", + "wordSecond": "塗る (ぬる, nuru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "costruire", + "wordSecond": "建てる (たてる, tateru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "rompere", + "wordSecond": "壊す (こわす, kowasu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "riparare", + "wordSecond": "修理する (しゅうりする, shuuri suru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "guidare", + "wordSecond": "運転する (うんてんする, unten suru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "viaggiare", + "wordSecond": "旅行する (りょこうする, ryokou suru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "volare", + "wordSecond": "飛ぶ (とぶ, tobu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "nuotare", + "wordSecond": "泳ぐ (およぐ, oyogu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tuffarsi", + "wordSecond": "潜る (もぐる, moguru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "scendere", + "wordSecond": "降りる (おりる, oriru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "salire", + "wordSecond": "登る (のぼる, noboru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "spingere", + "wordSecond": "押す (おす, osu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tirare", + "wordSecond": "引く (ひく, hiku)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "portare", + "wordSecond": "持つ (もつ, motsu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "lasciare", + "wordSecond": "残す (のこす, nokosu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tornare", + "wordSecond": "戻る (もどる, modoru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "partire", + "wordSecond": "出発する (しゅっぱつする, shuppatsu suru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "arrivare", + "wordSecond": "着く (つく, tsuku)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "restare", + "wordSecond": "残る (のこる, nokoru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "vivere", + "wordSecond": "生きる (いきる, ikiru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "morire", + "wordSecond": "死ぬ (しぬ, shinu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "nascere", + "wordSecond": "生まれる (うまれる, umareru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "crescere", + "wordSecond": "育つ (そだつ, sodatsu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "diventare", + "wordSecond": "なる (なる, naru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sembrare", + "wordSecond": "見える (みえる, mieru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sentirsi", + "wordSecond": "感じる (かんじる, kanjiru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ricordare", + "wordSecond": "覚える (おぼえる, oboeru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "dimenticare", + "wordSecond": "忘れる (わすれる, wasureru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "scegliere", + "wordSecond": "選ぶ (えらぶ, erabu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "decidere", + "wordSecond": "決める (きめる, kimeru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100109, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "provare", + "wordSecond": "試す (ためす, tamesu)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + }, + { + "id": 100110, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "succedere", + "wordSecond": "起こる (おこる, okoru)", + "createdAt": "2026-02-19T12:31:25.126Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + }, + { + "vocabularyItemId": 100109, + "stage": "NEW" + }, + { + "vocabularyItemId": 100110, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_it_ko_A1.json b/output/2026_02_19_verbs_beginners_it_ko_A1.json new file mode 100644 index 0000000..f8c098f --- /dev/null +++ b/output/2026_02_19_verbs_beginners_it_ko_A1.json @@ -0,0 +1,1371 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:32:23.064Z", + "metadata": { + "itemCount": 104, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "essere", + "wordSecond": "이다 (ida)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "avere", + "wordSecond": "있다 (itda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "fare", + "wordSecond": "하다 (hada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dire", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "andare", + "wordSecond": "가다 (gada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "venire", + "wordSecond": "오다 (oda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "vedere", + "wordSecond": "보다 (boda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sapere", + "wordSecond": "알다 (alda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "volere", + "wordSecond": "원하다 (wonhada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "potere", + "wordSecond": "할 수 있다 (hal su itda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dovere", + "wordSecond": "해야 하다 (haeya hada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mangiare", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "bere", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dormire", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lavorare", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "studiare", + "wordSecond": "공부하다 (gongbuhada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "leggere", + "wordSecond": "읽다 (ikda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "scrivere", + "wordSecond": "쓰다 (sseuda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ascoltare", + "wordSecond": "듣다 (deutda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "parlare", + "wordSecond": "이야기하다 (iyagihada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "chiedere", + "wordSecond": "묻다 (mutda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "rispondere", + "wordSecond": "대답하다 (daedaphada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "capire", + "wordSecond": "이해하다 (ihaehada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pensare", + "wordSecond": "생각하다 (saenggakhada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "amare", + "wordSecond": "사랑하다 (saranghada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "piacere", + "wordSecond": "좋아하다 (joahada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "odiare", + "wordSecond": "싫어하다 (sireohada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ridere", + "wordSecond": "웃다 (utda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "piangere", + "wordSecond": "울다 (ulda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "guardare", + "wordSecond": "보다 (boda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sentire", + "wordSecond": "느끼다 (neukkida)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "toccare", + "wordSecond": "만지다 (manjida)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tenere", + "wordSecond": "들다 (deulda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "dare", + "wordSecond": "주다 (juda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "prendere", + "wordSecond": "가지다 (gajida)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mettere", + "wordSecond": "놓다 (nota)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "trovare", + "wordSecond": "찾다 (chatda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "perdere", + "wordSecond": "잃다 (ilta)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "aprire", + "wordSecond": "열다 (yeolda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "chiudere", + "wordSecond": "닫다 (datda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "entrare", + "wordSecond": "들어가다 (deureogada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "uscire", + "wordSecond": "나가다 (nagada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sedere", + "wordSecond": "앉다 (anda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "alzarsi", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "camminare", + "wordSecond": "걷다 (geotda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "correre", + "wordSecond": "뛰다 (ttwida)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "saltare", + "wordSecond": "뛰다 (ttwida)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nuotare", + "wordSecond": "수영하다 (suyeonghada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "giocare", + "wordSecond": "놀다 (nolda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cantare", + "wordSecond": "노래하다 (noraehada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ballare", + "wordSecond": "춤추다 (chumchuda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "comprare", + "wordSecond": "사다 (sada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "vendere", + "wordSecond": "팔다 (palda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pagare", + "wordSecond": "지불하다 (jibulhada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cucinare", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lavare", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pulire", + "wordSecond": "청소하다 (cheongsohada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "stirare", + "wordSecond": "다림질하다 (darimjilhada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cucire", + "wordSecond": "바느질하다 (baneujilhada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "aiutare", + "wordSecond": "도와주다 (dowajuda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "aspettare", + "wordSecond": "기다리다 (gidarida)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "incontrare", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "salutare", + "wordSecond": "인사하다 (insahada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ringraziare", + "wordSecond": "감사하다 (gamsahada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "scusare", + "wordSecond": "사과하다 (sagwahada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "chiamare", + "wordSecond": "부르다 (bureuda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "telefonare", + "wordSecond": "전화하다 (jeonhwahada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mandare", + "wordSecond": "보내다 (bonaeda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ricevere", + "wordSecond": "받다 (batda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "iniziare", + "wordSecond": "시작하다 (sijakhada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "finire", + "wordSecond": "끝내다 (kkeunnaeda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "continuare", + "wordSecond": "계속하다 (gyesokhada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cambiare", + "wordSecond": "바꾸다 (bakkuda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "crescere", + "wordSecond": "자라다 (jarada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "vivere", + "wordSecond": "살다 (salda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "morire", + "wordSecond": "죽다 (jukda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nascere", + "wordSecond": "태어나다 (taeeonada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "diventare", + "wordSecond": "되다 (doeda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "restare", + "wordSecond": "남다 (namda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "partire", + "wordSecond": "출발하다 (chulbalhada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "arrivare", + "wordSecond": "도착하다 (dochakhada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "viaggiare", + "wordSecond": "여행하다 (yeohaenghada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "guidare", + "wordSecond": "운전하다 (unjeonhada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "volare", + "wordSecond": "날다 (nalda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cadere", + "wordSecond": "떨어지다 (tteoreojida)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "alzare", + "wordSecond": "올리다 (ollida)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "abbassare", + "wordSecond": "내리다 (naerida)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "rompere", + "wordSecond": "깨다 (kkaeda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "riparare", + "wordSecond": "고치다 (gochida)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "costruire", + "wordSecond": "짓다 (jitda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "disegnare", + "wordSecond": "그리다 (geurida)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "colorare", + "wordSecond": "색칠하다 (saekchilhada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tagliare", + "wordSecond": "자르다 (jareuda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cucinare", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "mescolare", + "wordSecond": "섞다 (seokkda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "versare", + "wordSecond": "붓다 (butda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "riempire", + "wordSecond": "채우다 (chaeuda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "svuotare", + "wordSecond": "비우다 (biuda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "lavarsi", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "vestirsi", + "wordSecond": "입다 (ipda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "svegliarsi", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "addormentarsi", + "wordSecond": "잠들다 (jamdeulda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "riposare", + "wordSecond": "쉬다 (swida)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sognare", + "wordSecond": "꿈꾸다 (kkumkkuda)", + "createdAt": "2026-02-19T12:32:23.064Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_it_pl_A1.json b/output/2026_02_19_verbs_beginners_it_pl_A1.json new file mode 100644 index 0000000..f44a5af --- /dev/null +++ b/output/2026_02_19_verbs_beginners_it_pl_A1.json @@ -0,0 +1,1436 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:32:45.894Z", + "metadata": { + "itemCount": 109, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "essere", + "wordSecond": "być", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "avere", + "wordSecond": "mieć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "fare", + "wordSecond": "robić", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dire", + "wordSecond": "mówić", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "andare", + "wordSecond": "iść", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "venire", + "wordSecond": "przychodzić", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vedere", + "wordSecond": "widzieć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sentire", + "wordSecond": "słyszeć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "parlare", + "wordSecond": "rozmawiać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mangiare", + "wordSecond": "jeść", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "bere", + "wordSecond": "pić", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dormire", + "wordSecond": "spać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "svegliarsi", + "wordSecond": "budzić się", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lavarsi", + "wordSecond": "myć się", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vestirsi", + "wordSecond": "ubierać się", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lavorare", + "wordSecond": "pracować", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "studiare", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "leggere", + "wordSecond": "czytać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "scrivere", + "wordSecond": "pisać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ascoltare", + "wordSecond": "słuchać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "guardare", + "wordSecond": "patrzeć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "capire", + "wordSecond": "rozumieć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sapere", + "wordSecond": "wiedzieć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "conoscere", + "wordSecond": "znać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pensare", + "wordSecond": "myśleć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "volere", + "wordSecond": "chcieć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "potere", + "wordSecond": "móc", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dovere", + "wordSecond": "musieć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "trovare", + "wordSecond": "znaleźć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "prendere", + "wordSecond": "brać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dare", + "wordSecond": "dawać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mettere", + "wordSecond": "kłaść", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "aprire", + "wordSecond": "otwierać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "chiudere", + "wordSecond": "zamykać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "entrare", + "wordSecond": "wchodzić", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "uscire", + "wordSecond": "wychodzić", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "salire", + "wordSecond": "wchodzić", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "scendere", + "wordSecond": "schodzić", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "correre", + "wordSecond": "biegać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "camminare", + "wordSecond": "chodzić", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "saltare", + "wordSecond": "skakać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "nuotare", + "wordSecond": "pływać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ballare", + "wordSecond": "tańczyć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cantare", + "wordSecond": "śpiewać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ridere", + "wordSecond": "śmiać się", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "piangere", + "wordSecond": "płakać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "amare", + "wordSecond": "kochać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "odiare", + "wordSecond": "nienawidzić", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "aspettare", + "wordSecond": "czekać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "chiamare", + "wordSecond": "dzwonić", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "rispondere", + "wordSecond": "odpowiadać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "chiedere", + "wordSecond": "pytać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "aiutare", + "wordSecond": "pomagać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cercare", + "wordSecond": "szukać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "comprare", + "wordSecond": "kupować", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vendere", + "wordSecond": "sprzedawać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pagare", + "wordSecond": "płacić", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cucinare", + "wordSecond": "gotować", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "lavare", + "wordSecond": "myć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pulire", + "wordSecond": "sprzątać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "stirare", + "wordSecond": "prasować", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "riparare", + "wordSecond": "naprawiać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "giocare", + "wordSecond": "grać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "viaggiare", + "wordSecond": "podróżować", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "guidare", + "wordSecond": "kierować", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "volare", + "wordSecond": "latać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cadere", + "wordSecond": "spadać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "rompere", + "wordSecond": "łamać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "costruire", + "wordSecond": "budować", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cambiare", + "wordSecond": "zmieniać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "finire", + "wordSecond": "kończyć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cominciare", + "wordSecond": "zaczynać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "continuare", + "wordSecond": "kontynuować", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "provare", + "wordSecond": "próbować", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "imparare", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "insegnare", + "wordSecond": "nauczać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "dimenticare", + "wordSecond": "zapominać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ricordare", + "wordSecond": "pamiętać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sognare", + "wordSecond": "śnić", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vivere", + "wordSecond": "żyć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "morire", + "wordSecond": "umierać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "nascere", + "wordSecond": "rodzić się", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "crescere", + "wordSecond": "rosnąć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "invecchiare", + "wordSecond": "starzeć się", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "fermarsi", + "wordSecond": "zatrzymywać się", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "girare", + "wordSecond": "obracać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "spingere", + "wordSecond": "pchać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tirare", + "wordSecond": "ciągnąć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sollevare", + "wordSecond": "podnosić", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "abbassare", + "wordSecond": "obniżać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "alzare", + "wordSecond": "podnosić", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sedersi", + "wordSecond": "siadać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "alzarsi", + "wordSecond": "wstawać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sdraiarsi", + "wordSecond": "kłaść się", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "stare", + "wordSecond": "być", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "restare", + "wordSecond": "zostawać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "partire", + "wordSecond": "wyjeżdżać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "arrivare", + "wordSecond": "przyjeżdżać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "visitare", + "wordSecond": "odwiedzać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "incontrare", + "wordSecond": "spotykać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "salutare", + "wordSecond": "witać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "abbracciare", + "wordSecond": "przytulać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "baciare", + "wordSecond": "całować", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sorridere", + "wordSecond": "uśmiechać się", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "urlare", + "wordSecond": "krzyczeć", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sussurrare", + "wordSecond": "szeptać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ordinare", + "wordSecond": "zamawiać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "servire", + "wordSecond": "serwować", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "preparare", + "wordSecond": "przygotowywać", + "createdAt": "2026-02-19T12:32:45.894Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_it_zh_A1.json b/output/2026_02_19_verbs_beginners_it_zh_A1.json new file mode 100644 index 0000000..5596672 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_it_zh_A1.json @@ -0,0 +1,1397 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:31:52.802Z", + "metadata": { + "itemCount": 106, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mangiare", + "wordSecond": "吃 (chī)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "bere", + "wordSecond": "喝 (hē)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dormire", + "wordSecond": "睡 (shuì)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "svegliarsi", + "wordSecond": "醒 (xǐng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "camminare", + "wordSecond": "走 (zǒu)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "correre", + "wordSecond": "跑 (pǎo)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "saltare", + "wordSecond": "跳 (tiào)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sedersi", + "wordSecond": "坐 (zuò)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "alzarsi", + "wordSecond": "站 (zhàn)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "parlare", + "wordSecond": "说 (shuō)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ascoltare", + "wordSecond": "听 (tīng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "vedere", + "wordSecond": "看 (kàn)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "guardare", + "wordSecond": "看 (kàn)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "leggere", + "wordSecond": "读 (dú)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "scrivere", + "wordSecond": "写 (xiě)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "chiamare", + "wordSecond": "叫 (jiào)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "chiedere", + "wordSecond": "问 (wèn)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "rispondere", + "wordSecond": "回答 (huídá)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ridere", + "wordSecond": "笑 (xiào)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "piangere", + "wordSecond": "哭 (kū)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "amare", + "wordSecond": "爱 (ài)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "odiare", + "wordSecond": "恨 (hèn)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "volere", + "wordSecond": "要 (yào)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dovere", + "wordSecond": "应该 (yīnggāi)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "potere", + "wordSecond": "能 (néng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sapere", + "wordSecond": "知道 (zhīdào)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "capire", + "wordSecond": "懂 (dǒng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pensare", + "wordSecond": "想 (xiǎng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ricordare", + "wordSecond": "记得 (jìde)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dimenticare", + "wordSecond": "忘记 (wàngjì)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lavorare", + "wordSecond": "工作 (gōngzuò)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "studiare", + "wordSecond": "学习 (xuéxí)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "insegnare", + "wordSecond": "教 (jiāo)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "imparare", + "wordSecond": "学 (xué)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "giocare", + "wordSecond": "玩 (wán)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cantare", + "wordSecond": "唱 (chàng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ballare", + "wordSecond": "跳舞 (tiàowǔ)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "comprare", + "wordSecond": "买 (mǎi)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "vendere", + "wordSecond": "卖 (mài)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pagare", + "wordSecond": "付钱 (fùqián)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "aprire", + "wordSecond": "开 (kāi)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "chiudere", + "wordSecond": "关 (guān)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "entrare", + "wordSecond": "进 (jìn)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "uscire", + "wordSecond": "出 (chū)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tornare", + "wordSecond": "回 (huí)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "arrivare", + "wordSecond": "到 (dào)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "partire", + "wordSecond": "离开 (líkāi)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "aspettare", + "wordSecond": "等 (děng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "incontrare", + "wordSecond": "见 (jiàn)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "aiutare", + "wordSecond": "帮助 (bāngzhù)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cucinare", + "wordSecond": "做饭 (zuòfàn)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "lavare", + "wordSecond": "洗 (xǐ)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pulire", + "wordSecond": "打扫 (dǎsǎo)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "stirare", + "wordSecond": "熨 (yùn)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cucire", + "wordSecond": "缝 (féng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tagliare", + "wordSecond": "切 (qiē)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "prendere", + "wordSecond": "拿 (ná)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "dare", + "wordSecond": "给 (gěi)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mettere", + "wordSecond": "放 (fàng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "togliere", + "wordSecond": "拿开 (nákāi)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "portare", + "wordSecond": "带 (dài)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mandare", + "wordSecond": "送 (sòng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ricevere", + "wordSecond": "收到 (shōudào)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cercare", + "wordSecond": "找 (zhǎo)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "trovare", + "wordSecond": "找到 (zhǎodào)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "perdere", + "wordSecond": "丢 (diū)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "rompere", + "wordSecond": "打破 (dǎpò)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "riparare", + "wordSecond": "修理 (xiūlǐ)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "costruire", + "wordSecond": "建造 (jiànzào)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "disegnare", + "wordSecond": "画 (huà)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "colorare", + "wordSecond": "涂颜色 (tú yánsè)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "nuotare", + "wordSecond": "游泳 (yóuyǒng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "volare", + "wordSecond": "飞 (fēi)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "guidare", + "wordSecond": "开车 (kāichē)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "viaggiare", + "wordSecond": "旅行 (lǚxíng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "visitare", + "wordSecond": "参观 (cānguān)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "abitare", + "wordSecond": "住 (zhù)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cambiare", + "wordSecond": "换 (huàn)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "scegliere", + "wordSecond": "选择 (xuǎnzé)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "decidere", + "wordSecond": "决定 (juédìng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "provare", + "wordSecond": "试 (shì)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "finire", + "wordSecond": "完成 (wánchéng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cominciare", + "wordSecond": "开始 (kāishǐ)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "continuare", + "wordSecond": "继续 (jìxù)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fermare", + "wordSecond": "停 (tíng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cadere", + "wordSecond": "掉 (diào)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "alzare", + "wordSecond": "举 (jǔ)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "abbassare", + "wordSecond": "放下 (fàngxià)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "spingere", + "wordSecond": "推 (tuī)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tirare", + "wordSecond": "拉 (lā)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sollevare", + "wordSecond": "抬 (tái)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "portare via", + "wordSecond": "拿走 (názǒu)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "portare dentro", + "wordSecond": "带进来 (dài jìnlái)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "portare fuori", + "wordSecond": "带出去 (dài chūqù)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "salire", + "wordSecond": "上 (shàng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "scendere", + "wordSecond": "下 (xià)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "attraversare", + "wordSecond": "过 (guò)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "girare", + "wordSecond": "转 (zhuǎn)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "preparare", + "wordSecond": "准备 (zhǔnbèi)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "servire", + "wordSecond": "服务 (fúwù)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "mangiare fuori", + "wordSecond": "出去吃 (chūqù chī)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fare la doccia", + "wordSecond": "洗澡 (xǐzǎo)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "vestirsi", + "wordSecond": "穿衣服 (chuān yīfu)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "svestirsi", + "wordSecond": "脱衣服 (tuō yīfu)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "riposare", + "wordSecond": "休息 (xiūxi)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sognare", + "wordSecond": "做梦 (zuòmèng)", + "createdAt": "2026-02-19T12:31:52.802Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_ja_ko_A1.json b/output/2026_02_19_verbs_beginners_ja_ko_A1.json new file mode 100644 index 0000000..b5aa8bf --- /dev/null +++ b/output/2026_02_19_verbs_beginners_ja_ko_A1.json @@ -0,0 +1,1436 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:34:10.690Z", + "metadata": { + "itemCount": 109, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "行く (いく, iku)", + "wordSecond": "가다 (gada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "来る (くる, kuru)", + "wordSecond": "오다 (oda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "食べる (たべる, taberu)", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "飲む (のむ, nomu)", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "見る (みる, miru)", + "wordSecond": "보다 (boda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "聞く (きく, kiku)", + "wordSecond": "듣다 (deutda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "話す (はなす, hanasu)", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "読む (よむ, yomu)", + "wordSecond": "읽다 (ikda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "書く (かく, kaku)", + "wordSecond": "쓰다 (sseuda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "買う (かう, kau)", + "wordSecond": "사다 (sada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "売る (うる, uru)", + "wordSecond": "팔다 (palda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "作る (つくる, tsukuru)", + "wordSecond": "만들다 (mandeulda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "開ける (あける, akeru)", + "wordSecond": "열다 (yeolda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "閉める (しめる, shimeru)", + "wordSecond": "닫다 (datda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "入る (はいる, hairu)", + "wordSecond": "들어가다 (deureogada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "出る (でる, deru)", + "wordSecond": "나가다 (nagada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "立つ (たつ, tatsu)", + "wordSecond": "서다 (seoda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "座る (すわる, suwaru)", + "wordSecond": "앉다 (anda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "歩く (あるく, aruku)", + "wordSecond": "걷다 (geotda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "走る (はしる, hashiru)", + "wordSecond": "뛰다 (ttwida)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "泳ぐ (およぐ, oyogu)", + "wordSecond": "수영하다 (suyeonghada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "飛ぶ (とぶ, tobu)", + "wordSecond": "날다 (nalda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "持つ (もつ, motsu)", + "wordSecond": "가지다 (gajida)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "取る (とる, toru)", + "wordSecond": "잡다 (japda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "置く (おく, oku)", + "wordSecond": "놓다 (nota)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "上げる (あげる, ageru)", + "wordSecond": "올리다 (ollida)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "下げる (さげる, sageru)", + "wordSecond": "내리다 (naerida)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "教える (おしえる, oshieru)", + "wordSecond": "가르치다 (gareuchida)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "習う (ならう, narau)", + "wordSecond": "배우다 (baeuda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "知る (しる, shiru)", + "wordSecond": "알다 (alda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "考える (かんがえる, kangaeru)", + "wordSecond": "생각하다 (saenggakhada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "待つ (まつ, matsu)", + "wordSecond": "기다리다 (gidarida)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "会う (あう, au)", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "呼ぶ (よぶ, yobu)", + "wordSecond": "부르다 (bureuda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "答える (こたえる, kotaeru)", + "wordSecond": "대답하다 (daedaphada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "聞く (きく, kiku)", + "wordSecond": "묻다 (mutda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "言う (いう, iu)", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "歌う (うたう, utau)", + "wordSecond": "노래하다 (noraehada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "笑う (わらう, warau)", + "wordSecond": "웃다 (utda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "泣く (なく, naku)", + "wordSecond": "울다 (ulda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "喜ぶ (よろこぶ, yorokobu)", + "wordSecond": "기뻐하다 (gippeohada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "怒る (おこる, okoru)", + "wordSecond": "화내다 (hwanaeda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "悲しむ (かなしむ, kanashimu)", + "wordSecond": "슬퍼하다 (seulpeohada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "怖がる (こわがる, kowagaru)", + "wordSecond": "무서워하다 (museowohada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "好き (すき, suki)", + "wordSecond": "좋아하다 (joahada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "嫌い (きらい, kirai)", + "wordSecond": "싫어하다 (sireohada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "欲しい (ほしい, hoshii)", + "wordSecond": "원하다 (wonhada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "要る (いる, iru)", + "wordSecond": "필요하다 (piryohada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "できる (できる, dekiru)", + "wordSecond": "할 수 있다 (hal su itda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "始める (はじめる, hajimeru)", + "wordSecond": "시작하다 (sijakhada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "終わる (おわる, owaru)", + "wordSecond": "끝나다 (kkeunnada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "続ける (つづける, tsuzukeru)", + "wordSecond": "계속하다 (gyesokhada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "止める (とめる, tomeru)", + "wordSecond": "멈추다 (meomchuda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "変える (かえる, kaeru)", + "wordSecond": "바꾸다 (bakkuda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "使う (つかう, tsukau)", + "wordSecond": "사용하다 (sayonghada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "働く (はたらく, hataraku)", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "遊ぶ (あそぶ, asobu)", + "wordSecond": "놀다 (nolda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "休む (やすむ, yasumu)", + "wordSecond": "쉬다 (swida)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "寝る (ねる, neru)", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "起きる (おきる, okiru)", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "着る (きる, kiru)", + "wordSecond": "입다 (ipda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "脱ぐ (ぬぐ, nugu)", + "wordSecond": "벗다 (beotda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "洗う (あらう, arau)", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "掃除する (そうじする, souji suru)", + "wordSecond": "청소하다 (cheongsohada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "片付ける (かたづける, katazukeru)", + "wordSecond": "정리하다 (jeongnihada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "料理する (りょうりする, ryouri suru)", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "切る (きる, kiru)", + "wordSecond": "자르다 (jareuda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "焼く (やく, yaku)", + "wordSecond": "굽다 (gupda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "煮る (にる, niru)", + "wordSecond": "끓이다 (kkeurida)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "混ぜる (まぜる, mazeru)", + "wordSecond": "섞다 (seokda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "測る (はかる, hakaru)", + "wordSecond": "재다 (jaeda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "数える (かぞえる, kazoeru)", + "wordSecond": "세다 (seda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "払う (はらう, harau)", + "wordSecond": "지불하다 (jibulhada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "借りる (かりる, kariru)", + "wordSecond": "빌리다 (billida)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "返す (かえす, kaesu)", + "wordSecond": "돌려주다 (dollyeojuda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "渡す (わたす, watasu)", + "wordSecond": "건네주다 (geonnejuda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "送る (おくる, okuru)", + "wordSecond": "보내다 (bonaeda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "受ける (うける, ukeru)", + "wordSecond": "받다 (batda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "与える (あたえる, ataeru)", + "wordSecond": "주다 (juda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "助ける (たすける, tasukeru)", + "wordSecond": "도와주다 (dowajuda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "手伝う (てつだう, tetsudau)", + "wordSecond": "돕다 (dopda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "探す (さがす, sagasu)", + "wordSecond": "찾다 (chatda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "見つける (みつける, mitsukeru)", + "wordSecond": "발견하다 (balgyeonhada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "失くす (なくす, nakusu)", + "wordSecond": "잃어버리다 (ireobeorida)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "拾う (ひろう, hirou)", + "wordSecond": "주우다 (juuda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "壊す (こわす, kowasu)", + "wordSecond": "부수다 (busuda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "直す (なおす, naosu)", + "wordSecond": "고치다 (gochida)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "建てる (たてる, tateru)", + "wordSecond": "짓다 (jitda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "育てる (そだてる, sodateru)", + "wordSecond": "기르다 (gireuda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "生まれる (うまれる, umareru)", + "wordSecond": "태어나다 (taeeonada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "死ぬ (しぬ, shinu)", + "wordSecond": "죽다 (jukda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "生きる (いきる, ikiru)", + "wordSecond": "살다 (salda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "成長する (せいちょうする, seichou suru)", + "wordSecond": "성장하다 (seongjanghada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "変わる (かわる, kawaru)", + "wordSecond": "변하다 (byeonhada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "増える (ふえる, fueru)", + "wordSecond": "늘다 (neulda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "減る (へる, heru)", + "wordSecond": "줄다 (julda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "集める (あつめる, atsumeru)", + "wordSecond": "모으다 (moeuda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "分ける (わける, wakeru)", + "wordSecond": "나누다 (nanuda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "比べる (くらべる, kuraberu)", + "wordSecond": "비교하다 (bigyohada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "選ぶ (えらぶ, erabu)", + "wordSecond": "고르다 (goreuda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "決める (きめる, kimeru)", + "wordSecond": "결정하다 (gyeoljeonghada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "頼む (たのむ, tanomu)", + "wordSecond": "부탁하다 (butakhada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "約束する (やくそくする, yakusoku suru)", + "wordSecond": "약속하다 (yaksokhada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "忘れる (わすれる, wasureru)", + "wordSecond": "잊다 (itda)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "覚える (おぼえる, oboeru)", + "wordSecond": "기억하다 (gieokhada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "練習する (れんしゅうする, renshuu suru)", + "wordSecond": "연습하다 (yeonseuphada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "試す (ためす, tamesu)", + "wordSecond": "시도하다 (sidohada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "成功する (せいこうする, seikou suru)", + "wordSecond": "성공하다 (seonggonghada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "失敗する (しっぱいする, shippai suru)", + "wordSecond": "실패하다 (silpaehada)", + "createdAt": "2026-02-19T12:34:10.690Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_ja_pl_A1.json b/output/2026_02_19_verbs_beginners_ja_pl_A1.json new file mode 100644 index 0000000..bbc3f49 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_ja_pl_A1.json @@ -0,0 +1,1436 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:34:46.206Z", + "metadata": { + "itemCount": 109, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "行く (いく, iku)", + "wordSecond": "iść", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "来る (くる, kuru)", + "wordSecond": "przychodzić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "食べる (たべる, taberu)", + "wordSecond": "jeść", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "飲む (のむ, nomu)", + "wordSecond": "pić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "見る (みる, miru)", + "wordSecond": "widzieć", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "聞く (きく, kiku)", + "wordSecond": "słuchać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "話す (はなす, hanasu)", + "wordSecond": "mówić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "読む (よむ, yomu)", + "wordSecond": "czytać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "書く (かく, kaku)", + "wordSecond": "pisać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "寝る (ねる, neru)", + "wordSecond": "spać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "起きる (おきる, okiru)", + "wordSecond": "wstawać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "立つ (たつ, tatsu)", + "wordSecond": "stać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "座る (すわる, suwaru)", + "wordSecond": "siedzieć", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "歩く (あるく, aruku)", + "wordSecond": "chodzić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "走る (はしる, hashiru)", + "wordSecond": "biegać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "泳ぐ (およぐ, oyogu)", + "wordSecond": "pływać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "買う (かう, kau)", + "wordSecond": "kupować", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "売る (うる, uru)", + "wordSecond": "sprzedawać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "作る (つくる, tsukuru)", + "wordSecond": "robić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "使う (つかう, tsukau)", + "wordSecond": "używać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "開ける (あける, akeru)", + "wordSecond": "otwierać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "閉める (しめる, shimeru)", + "wordSecond": "zamykać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "入る (はいる, hairu)", + "wordSecond": "wchodzić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "出る (でる, deru)", + "wordSecond": "wychodzić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "置く (おく, oku)", + "wordSecond": "kłaść", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "取る (とる, toru)", + "wordSecond": "brać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "持つ (もつ, motsu)", + "wordSecond": "trzymać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "上げる (あげる, ageru)", + "wordSecond": "podnosić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "下げる (さげる, sageru)", + "wordSecond": "opuszczać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "着る (きる, kiru)", + "wordSecond": "ubierać się", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "脱ぐ (ぬぐ, nugu)", + "wordSecond": "zdejmować", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "洗う (あらう, arau)", + "wordSecond": "myć", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "掃除する (そうじする, sōji suru)", + "wordSecond": "sprzątać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "料理する (りょうりする, ryōri suru)", + "wordSecond": "gotować", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "勉強する (べんきょうする, benkyō suru)", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "働く (はたらく, hataraku)", + "wordSecond": "pracować", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "遊ぶ (あそぶ, asobu)", + "wordSecond": "bawić się", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "会う (あう, au)", + "wordSecond": "spotykać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "待つ (まつ, matsu)", + "wordSecond": "czekać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "教える (おしえる, oshieru)", + "wordSecond": "uczyć", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "習う (ならう, narau)", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "考える (かんがえる, kangaeru)", + "wordSecond": "myśleć", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "知る (しる, shiru)", + "wordSecond": "wiedzieć", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "分かる (わかる, wakaru)", + "wordSecond": "rozumieć", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "覚える (おぼえる, oboeru)", + "wordSecond": "pamiętać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "忘れる (わすれる, wasureru)", + "wordSecond": "zapominać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "好き (すき, suki)", + "wordSecond": "lubić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "嫌い (きらい, kirai)", + "wordSecond": "nie lubić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "欲しい (ほしい, hoshii)", + "wordSecond": "chcieć", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "要る (いる, iru)", + "wordSecond": "potrzebować", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "できる (できる, dekiru)", + "wordSecond": "umieć", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "始める (はじめる, hajimeru)", + "wordSecond": "zaczynać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "終わる (おわる, owaru)", + "wordSecond": "kończyć", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "続ける (つづける, tsuzukeru)", + "wordSecond": "kontynuować", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "止める (とめる, tomeru)", + "wordSecond": "zatrzymywać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "変える (かえる, kaeru)", + "wordSecond": "zmieniać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "戻る (もどる, modoru)", + "wordSecond": "wracać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "渡る (わたる, wataru)", + "wordSecond": "przechodzić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "乗る (のる, noru)", + "wordSecond": "wsiadać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "降りる (おりる, oriru)", + "wordSecond": "wysiadać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "運転する (うんてんする, unten suru)", + "wordSecond": "kierować", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "飛ぶ (とぶ, tobu)", + "wordSecond": "latać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "歌う (うたう, utau)", + "wordSecond": "śpiewać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "踊る (おどる, odoru)", + "wordSecond": "tańczyć", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "笑う (わらう, warau)", + "wordSecond": "śmiać się", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "泣く (なく, naku)", + "wordSecond": "płakać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "怒る (おこる, okoru)", + "wordSecond": "złościć się", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "驚く (おどろく, odoroku)", + "wordSecond": "dziwić się", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "疲れる (つかれる, tsukareru)", + "wordSecond": "męczyć się", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "休む (やすむ, yasumu)", + "wordSecond": "odpoczywać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "治す (なおす, naosu)", + "wordSecond": "leczyć", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "助ける (たすける, tasukeru)", + "wordSecond": "pomagać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "呼ぶ (よぶ, yobu)", + "wordSecond": "wołać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "答える (こたえる, kotaeru)", + "wordSecond": "odpowiadać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "聞く (きく, kiku)", + "wordSecond": "pytać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "頼む (たのむ, tanomu)", + "wordSecond": "prosić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "許す (ゆるす, yurusu)", + "wordSecond": "wybaczać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "褒める (ほめる, homeru)", + "wordSecond": "chwalić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "叱る (しかる, shikaru)", + "wordSecond": "karać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "比べる (くらべる, kuraberu)", + "wordSecond": "porównywać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "選ぶ (えらぶ, erabu)", + "wordSecond": "wybierać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "決める (きめる, kimeru)", + "wordSecond": "decydować", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "探す (さがす, sagasu)", + "wordSecond": "szukać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "見つける (みつける, mitsukeru)", + "wordSecond": "znajdować", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "失う (うしなう, ushinau)", + "wordSecond": "tracić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "拾う (ひろう, hirou)", + "wordSecond": "podnosić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "渡す (わたす, watasu)", + "wordSecond": "podawać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "送る (おくる, okuru)", + "wordSecond": "wysyłać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "受け取る (うけとる, uketoru)", + "wordSecond": "otrzymywać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "払う (はらう, harau)", + "wordSecond": "płacić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "数える (かぞえる, kazoeru)", + "wordSecond": "liczyć", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "測る (はかる, hakaru)", + "wordSecond": "mierzyć", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "重ねる (かさねる, kasaneru)", + "wordSecond": "układać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "切る (きる, kiru)", + "wordSecond": "kroić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "折る (おる, oru)", + "wordSecond": "łamać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "貼る (はる, haru)", + "wordSecond": "przyklejać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "結ぶ (むすぶ, musubu)", + "wordSecond": "wiązać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "解く (とく, toku)", + "wordSecond": "rozwiązywać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "包む (つつむ, tsutsumu)", + "wordSecond": "owijać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "しまう (しまう, shimau)", + "wordSecond": "chować", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "出す (だす, dasu)", + "wordSecond": "wyjmować", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "入れる (いれる, ireru)", + "wordSecond": "wkładać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "混ぜる (まぜる, mazeru)", + "wordSecond": "mieszać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "沸かす (わかす, wakasu)", + "wordSecond": "gotować (wodę)", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "冷やす (ひやす, hiyasu)", + "wordSecond": "chłodzić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "温める (あたためる, atatameru)", + "wordSecond": "ogrzewać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "乾かす (かわかす, kawakasu)", + "wordSecond": "suszyć", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "磨く (みがく, migaku)", + "wordSecond": "czyścić", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "拭く (ふく, fuku)", + "wordSecond": "wycierać", + "createdAt": "2026-02-19T12:34:46.206Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_ja_zh_A1.json b/output/2026_02_19_verbs_beginners_ja_zh_A1.json new file mode 100644 index 0000000..e6357cb --- /dev/null +++ b/output/2026_02_19_verbs_beginners_ja_zh_A1.json @@ -0,0 +1,1397 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:33:25.599Z", + "metadata": { + "itemCount": 106, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "行く (いく, iku)", + "wordSecond": "去 (qù)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "来る (くる, kuru)", + "wordSecond": "来 (lái)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "食べる (たべる, taberu)", + "wordSecond": "吃 (chī)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "飲む (のむ, nomu)", + "wordSecond": "喝 (hē)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "見る (みる, miru)", + "wordSecond": "看 (kàn)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "聞く (きく, kiku)", + "wordSecond": "听 (tīng)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "話す (はなす, hanasu)", + "wordSecond": "说 (shuō)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "読む (よむ, yomu)", + "wordSecond": "读 (dú)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "書く (かく, kaku)", + "wordSecond": "写 (xiě)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "買う (かう, kau)", + "wordSecond": "买 (mǎi)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "売る (うる, uru)", + "wordSecond": "卖 (mài)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "開ける (あける, akeru)", + "wordSecond": "开 (kāi)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "閉める (しめる, shimeru)", + "wordSecond": "关 (guān)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "入る (はいる, hairu)", + "wordSecond": "进 (jìn)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "出る (でる, deru)", + "wordSecond": "出 (chū)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "立つ (たつ, tatsu)", + "wordSecond": "站 (zhàn)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "座る (すわる, suwaru)", + "wordSecond": "坐 (zuò)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "歩く (あるく, aruku)", + "wordSecond": "走 (zǒu)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "走る (はしる, hashiru)", + "wordSecond": "跑 (pǎo)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "泳ぐ (およぐ, oyogu)", + "wordSecond": "游泳 (yóuyǒng)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "飛ぶ (とぶ, tobu)", + "wordSecond": "飞 (fēi)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "持つ (もつ, motsu)", + "wordSecond": "拿 (ná)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "取る (とる, toru)", + "wordSecond": "取 (qǔ)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "置く (おく, oku)", + "wordSecond": "放 (fàng)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "上げる (あげる, ageru)", + "wordSecond": "给 (gěi)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "もらう (morau)", + "wordSecond": "收到 (shōudào)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "する (suru)", + "wordSecond": "做 (zuò)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "作る (つくる, tsukuru)", + "wordSecond": "做 (zuò)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "使う (つかう, tsukau)", + "wordSecond": "用 (yòng)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "知る (しる, shiru)", + "wordSecond": "知道 (zhīdào)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "思う (おもう, omou)", + "wordSecond": "想 (xiǎng)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "考える (かんがえる, kangaeru)", + "wordSecond": "想 (xiǎng)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "教える (おしえる, oshieru)", + "wordSecond": "教 (jiāo)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "学ぶ (まなぶ, manabu)", + "wordSecond": "学 (xué)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "働く (はたらく, hataraku)", + "wordSecond": "工作 (gōngzuò)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "遊ぶ (あそぶ, asobu)", + "wordSecond": "玩 (wán)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "歌う (うたう, utau)", + "wordSecond": "唱 (chàng)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "踊る (おどる, odoru)", + "wordSecond": "跳舞 (tiàowǔ)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "笑う (わらう, warau)", + "wordSecond": "笑 (xiào)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "泣く (なく, naku)", + "wordSecond": "哭 (kū)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "寝る (ねる, neru)", + "wordSecond": "睡 (shuì)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "起きる (おきる, okiru)", + "wordSecond": "起床 (qǐchuáng)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "起きる (おきる, okiru)", + "wordSecond": "起 (qǐ)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "休む (やすむ, yasumu)", + "wordSecond": "休息 (xiūxi)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "待つ (まつ, matsu)", + "wordSecond": "等 (děng)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "会う (あう, au)", + "wordSecond": "见 (jiàn)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "呼ぶ (よぶ, yobu)", + "wordSecond": "叫 (jiào)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "聞く (きく, kiku)", + "wordSecond": "问 (wèn)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "答える (こたえる, kotaeru)", + "wordSecond": "回答 (huídá)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "言う (いう, iu)", + "wordSecond": "说 (shuō)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "頼む (たのむ, tanomu)", + "wordSecond": "请求 (qǐngqiú)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "助ける (たすける, tasukeru)", + "wordSecond": "帮助 (bāngzhù)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "始める (はじめる, hajimeru)", + "wordSecond": "开始 (kāishǐ)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "終わる (おわる, owaru)", + "wordSecond": "结束 (jiéshù)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "続ける (つづける, tsuzukeru)", + "wordSecond": "继续 (jìxù)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "止める (とめる, tomeru)", + "wordSecond": "停 (tíng)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "変える (かえる, kaeru)", + "wordSecond": "改变 (gǎibiàn)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "洗う (あらう, arau)", + "wordSecond": "洗 (xǐ)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "掃除する (そうじする, sōji suru)", + "wordSecond": "打扫 (dǎsǎo)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "片付ける (かたづける, katazukeru)", + "wordSecond": "整理 (zhěnglǐ)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "料理する (りょうりする, ryōri suru)", + "wordSecond": "做饭 (zuòfàn)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "切る (きる, kiru)", + "wordSecond": "切 (qiē)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "焼く (やく, yaku)", + "wordSecond": "烤 (kǎo)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "煮る (にる, niru)", + "wordSecond": "煮 (zhǔ)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "混ぜる (まぜる, mazeru)", + "wordSecond": "混合 (hùnhé)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "計る (はかる, hakaru)", + "wordSecond": "测量 (cèliáng)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "運ぶ (はこぶ, hakobu)", + "wordSecond": "搬运 (bānyùn)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "押す (おす, osu)", + "wordSecond": "推 (tuī)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "引く (ひく, hiku)", + "wordSecond": "拉 (lā)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "回す (まわす, mawasu)", + "wordSecond": "转 (zhuàn)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "曲げる (まげる, mageru)", + "wordSecond": "弯 (wān)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "折る (おる, oru)", + "wordSecond": "折 (zhé)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "壊す (こわす, kowasu)", + "wordSecond": "弄坏 (nònghuài)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "直す (なおす, naosu)", + "wordSecond": "修理 (xiūlǐ)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "建てる (たてる, tateru)", + "wordSecond": "建造 (jiànzào)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "描く (かく, kaku)", + "wordSecond": "画 (huà)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "撮る (とる, toru)", + "wordSecond": "拍照 (pāizhào)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "見せる (みせる, miseru)", + "wordSecond": "给看 (gěi kàn)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "見つける (みつける, mitsukeru)", + "wordSecond": "找到 (zhǎodào)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "探す (さがす, sagasu)", + "wordSecond": "寻找 (xúnzhǎo)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "選ぶ (えらぶ, erabu)", + "wordSecond": "选择 (xuǎnzé)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "決める (きめる, kimeru)", + "wordSecond": "决定 (juédìng)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "試す (ためす, tamesu)", + "wordSecond": "尝试 (chángshì)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "忘れる (わすれる, wasureru)", + "wordSecond": "忘记 (wàngjì)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "覚える (おぼえる, oboeru)", + "wordSecond": "记住 (jìzhù)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "練習する (れんしゅうする, renshū suru)", + "wordSecond": "练习 (liànxí)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "旅行する (りょこうする, ryokō suru)", + "wordSecond": "旅行 (lǚxíng)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "帰る (かえる, kaeru)", + "wordSecond": "回 (huí)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "着く (つく, tsuku)", + "wordSecond": "到达 (dàodá)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "乗る (のる, noru)", + "wordSecond": "乘坐 (chéngzuò)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "降りる (おりる, oriru)", + "wordSecond": "下 (xià)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "運転する (うんてんする, unten suru)", + "wordSecond": "驾驶 (jiàshǐ)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "渡る (わたる, wataru)", + "wordSecond": "过 (guò)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "通る (とおる, tōru)", + "wordSecond": "通过 (tōngguò)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "曲がる (まがる, magaru)", + "wordSecond": "转弯 (zhuǎnwān)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "止まる (とまる, tomaru)", + "wordSecond": "停止 (tíngzhǐ)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "上がる (あがる, agaru)", + "wordSecond": "上 (shàng)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "下がる (さがる, sagaru)", + "wordSecond": "下 (xià)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "入れる (いれる, ireru)", + "wordSecond": "放入 (fàngrù)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "出す (だす, dasu)", + "wordSecond": "拿出 (ná chū)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "掛ける (かける, kakeru)", + "wordSecond": "挂 (guà)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "外す (はずす, hazusu)", + "wordSecond": "取下 (qǔxià)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "着る (きる, kiru)", + "wordSecond": "穿 (chuān)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "脱ぐ (ぬぐ, nugu)", + "wordSecond": "脱 (tuō)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "履く (はく, haku)", + "wordSecond": "穿 (chuān)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "かぶる (kaburu)", + "wordSecond": "戴 (dài)", + "createdAt": "2026-02-19T12:33:25.599Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_ko_pl_A1.json b/output/2026_02_19_verbs_beginners_ko_pl_A1.json new file mode 100644 index 0000000..68ff5b4 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_ko_pl_A1.json @@ -0,0 +1,1338 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:37:40.778Z", + "metadata": { + "itemCount": 107, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "가다 (gada)", + "wordSecond": "iść", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "오다 (oda)", + "wordSecond": "przychodzić", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "먹다 (meokda)", + "wordSecond": "jeść", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "마시다 (masida)", + "wordSecond": "pić", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "자다 (jada)", + "wordSecond": "spać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "보다 (boda)", + "wordSecond": "widzieć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "듣다 (deutda)", + "wordSecond": "słuchać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "말하다 (malhada)", + "wordSecond": "mówić", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "읽다 (ikda)", + "wordSecond": "czytać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "쓰다 (sseuda)", + "wordSecond": "pisać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "일하다 (ilhada)", + "wordSecond": "pracować", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "공부하다 (gongbuhada)", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "앉다 (anda)", + "wordSecond": "siedzieć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "서다 (seoda)", + "wordSecond": "stać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "일어나다 (ireonada)", + "wordSecond": "wstawać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "만나다 (mannada)", + "wordSecond": "spotykać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "사다 (sada)", + "wordSecond": "kupować", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "주다 (juda)", + "wordSecond": "dawać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "받다 (batda)", + "wordSecond": "otrzymywać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "열다 (yeolda)", + "wordSecond": "otwierać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "닫다 (datda)", + "wordSecond": "zamykać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "켜다 (kyeoda)", + "wordSecond": "włączać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "끄다 (kkeuda)", + "wordSecond": "wyłączać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "찾다 (chatda)", + "wordSecond": "szukać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "만들다 (mandeulda)", + "wordSecond": "robić", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "놀다 (nolda)", + "wordSecond": "bawić się", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "웃다 (utda)", + "wordSecond": "śmiać się", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "울다 (ulda)", + "wordSecond": "płakać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "좋아하다 (joahada)", + "wordSecond": "lubić", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "싫어하다 (sireohada)", + "wordSecond": "nie lubić", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "사랑하다 (saranghada)", + "wordSecond": "kochać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "생각하다 (saenggakhada)", + "wordSecond": "myśleć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "알다 (alda)", + "wordSecond": "wiedzieć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "모르다 (moreuda)", + "wordSecond": "nie wiedzieć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "도와주다 (dowajuda)", + "wordSecond": "pomagać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "기다리다 (gidarida)", + "wordSecond": "czekać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "시작하다 (sijakhada)", + "wordSecond": "zaczynać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "끝나다 (kkeunnada)", + "wordSecond": "kończyć się", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "배우다 (baeuda)", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "가르치다 (gareuchida)", + "wordSecond": "uczyć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "운동하다 (undonghada)", + "wordSecond": "ćwiczyć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "씻다 (ssitda)", + "wordSecond": "myć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "닦다 (dakda)", + "wordSecond": "czyścić", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "청소하다 (cheongsohada)", + "wordSecond": "sprzątać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "요리하다 (yorihada)", + "wordSecond": "gotować", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "빨다 (ppalda)", + "wordSecond": "prać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "입다 (ipda)", + "wordSecond": "ubierać się", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "벗다 (beotda)", + "wordSecond": "rozebrać się", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "신다 (sinda)", + "wordSecond": "zakładać (buty)", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "타다 (tada)", + "wordSecond": "jechać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "운전하다 (unjeonhada)", + "wordSecond": "prowadzić", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "걷다 (geotda)", + "wordSecond": "chodzić", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "뛰다 (ttwida)", + "wordSecond": "biegać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "날다 (nalda)", + "wordSecond": "latać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "수영하다 (suyeonghada)", + "wordSecond": "pływać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "춤추다 (chumchuda)", + "wordSecond": "tańczyć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "노래하다 (noraehada)", + "wordSecond": "śpiewać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "그리다 (geurida)", + "wordSecond": "rysować", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "사진 찍다 (sajin jjikda)", + "wordSecond": "fotografować", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "전화하다 (jeonhwahada)", + "wordSecond": "telefonować", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "묻다 (mutda)", + "wordSecond": "pytać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "대답하다 (daedaphada)", + "wordSecond": "odpowiadać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "부르다 (bureuda)", + "wordSecond": "wołać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "도착하다 (dochakhada)", + "wordSecond": "przybywać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "떠나다 (tteonada)", + "wordSecond": "wyjeżdżać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "살다 (salda)", + "wordSecond": "żyć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "죽다 (jukda)", + "wordSecond": "umierać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "태어나다 (taeeonada)", + "wordSecond": "rodzić się", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "자르다 (jareuda)", + "wordSecond": "ciąć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "붙이다 (buchida)", + "wordSecond": "przyklejać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "찢다 (chitda)", + "wordSecond": "drzeć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "던지다 (deonjida)", + "wordSecond": "rzucać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "잡다 (japda)", + "wordSecond": "łapać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "놓다 (nota)", + "wordSecond": "puszczać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "들다 (deulda)", + "wordSecond": "podnosić", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "놀라다 (nollada)", + "wordSecond": "dziwić się", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "걱정하다 (geokjeonghada)", + "wordSecond": "martwić się", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "기쁘다 (gippeuda)", + "wordSecond": "cieszyć się", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "슬프다 (seulpeuda)", + "wordSecond": "smucić się", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "화나다 (hwanada)", + "wordSecond": "złościć się", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "두렵다 (duryeopda)", + "wordSecond": "bać się", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "원하다 (wonhada)", + "wordSecond": "chcieć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "필요하다 (piryohada)", + "wordSecond": "potrzebować", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "가지다 (gajida)", + "wordSecond": "mieć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "없다 (eopda)", + "wordSecond": "nie mieć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "있다 (itda)", + "wordSecond": "być (miejsce)", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "아프다 (apeuda)", + "wordSecond": "boleć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "낫다 (natda)", + "wordSecond": "zdrowieć", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "약속하다 (yaksokhada)", + "wordSecond": "obiecywać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "약속을 지키다 (yaksogeul jikida)", + "wordSecond": "dotrzymywać obietnicy", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "거짓말하다 (geojinmalhada)", + "wordSecond": "kłamać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "진실을 말하다 (jinsireul malhada)", + "wordSecond": "mówić prawdę", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "포기하다 (pogihada)", + "wordSecond": "rezygnować", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "시도하다 (sidohada)", + "wordSecond": "próbować", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "성공하다 (seonggonghada)", + "wordSecond": "odnosić sukces", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "실패하다 (silpaehada)", + "wordSecond": "ponosić porażkę", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "결정하다 (gyeoljeonghada)", + "wordSecond": "decydować", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "변하다 (byeonhada)", + "wordSecond": "zmieniać się", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "남다 (namda)", + "wordSecond": "zostawać", + "createdAt": "2026-02-19T12:37:40.778Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_pt_de_A1.json b/output/2026_02_19_verbs_beginners_pt_de_A1.json new file mode 100644 index 0000000..3168616 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_pt_de_A1.json @@ -0,0 +1,1436 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:23:16.377Z", + "metadata": { + "itemCount": 109, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ser", + "wordSecond": "sein", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ter", + "wordSecond": "haben", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fazer", + "wordSecond": "machen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ir", + "wordSecond": "gehen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vir", + "wordSecond": "kommen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dizer", + "wordSecond": "sagen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ver", + "wordSecond": "sehen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ouvir", + "wordSecond": "hören", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "comer", + "wordSecond": "essen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "beber", + "wordSecond": "trinken", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ler", + "wordSecond": "lesen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escrever", + "wordSecond": "schreiben", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "morar", + "wordSecond": "wohnen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "trabalhar", + "wordSecond": "arbeiten", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "estudar", + "wordSecond": "lernen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "brincar", + "wordSecond": "spielen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dormir", + "wordSecond": "schlafen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "acordar", + "wordSecond": "aufwachen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "levantar", + "wordSecond": "aufstehen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sentar", + "wordSecond": "sitzen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ficar", + "wordSecond": "bleiben", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sair", + "wordSecond": "ausgehen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "entrar", + "wordSecond": "hereinkommen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "abrir", + "wordSecond": "öffnen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fechar", + "wordSecond": "schließen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dar", + "wordSecond": "geben", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "receber", + "wordSecond": "bekommen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "comprar", + "wordSecond": "kaufen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vender", + "wordSecond": "verkaufen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pagar", + "wordSecond": "bezahlen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "custar", + "wordSecond": "kosten", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "gostar", + "wordSecond": "mögen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "amar", + "wordSecond": "lieben", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "odiar", + "wordSecond": "hassen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "rir", + "wordSecond": "lachen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chorar", + "wordSecond": "weinen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pensar", + "wordSecond": "denken", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "saber", + "wordSecond": "wissen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "entender", + "wordSecond": "verstehen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "perguntar", + "wordSecond": "fragen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "responder", + "wordSecond": "antworten", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chamar", + "wordSecond": "rufen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "esperar", + "wordSecond": "warten", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "procurar", + "wordSecond": "suchen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "encontrar", + "wordSecond": "finden", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "perder", + "wordSecond": "verlieren", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ganhar", + "wordSecond": "gewinnen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ajudar", + "wordSecond": "helfen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "precisar", + "wordSecond": "brauchen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "querer", + "wordSecond": "wollen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "poder", + "wordSecond": "können", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dever", + "wordSecond": "sollen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "conhecer", + "wordSecond": "kennen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "encontrar-se", + "wordSecond": "treffen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "visitar", + "wordSecond": "besuchen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "viajar", + "wordSecond": "reisen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chegar", + "wordSecond": "ankommen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "partir", + "wordSecond": "abfahren", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dirigir", + "wordSecond": "fahren", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "andar", + "wordSecond": "laufen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "correr", + "wordSecond": "rennen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nadar", + "wordSecond": "schwimmen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pular", + "wordSecond": "springen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dançar", + "wordSecond": "tanzen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cantar", + "wordSecond": "singen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tocar", + "wordSecond": "spielen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "assistir", + "wordSecond": "schauen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "olhar", + "wordSecond": "gucken", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escutar", + "wordSecond": "zuhören", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sentir", + "wordSecond": "fühlen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cheirar", + "wordSecond": "riechen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "provar", + "wordSecond": "schmecken", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tocar", + "wordSecond": "berühren", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pegar", + "wordSecond": "nehmen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "colocar", + "wordSecond": "stellen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "deitar", + "wordSecond": "legen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pendurar", + "wordSecond": "hängen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lavar", + "wordSecond": "waschen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "limpar", + "wordSecond": "putzen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cozinhar", + "wordSecond": "kochen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "assar", + "wordSecond": "backen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cortar", + "wordSecond": "schneiden", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "misturar", + "wordSecond": "mischen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "servir", + "wordSecond": "servieren", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "comer", + "wordSecond": "essen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tomar", + "wordSecond": "trinken", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vestir", + "wordSecond": "anziehen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tirar", + "wordSecond": "ausziehen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "calçar", + "wordSecond": "anziehen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pentear", + "wordSecond": "kämmen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escovar", + "wordSecond": "bürsten", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "banhar", + "wordSecond": "baden", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "descansar", + "wordSecond": "ausruhen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "respirar", + "wordSecond": "atmen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sorrir", + "wordSecond": "lächeln", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "abraçar", + "wordSecond": "umarmen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "beijar", + "wordSecond": "küssen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "cumprimentar", + "wordSecond": "begrüßen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "despedir-se", + "wordSecond": "verabschieden", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "agradecer", + "wordSecond": "danken", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "pedir desculpas", + "wordSecond": "entschuldigen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "explicar", + "wordSecond": "erklären", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "mostrar", + "wordSecond": "zeigen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escolher", + "wordSecond": "wählen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "decidir", + "wordSecond": "entscheiden", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "começar", + "wordSecond": "anfangen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "terminar", + "wordSecond": "enden", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "continuar", + "wordSecond": "fortsetzen", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "parar", + "wordSecond": "halten", + "createdAt": "2026-02-19T12:23:16.377Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_pt_fr_A1.json b/output/2026_02_19_verbs_beginners_pt_fr_A1.json new file mode 100644 index 0000000..42a6e35 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_pt_fr_A1.json @@ -0,0 +1,1475 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:23:36.456Z", + "metadata": { + "itemCount": 112, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ser", + "wordSecond": "être", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ter", + "wordSecond": "avoir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fazer", + "wordSecond": "faire", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ir", + "wordSecond": "aller", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vir", + "wordSecond": "venir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "poder", + "wordSecond": "pouvoir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "querer", + "wordSecond": "vouloir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dizer", + "wordSecond": "dire", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ver", + "wordSecond": "voir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ouvir", + "wordSecond": "entendre", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "falar", + "wordSecond": "parler", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "comer", + "wordSecond": "manger", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "beber", + "wordSecond": "boire", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dormir", + "wordSecond": "dormir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "acordar", + "wordSecond": "se réveiller", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "levantar", + "wordSecond": "se lever", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sentar", + "wordSecond": "s'asseoir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ficar", + "wordSecond": "rester", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sair", + "wordSecond": "sortir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "entrar", + "wordSecond": "entrer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chegar", + "wordSecond": "arriver", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "partir", + "wordSecond": "partir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "voltar", + "wordSecond": "retourner", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "andar", + "wordSecond": "marcher", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "correr", + "wordSecond": "courir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pular", + "wordSecond": "sauter", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "nadar", + "wordSecond": "nager", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "brincar", + "wordSecond": "jouer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "trabalhar", + "wordSecond": "travailler", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estudar", + "wordSecond": "étudier", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ler", + "wordSecond": "lire", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "escrever", + "wordSecond": "écrire", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "aprender", + "wordSecond": "apprendre", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ensinar", + "wordSecond": "enseigner", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "comprar", + "wordSecond": "acheter", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vender", + "wordSecond": "vendre", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pagar", + "wordSecond": "payer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "gastar", + "wordSecond": "dépenser", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "abrir", + "wordSecond": "ouvrir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fechar", + "wordSecond": "fermer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ligar", + "wordSecond": "allumer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "desligar", + "wordSecond": "éteindre", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "usar", + "wordSecond": "utiliser", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "precisar", + "wordSecond": "avoir besoin", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "gostar", + "wordSecond": "aimer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "amar", + "wordSecond": "adorer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "odiar", + "wordSecond": "détester", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "saber", + "wordSecond": "savoir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "conhecer", + "wordSecond": "connaître", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pensar", + "wordSecond": "penser", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "achar", + "wordSecond": "trouver", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "procurar", + "wordSecond": "chercher", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "encontrar", + "wordSecond": "rencontrer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "esperar", + "wordSecond": "attendre", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ajudar", + "wordSecond": "aider", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pedir", + "wordSecond": "demander", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "responder", + "wordSecond": "répondre", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chamar", + "wordSecond": "appeler", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ouvir", + "wordSecond": "écouter", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "olhar", + "wordSecond": "regarder", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "mostrar", + "wordSecond": "montrer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tomar", + "wordSecond": "prendre", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dar", + "wordSecond": "donner", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "receber", + "wordSecond": "recevoir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "levar", + "wordSecond": "porter", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "trazer", + "wordSecond": "apporter", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "colocar", + "wordSecond": "mettre", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tirar", + "wordSecond": "enlever", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lavar", + "wordSecond": "laver", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "limpar", + "wordSecond": "nettoyer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cozinhar", + "wordSecond": "cuisiner", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "comer", + "wordSecond": "manger", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "beber", + "wordSecond": "boir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cortar", + "wordSecond": "couper", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "abrir", + "wordSecond": "ouvrir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fechar", + "wordSecond": "fermer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "arrumar", + "wordSecond": "ranger", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "organizar", + "wordSecond": "organiser", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "morar", + "wordSecond": "habiter", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "viver", + "wordSecond": "vivre", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "nascer", + "wordSecond": "naître", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "crescer", + "wordSecond": "grandir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "envelhecer", + "wordSecond": "vieillir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "rir", + "wordSecond": "rire", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chorar", + "wordSecond": "pleurer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sorrir", + "wordSecond": "sourire", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "gritar", + "wordSecond": "crier", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cantar", + "wordSecond": "chanter", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dançar", + "wordSecond": "danser", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "desenhar", + "wordSecond": "dessiner", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pintar", + "wordSecond": "peindre", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "construir", + "wordSecond": "construire", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "destruir", + "wordSecond": "détruire", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "consertar", + "wordSecond": "réparer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quebrar", + "wordSecond": "casser", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "perder", + "wordSecond": "perdre", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ganhar", + "wordSecond": "gagner", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "encontrar", + "wordSecond": "trouver", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "guardar", + "wordSecond": "garder", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "esquecer", + "wordSecond": "oublier", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lembrar", + "wordSecond": "se souvenir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sentir", + "wordSecond": "sentir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "cheirar", + "wordSecond": "sentir", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tocar", + "wordSecond": "toucher", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "pegar", + "wordSecond": "attraper", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "largar", + "wordSecond": "lâcher", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "subir", + "wordSecond": "monter", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "descer", + "wordSecond": "descendre", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "parar", + "wordSecond": "arrêter", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100109, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "começar", + "wordSecond": "commencer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100110, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "terminar", + "wordSecond": "terminer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + }, + { + "id": 100111, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "continuar", + "wordSecond": "continuer", + "createdAt": "2026-02-19T12:23:36.456Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + }, + { + "vocabularyItemId": 100109, + "stage": "NEW" + }, + { + "vocabularyItemId": 100110, + "stage": "NEW" + }, + { + "vocabularyItemId": 100111, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_pt_it_A1.json b/output/2026_02_19_verbs_beginners_pt_it_A1.json new file mode 100644 index 0000000..7fe8e3d --- /dev/null +++ b/output/2026_02_19_verbs_beginners_pt_it_A1.json @@ -0,0 +1,1423 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:23:56.330Z", + "metadata": { + "itemCount": 108, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ser", + "wordSecond": "essere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estar", + "wordSecond": "stare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ter", + "wordSecond": "avere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fazer", + "wordSecond": "fare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ir", + "wordSecond": "andare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vir", + "wordSecond": "venire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ver", + "wordSecond": "vedere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ouvir", + "wordSecond": "sentire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "falar", + "wordSecond": "parlare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dizer", + "wordSecond": "dire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "querer", + "wordSecond": "volere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "poder", + "wordSecond": "potere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "saber", + "wordSecond": "sapere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dar", + "wordSecond": "dare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "comer", + "wordSecond": "mangiare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "beber", + "wordSecond": "bere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dormir", + "wordSecond": "dormire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "acordar", + "wordSecond": "svegliarsi", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "trabalhar", + "wordSecond": "lavorare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estudar", + "wordSecond": "studiare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ler", + "wordSecond": "leggere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "escrever", + "wordSecond": "scrivere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "abrir", + "wordSecond": "aprire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fechar", + "wordSecond": "chiudere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "entrar", + "wordSecond": "entrare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sair", + "wordSecond": "uscire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chegar", + "wordSecond": "arrivare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "partir", + "wordSecond": "partire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ficar", + "wordSecond": "rimanere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "encontrar", + "wordSecond": "trovare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "procurar", + "wordSecond": "cercare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "achar", + "wordSecond": "trovare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pegar", + "wordSecond": "prendere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "colocar", + "wordSecond": "mettere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tirar", + "wordSecond": "togliere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "levar", + "wordSecond": "portare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "trazer", + "wordSecond": "portare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "comprar", + "wordSecond": "comprare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vender", + "wordSecond": "vendere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pagar", + "wordSecond": "pagare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gostar", + "wordSecond": "piacere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "amar", + "wordSecond": "amare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "odiar", + "wordSecond": "odiare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "rir", + "wordSecond": "ridere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chorar", + "wordSecond": "piangere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sentir", + "wordSecond": "sentire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pensar", + "wordSecond": "pensare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "entender", + "wordSecond": "capire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "aprender", + "wordSecond": "imparare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ensinar", + "wordSecond": "insegnare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ajudar", + "wordSecond": "aiutare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pedir", + "wordSecond": "chiedere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "responder", + "wordSecond": "rispondere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "esperar", + "wordSecond": "aspettare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chamar", + "wordSecond": "chiamare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ouvir", + "wordSecond": "ascoltare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "olhar", + "wordSecond": "guardare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mostrar", + "wordSecond": "mostrare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tomar", + "wordSecond": "prendere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "usar", + "wordSecond": "usare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "precisar", + "wordSecond": "aver bisogno", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "começar", + "wordSecond": "cominciare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "terminar", + "wordSecond": "finire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "continuar", + "wordSecond": "continuare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "parar", + "wordSecond": "fermarsi", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "andar", + "wordSecond": "camminare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "correr", + "wordSecond": "correre", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pular", + "wordSecond": "saltare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sentar", + "wordSecond": "sedersi", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "levantar", + "wordSecond": "alzarsi", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "deitar", + "wordSecond": "sdraiarsi", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "brincar", + "wordSecond": "giocare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dançar", + "wordSecond": "ballare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cantar", + "wordSecond": "cantare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lavar", + "wordSecond": "lavare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "limpar", + "wordSecond": "pulire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cozinhar", + "wordSecond": "cucinare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "assar", + "wordSecond": "cuocere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ferver", + "wordSecond": "bollire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "cortar", + "wordSecond": "tagliare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "misturar", + "wordSecond": "mescolare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "servir", + "wordSecond": "servire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "comer", + "wordSecond": "consumare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "beber", + "wordSecond": "bere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tomar banho", + "wordSecond": "fare il bagno", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vestir", + "wordSecond": "vestire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "calçar", + "wordSecond": "calzare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pentear", + "wordSecond": "pettinare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "escovar", + "wordSecond": "spazzolare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "descansar", + "wordSecond": "riposare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "viajar", + "wordSecond": "viaggiare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "visitar", + "wordSecond": "visitare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "morar", + "wordSecond": "abitare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "alugar", + "wordSecond": "affittare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "construir", + "wordSecond": "costruire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "consertar", + "wordSecond": "riparare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dirigir", + "wordSecond": "guidare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "voar", + "wordSecond": "volare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nadar", + "wordSecond": "nuotare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "pescar", + "wordSecond": "pescare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "plantar", + "wordSecond": "piantare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "crescer", + "wordSecond": "crescere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "mudar", + "wordSecond": "cambiare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "esquecer", + "wordSecond": "dimenticare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lembrar", + "wordSecond": "ricordare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sonhar", + "wordSecond": "sognare", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "viver", + "wordSecond": "vivere", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "morrer", + "wordSecond": "morire", + "createdAt": "2026-02-19T12:23:56.330Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_pt_ja_A1.json b/output/2026_02_19_verbs_beginners_pt_ja_A1.json new file mode 100644 index 0000000..51ed425 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_pt_ja_A1.json @@ -0,0 +1,1449 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:24:32.601Z", + "metadata": { + "itemCount": 110, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "comer", + "wordSecond": "食べる (たべる, taberu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "beber", + "wordSecond": "飲む (のむ, nomu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dormir", + "wordSecond": "寝る (ねる, neru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "acordar", + "wordSecond": "起きる (おきる, okiru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "andar", + "wordSecond": "歩く (あるく, aruku)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "correr", + "wordSecond": "走る (はしる, hashiru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sentar", + "wordSecond": "座る (すわる, suwaru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "levantar", + "wordSecond": "立つ (たつ, tatsu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ver", + "wordSecond": "見る (みる, miru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ouvir", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "falar", + "wordSecond": "話す (はなす, hanasu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dizer", + "wordSecond": "言う (いう, iu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ler", + "wordSecond": "読む (よむ, yomu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "escrever", + "wordSecond": "書く (かく, kaku)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pensar", + "wordSecond": "考える (かんがえる, kangaeru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "saber", + "wordSecond": "知る (しる, shiru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "entender", + "wordSecond": "分かる (わかる, wakaru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "querer", + "wordSecond": "欲しい (ほしい, hoshii)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "gostar", + "wordSecond": "好き (すき, suki)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "amar", + "wordSecond": "愛する (あいする, aisuru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "rir", + "wordSecond": "笑う (わらう, warau)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "chorar", + "wordSecond": "泣く (なく, naku)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "brincar", + "wordSecond": "遊ぶ (あそぶ, asobu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "trabalhar", + "wordSecond": "働く (はたらく, hataraku)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "estudar", + "wordSecond": "勉強する (べんきょうする, benkyou suru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "aprender", + "wordSecond": "学ぶ (まなぶ, manabu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ensinar", + "wordSecond": "教える (おしえる, oshieru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "comprar", + "wordSecond": "買う (かう, kau)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "vender", + "wordSecond": "売る (うる, uru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pagar", + "wordSecond": "払う (はらう, harau)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "abrir", + "wordSecond": "開ける (あける, akeru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "fechar", + "wordSecond": "閉める (しめる, shimeru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "entrar", + "wordSecond": "入る (はいる, hairu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sair", + "wordSecond": "出る (でる, deru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "vir", + "wordSecond": "来る (くる, kuru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ir", + "wordSecond": "行く (いく, iku)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "voltar", + "wordSecond": "帰る (かえる, kaeru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "esperar", + "wordSecond": "待つ (まつ, matsu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "encontrar", + "wordSecond": "会う (あう, au)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dar", + "wordSecond": "あげる (あげる, ageru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "receber", + "wordSecond": "もらう (もらう, morau)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tomar", + "wordSecond": "取る (とる, toru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "colocar", + "wordSecond": "置く (おく, oku)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pegar", + "wordSecond": "持つ (もつ, motsu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "usar", + "wordSecond": "使う (つかう, tsukau)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "fazer", + "wordSecond": "する (する, suru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cozinhar", + "wordSecond": "料理する (りょうりする, ryouri suru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "lavar", + "wordSecond": "洗う (あらう, arau)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "limpar", + "wordSecond": "掃除する (そうじする, souji suru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "arrumar", + "wordSecond": "片付ける (かたづける, katazukeru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "vestir", + "wordSecond": "着る (きる, kiru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tirar", + "wordSecond": "脱ぐ (ぬぐ, nugu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "calçar", + "wordSecond": "履く (はく, haku)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tomar banho", + "wordSecond": "浴びる (あびる, abiru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pentear", + "wordSecond": "梳かす (とかす, tokasu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cortar", + "wordSecond": "切る (きる, kiru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "coçar", + "wordSecond": "掻く (かく, kaku)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "respirar", + "wordSecond": "呼吸する (こきゅうする, kokyuu suru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "espirrar", + "wordSecond": "くしゃみする (くしゃみする, kushami suru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tossir", + "wordSecond": "咳する (せきする, seki suru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pular", + "wordSecond": "跳ぶ (とぶ, tobu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "nadar", + "wordSecond": "泳ぐ (およぐ, oyogu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dançar", + "wordSecond": "踊る (おどる, odoru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cantar", + "wordSecond": "歌う (うたう, utau)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tocar", + "wordSecond": "触る (さわる, sawaru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cheirar", + "wordSecond": "嗅ぐ (かぐ, kagu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "provar", + "wordSecond": "味わう (あじわう, ajiwau)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sentir", + "wordSecond": "感じる (かんじる, kanjiru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "lembrar", + "wordSecond": "覚える (おぼえる, oboeru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "esquecer", + "wordSecond": "忘れる (わすれる, wasureru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "escolher", + "wordSecond": "選ぶ (えらぶ, erabu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "decidir", + "wordSecond": "決める (きめる, kimeru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "começar", + "wordSecond": "始める (はじめる, hajimeru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "terminar", + "wordSecond": "終わる (おわる, owaru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "continuar", + "wordSecond": "続ける (つづける, tsuzukeru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "parar", + "wordSecond": "止まる (とまる, tomaru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ajudar", + "wordSecond": "助ける (たすける, tasukeru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pedir", + "wordSecond": "頼む (たのむ, tanomu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "perguntar", + "wordSecond": "聞く (きく, kiku)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "responder", + "wordSecond": "答える (こたえる, kotaeru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "explicar", + "wordSecond": "説明する (せつめいする, setsumei suru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "mostrar", + "wordSecond": "見せる (みせる, miseru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "procurar", + "wordSecond": "探す (さがす, sagasu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "encontrar", + "wordSecond": "見つける (みつける, mitsukeru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "perder", + "wordSecond": "失う (うしなう, ushinau)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "achar", + "wordSecond": "思う (おもう, omou)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "acreditar", + "wordSecond": "信じる (しんじる, shinjiru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "duvidar", + "wordSecond": "疑う (うたがう, utagau)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "prometer", + "wordSecond": "約束する (やくそくする, yakusoku suru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cumprir", + "wordSecond": "守る (まもる, mamoru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "quebrar", + "wordSecond": "壊す (こわす, kowasu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "consertar", + "wordSecond": "直す (なおす, naosu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "construir", + "wordSecond": "建てる (たてる, tateru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "morar", + "wordSecond": "住む (すむ, sumu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "visitar", + "wordSecond": "訪ねる (たずねる, tazuneru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "viajar", + "wordSecond": "旅行する (りょこうする, ryokou suru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dirigir", + "wordSecond": "運転する (うんてんする, unten suru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "parar", + "wordSecond": "停める (とめる, tomeru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "subir", + "wordSecond": "登る (のぼる, noboru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "descer", + "wordSecond": "降りる (おりる, oriru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "cair", + "wordSecond": "落ちる (おちる, ochiru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "levantar", + "wordSecond": "上げる (あげる, ageru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "baixar", + "wordSecond": "下げる (さげる, sageru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "puxar", + "wordSecond": "引く (ひく, hiku)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "empurrar", + "wordSecond": "押す (おす, osu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "girar", + "wordSecond": "回る (まわる, mawaru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "virar", + "wordSecond": "曲がる (まがる, magaru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "crescer", + "wordSecond": "育つ (そだつ, sodatsu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "viver", + "wordSecond": "生きる (いきる, ikiru)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + }, + { + "id": 100109, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "morrer", + "wordSecond": "死ぬ (しぬ, shinu)", + "createdAt": "2026-02-19T12:24:32.601Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + }, + { + "vocabularyItemId": 100109, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_pt_ko_A1.json b/output/2026_02_19_verbs_beginners_pt_ko_A1.json new file mode 100644 index 0000000..ebc4d45 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_pt_ko_A1.json @@ -0,0 +1,1307 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:25:29.511Z", + "metadata": { + "itemCount": 106, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ser", + "wordSecond": "이다 (ida)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "estar", + "wordSecond": "있다 (itda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ter", + "wordSecond": "가지다 (gajida)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "fazer", + "wordSecond": "하다 (hada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ir", + "wordSecond": "가다 (gada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "vir", + "wordSecond": "오다 (oda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ver", + "wordSecond": "보다 (boda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ouvir", + "wordSecond": "듣다 (deutda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "falar", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dizer", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "comer", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "beber", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dormir", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "acordar", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "trabalhar", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "estudar", + "wordSecond": "공부하다 (gongbuhada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ler", + "wordSecond": "읽다 (ikda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "escrever", + "wordSecond": "쓰다 (sseuda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "abrir", + "wordSecond": "열다 (yeolda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "fechar", + "wordSecond": "닫다 (datda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "entrar", + "wordSecond": "들어가다 (deureogada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sair", + "wordSecond": "나가다 (nagada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "andar", + "wordSecond": "걷다 (geotda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "correr", + "wordSecond": "뛰다 (ttwida)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "parar", + "wordSecond": "멈추다 (meomchuda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sentar", + "wordSecond": "앉다 (anda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "levantar", + "wordSecond": "일어서다 (ireoseoda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "esperar", + "wordSecond": "기다리다 (gidarida)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "encontrar", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "comprar", + "wordSecond": "사다 (sada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "vender", + "wordSecond": "팔다 (palda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pagar", + "wordSecond": "지불하다 (jibulhada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dar", + "wordSecond": "주다 (juda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "receber", + "wordSecond": "받다 (batda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pegar", + "wordSecond": "잡다 (japda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "colocar", + "wordSecond": "놓다 (nota)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "levar", + "wordSecond": "가져가다 (gajyeogada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "trazer", + "wordSecond": "가져오다 (gajyeooda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pensar", + "wordSecond": "생각하다 (saenggakhada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "saber", + "wordSecond": "알다 (alda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "conhecer", + "wordSecond": "알다 (alda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "querer", + "wordSecond": "원하다 (wonhada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "gostar", + "wordSecond": "좋아하다 (joahada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "amar", + "wordSecond": "사랑하다 (saranghada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "odiar", + "wordSecond": "싫어하다 (sireohada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "rir", + "wordSecond": "웃다 (utda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "chorar", + "wordSecond": "울다 (ulda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "brincar", + "wordSecond": "놀다 (nolda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cantar", + "wordSecond": "노래하다 (noraehada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dançar", + "wordSecond": "춤추다 (chumchuda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "nadar", + "wordSecond": "수영하다 (suyeonghada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "jogar", + "wordSecond": "놀다 (nolda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "assistir", + "wordSecond": "보다 (boda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "telefonar", + "wordSecond": "전화하다 (jeonhwahada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "perguntar", + "wordSecond": "묻다 (mutda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "responder", + "wordSecond": "대답하다 (daedaphada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ajudar", + "wordSecond": "도와주다 (dowajuda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "precisar", + "wordSecond": "필요하다 (piryohada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "começar", + "wordSecond": "시작하다 (sijakhada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "terminar", + "wordSecond": "끝내다 (kkeutnaeda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "continuar", + "wordSecond": "계속하다 (gyesokhada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tentar", + "wordSecond": "시도하다 (sidohada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "conseguir", + "wordSecond": "할 수 있다 (hal su itda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "perder", + "wordSecond": "잃다 (ilta)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "procurar", + "wordSecond": "찾다 (chatda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "limpar", + "wordSecond": "청소하다 (cheongsohada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lavar", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cozinhar", + "wordSecond": "요리하다 (yorihada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cortar", + "wordSecond": "자르다 (jareuda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "vestir", + "wordSecond": "입다 (ipda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tirar", + "wordSecond": "벗다 (beotda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "calçar", + "wordSecond": "신다 (sinda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tomar banho", + "wordSecond": "목욕하다 (mogyokada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "escovar", + "wordSecond": "닦다 (dakda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "pentear", + "wordSecond": "빗다 (bitda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "dirigir", + "wordSecond": "운전하다 (unjeonhada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "viajar", + "wordSecond": "여행하다 (yeohaenghada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "chegar", + "wordSecond": "도착하다 (dochakhada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "partir", + "wordSecond": "출발하다 (chulbalhada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "morar", + "wordSecond": "살다 (salda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "visitar", + "wordSecond": "방문하다 (bangmunhada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "convidar", + "wordSecond": "초대하다 (chodaehada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "celebrar", + "wordSecond": "축하하다 (chukahada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "descansar", + "wordSecond": "휴식하다 (hyusikada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sonhar", + "wordSecond": "꿈꾸다 (kkumkkuda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "aprender", + "wordSecond": "배우다 (baeuda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ensinar", + "wordSecond": "가르치다 (gareuchida)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "esquecer", + "wordSecond": "잊다 (itda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "lembrar", + "wordSecond": "기억하다 (gieokada)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sentir", + "wordSecond": "느끼다 (neukkida)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "olhar", + "wordSecond": "보다 (boda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "cheirar", + "wordSecond": "냄새 맡다 (naemsae matda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tocar", + "wordSecond": "만지다 (manjida)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sorrir", + "wordSecond": "미소 짓다 (miso jitda)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "gritar", + "wordSecond": "소리치다 (sorichida)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sussurrar", + "wordSecond": "속삭이다 (soksagida)", + "createdAt": "2026-02-19T12:25:29.511Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_pt_pl_A1.json b/output/2026_02_19_verbs_beginners_pt_pl_A1.json new file mode 100644 index 0000000..26b6952 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_pt_pl_A1.json @@ -0,0 +1,1423 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:25:52.050Z", + "metadata": { + "itemCount": 108, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ser", + "wordSecond": "być", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "estar", + "wordSecond": "być", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ter", + "wordSecond": "mieć", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "fazer", + "wordSecond": "robić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dizer", + "wordSecond": "mówić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ir", + "wordSecond": "iść", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "vir", + "wordSecond": "przychodzić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ver", + "wordSecond": "widzieć", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ouvir", + "wordSecond": "słyszeć", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "comer", + "wordSecond": "jeść", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "beber", + "wordSecond": "pić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dormir", + "wordSecond": "spać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "acordar", + "wordSecond": "budzić się", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "levantar", + "wordSecond": "wstawać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sentar", + "wordSecond": "siedzieć", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ficar", + "wordSecond": "zostać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "andar", + "wordSecond": "chodzić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "correr", + "wordSecond": "biegać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pular", + "wordSecond": "skakać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "parar", + "wordSecond": "zatrzymać się", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "começar", + "wordSecond": "zaczynać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "terminar", + "wordSecond": "kończyć", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "abrir", + "wordSecond": "otwierać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "fechar", + "wordSecond": "zamykać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "entrar", + "wordSecond": "wchodzić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sair", + "wordSecond": "wychodzić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dar", + "wordSecond": "dawać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "receber", + "wordSecond": "otrzymywać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pegar", + "wordSecond": "brać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "colocar", + "wordSecond": "kłaść", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tirar", + "wordSecond": "zdejmować", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "procurar", + "wordSecond": "szukać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "encontrar", + "wordSecond": "znajdować", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "perder", + "wordSecond": "gubić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "achar", + "wordSecond": "myśleć", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "saber", + "wordSecond": "wiedzieć", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "conhecer", + "wordSecond": "znać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "aprender", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ensinar", + "wordSecond": "uczyć", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ler", + "wordSecond": "czytać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "escrever", + "wordSecond": "pisać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "desenhar", + "wordSecond": "rysować", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pintar", + "wordSecond": "malować", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cantar", + "wordSecond": "śpiewać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dançar", + "wordSecond": "tańczyć", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tocar", + "wordSecond": "grać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ouvir música", + "wordSecond": "słuchać muzyki", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "assistir", + "wordSecond": "oglądać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "brincar", + "wordSecond": "bawić się", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "trabalhar", + "wordSecond": "pracować", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "estudar", + "wordSecond": "studiować", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "comprar", + "wordSecond": "kupować", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "vender", + "wordSecond": "sprzedawać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pagar", + "wordSecond": "płacić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "gostar", + "wordSecond": "lubić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "amar", + "wordSecond": "kochać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "odiar", + "wordSecond": "nienawidzić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "querer", + "wordSecond": "chcieć", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "precisar", + "wordSecond": "potrzebować", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "poder", + "wordSecond": "móc", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dever", + "wordSecond": "powinien", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sentir", + "wordSecond": "czuć", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "rir", + "wordSecond": "śmiać się", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "chorar", + "wordSecond": "płakać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sorrir", + "wordSecond": "uśmiechać się", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "gritar", + "wordSecond": "krzyczeć", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "falar", + "wordSecond": "rozmawiać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "perguntar", + "wordSecond": "pytać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "responder", + "wordSecond": "odpowiadać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "chamar", + "wordSecond": "wołać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ajudar", + "wordSecond": "pomagać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "esperar", + "wordSecond": "czekać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ligar", + "wordSecond": "dzwonić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "lavar", + "wordSecond": "myć", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "limpar", + "wordSecond": "sprzątać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cozinhar", + "wordSecond": "gotować", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "comer", + "wordSecond": "jeść", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "beber", + "wordSecond": "pić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "cortar", + "wordSecond": "kroić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "misturar", + "wordSecond": "mieszać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "servir", + "wordSecond": "podawać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tomar banho", + "wordSecond": "kąpać się", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "vestir", + "wordSecond": "ubierać się", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "calçar", + "wordSecond": "zakładać buty", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pentear", + "wordSecond": "czesać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "escovar", + "wordSecond": "szczotkować", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "deitar", + "wordSecond": "kłaść się", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "descansar", + "wordSecond": "odpoczywać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "viajar", + "wordSecond": "podróżować", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "conduzir", + "wordSecond": "prowadzić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "andar de carro", + "wordSecond": "jeździć samochodem", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "andar de bicicleta", + "wordSecond": "jeździć na rowerze", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "andar de ônibus", + "wordSecond": "jeździć autobusem", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "andar de trem", + "wordSecond": "jeździć pociągiem", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "voar", + "wordSecond": "latać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "nadar", + "wordSecond": "pływać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "pescar", + "wordSecond": "łowić ryby", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "caminhar", + "wordSecond": "spacerować", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "subir", + "wordSecond": "wchodzić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "descer", + "wordSecond": "schodzić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "carregar", + "wordSecond": "nosić", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "empurrar", + "wordSecond": "pchać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "puxar", + "wordSecond": "ciągnąć", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "construir", + "wordSecond": "budować", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "consertar", + "wordSecond": "naprawiać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "jogar", + "wordSecond": "grać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ganhar", + "wordSecond": "wygrać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "perder", + "wordSecond": "przegrać", + "createdAt": "2026-02-19T12:25:52.050Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_pt_zh_A1.json b/output/2026_02_19_verbs_beginners_pt_zh_A1.json new file mode 100644 index 0000000..72b420d --- /dev/null +++ b/output/2026_02_19_verbs_beginners_pt_zh_A1.json @@ -0,0 +1,1379 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:24:59.083Z", + "metadata": { + "itemCount": 106, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ser", + "wordSecond": "是 (shì)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ter", + "wordSecond": "有 (yǒu)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fazer", + "wordSecond": "做 (zuò)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ir", + "wordSecond": "去 (qù)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "vir", + "wordSecond": "来 (lái)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ver", + "wordSecond": "看 (kàn)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ouvir", + "wordSecond": "听 (tīng)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "falar", + "wordSecond": "说 (shuō)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "comer", + "wordSecond": "吃 (chī)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "beber", + "wordSecond": "喝 (hē)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dormir", + "wordSecond": "睡觉 (shuìjiào)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "acordar", + "wordSecond": "醒 (xǐng)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "andar", + "wordSecond": "走 (zǒu)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "correr", + "wordSecond": "跑 (pǎo)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "parar", + "wordSecond": "停 (tíng)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sentar", + "wordSecond": "坐 (zuò)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "levantar", + "wordSecond": "站 (zhàn)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "abrir", + "wordSecond": "开 (kāi)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fechar", + "wordSecond": "关 (guān)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "entrar", + "wordSecond": "进 (jìn)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sair", + "wordSecond": "出 (chū)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dar", + "wordSecond": "给 (gěi)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pegar", + "wordSecond": "拿 (ná)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "colocar", + "wordSecond": "放 (fàng)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "comprar", + "wordSecond": "买 (mǎi)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "vender", + "wordSecond": "卖 (mài)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pagar", + "wordSecond": "付钱 (fùqián)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "trabalhar", + "wordSecond": "工作 (gōngzuò)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "estudar", + "wordSecond": "学习 (xuéxí)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ler", + "wordSecond": "读 (dú)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "escrever", + "wordSecond": "写 (xiě)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "desenhar", + "wordSecond": "画 (huà)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cantar", + "wordSecond": "唱 (chàng)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dançar", + "wordSecond": "跳舞 (tiàowǔ)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "brincar", + "wordSecond": "玩 (wán)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "gostar", + "wordSecond": "喜欢 (xǐhuan)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "amar", + "wordSecond": "爱 (ài)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "odiar", + "wordSecond": "恨 (hèn)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "querer", + "wordSecond": "要 (yào)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "precisar", + "wordSecond": "需要 (xūyào)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "poder", + "wordSecond": "能 (néng)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "saber", + "wordSecond": "知道 (zhīdào)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "entender", + "wordSecond": "懂 (dǒng)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pensar", + "wordSecond": "想 (xiǎng)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "lembrar", + "wordSecond": "记得 (jìde)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "esquecer", + "wordSecond": "忘记 (wàngjì)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "esperar", + "wordSecond": "等 (děng)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "encontrar", + "wordSecond": "找 (zhǎo)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "perder", + "wordSecond": "丢 (diū)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ajudar", + "wordSecond": "帮助 (bāngzhù)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pedir", + "wordSecond": "问 (wèn)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "responder", + "wordSecond": "回答 (huídá)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "chamar", + "wordSecond": "叫 (jiào)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "olhar", + "wordSecond": "看 (kàn)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sorrir", + "wordSecond": "笑 (xiào)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "chorar", + "wordSecond": "哭 (kū)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "gritar", + "wordSecond": "喊 (hǎn)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "rir", + "wordSecond": "笑 (xiào)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "abraçar", + "wordSecond": "抱 (bào)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "beijar", + "wordSecond": "亲 (qīn)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "lavar", + "wordSecond": "洗 (xǐ)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "limpar", + "wordSecond": "打扫 (dǎsǎo)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cozinhar", + "wordSecond": "做饭 (zuòfàn)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tomar banho", + "wordSecond": "洗澡 (xǐzǎo)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "vestir", + "wordSecond": "穿 (chuān)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tirar", + "wordSecond": "脱 (tuō)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "arrumar", + "wordSecond": "整理 (zhěnglǐ)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "organizar", + "wordSecond": "收拾 (shōushi)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "morar", + "wordSecond": "住 (zhù)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "viajar", + "wordSecond": "旅行 (lǚxíng)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "chegar", + "wordSecond": "到 (dào)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "partir", + "wordSecond": "离开 (líkāi)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "voltar", + "wordSecond": "回 (huí)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "visitar", + "wordSecond": "参观 (cānguān)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "conhecer", + "wordSecond": "认识 (rènshi)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "aprender", + "wordSecond": "学 (xué)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ensinar", + "wordSecond": "教 (jiāo)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "explicar", + "wordSecond": "解释 (jiěshì)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "mostrar", + "wordSecond": "给看 (gěi kàn)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "usar", + "wordSecond": "用 (yòng)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tentar", + "wordSecond": "试 (shì)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "começar", + "wordSecond": "开始 (kāishǐ)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "terminar", + "wordSecond": "结束 (jiéshù)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "continuar", + "wordSecond": "继续 (jìxù)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "mudar", + "wordSecond": "换 (huàn)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "crescer", + "wordSecond": "长大 (zhǎngdà)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "viver", + "wordSecond": "生活 (shēnghuó)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "morrer", + "wordSecond": "死 (sǐ)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "nascer", + "wordSecond": "出生 (chūshēng)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "cair", + "wordSecond": "掉 (diào)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "subir", + "wordSecond": "上 (shàng)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "descer", + "wordSecond": "下 (xià)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "pular", + "wordSecond": "跳 (tiào)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "nadar", + "wordSecond": "游泳 (yóuyǒng)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "voar", + "wordSecond": "飞 (fēi)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dirigir", + "wordSecond": "开车 (kāichē)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "andar de bicicleta", + "wordSecond": "骑自行车 (qí zìxíngchē)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "caminhar", + "wordSecond": "走路 (zǒulù)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ligar", + "wordSecond": "打电话 (dǎ diànhuà)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "mandar mensagem", + "wordSecond": "发短信 (fā duǎnxìn)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "usar computador", + "wordSecond": "用电脑 (yòng diànnǎo)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "assistir", + "wordSecond": "看 (kàn)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ouvir música", + "wordSecond": "听音乐 (tīng yīnyuè)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tocar", + "wordSecond": "弹 (tán)", + "createdAt": "2026-02-19T12:24:59.083Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_zh_ko_A1.json b/output/2026_02_19_verbs_beginners_zh_ko_A1.json new file mode 100644 index 0000000..c703ed7 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_zh_ko_A1.json @@ -0,0 +1,1448 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:36:41.148Z", + "metadata": { + "itemCount": 112, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "吃 (chī)", + "wordSecond": "먹다 (meokda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "喝 (hē)", + "wordSecond": "마시다 (masida)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "睡 (shuì)", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "走 (zǒu)", + "wordSecond": "걷다 (geotda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "跑 (pǎo)", + "wordSecond": "뛰다 (ttwida)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "看 (kàn)", + "wordSecond": "보다 (boda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "听 (tīng)", + "wordSecond": "듣다 (deutda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "说 (shuō)", + "wordSecond": "말하다 (malhada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "读 (dú)", + "wordSecond": "읽다 (ikda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "写 (xiě)", + "wordSecond": "쓰다 (sseuda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "坐 (zuò)", + "wordSecond": "앉다 (anda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "站 (zhàn)", + "wordSecond": "서다 (seoda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "开 (kāi)", + "wordSecond": "열다 (yeolda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "关 (guān)", + "wordSecond": "닫다 (datda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "买 (mǎi)", + "wordSecond": "사다 (sada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "卖 (mài)", + "wordSecond": "팔다 (palda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "给 (gěi)", + "wordSecond": "주다 (juda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "拿 (ná)", + "wordSecond": "가지다 (gajida)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "放 (fàng)", + "wordSecond": "놓다 (nota)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "洗 (xǐ)", + "wordSecond": "씻다 (ssitda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "打扫 (dǎsǎo)", + "wordSecond": "청소하다 (cheongsohada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "做饭 (zuòfàn)", + "wordSecond": "요리하다 (yolihada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "学习 (xuéxí)", + "wordSecond": "공부하다 (gongbuhada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "工作 (gōngzuò)", + "wordSecond": "일하다 (ilhada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "玩 (wán)", + "wordSecond": "놀다 (nolda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "笑 (xiào)", + "wordSecond": "웃다 (utda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "哭 (kū)", + "wordSecond": "울다 (ulda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "爱 (ài)", + "wordSecond": "사랑하다 (saranghada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "喜欢 (xǐhuan)", + "wordSecond": "좋아하다 (joahada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "想 (xiǎng)", + "wordSecond": "생각하다 (saenggakhada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "知道 (zhīdào)", + "wordSecond": "알다 (alda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "问 (wèn)", + "wordSecond": "묻다 (mutda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "回答 (huídá)", + "wordSecond": "대답하다 (daedaphada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "叫 (jiào)", + "wordSecond": "부르다 (bureuda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "来 (lái)", + "wordSecond": "오다 (oda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "去 (qù)", + "wordSecond": "가다 (gada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "回 (huí)", + "wordSecond": "돌아가다 (doragada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "等 (děng)", + "wordSecond": "기다리다 (gidarida)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "找 (zhǎo)", + "wordSecond": "찾다 (chatda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "帮助 (bāngzhù)", + "wordSecond": "도와주다 (dowajuda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "开始 (kāishǐ)", + "wordSecond": "시작하다 (sijakhada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "结束 (jiéshù)", + "wordSecond": "끝내다 (kkeunnaeda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "停 (tíng)", + "wordSecond": "멈추다 (meomchuda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "穿 (chuān)", + "wordSecond": "입다 (ipda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "脱 (tuō)", + "wordSecond": "벗다 (beotda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "洗澡 (xǐzǎo)", + "wordSecond": "목욕하다 (mogyokada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "刷牙 (shuāyá)", + "wordSecond": "양치하다 (yangchihada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "梳头 (shūtóu)", + "wordSecond": "머리를 빗다 (meorireul bitda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "起床 (qǐchuáng)", + "wordSecond": "일어나다 (ireonada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "睡觉 (shuìjiào)", + "wordSecond": "자다 (jada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "做梦 (zuòmèng)", + "wordSecond": "꿈을 꾸다 (kkumeul kkuda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "呼吸 (hūxī)", + "wordSecond": "숨쉬다 (sumswida)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "看见 (kànjiàn)", + "wordSecond": "보다 (boda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "听见 (tīngjiàn)", + "wordSecond": "듣다 (deutda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "闻 (wén)", + "wordSecond": "냄새를 맡다 (naemsaereul matda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "尝 (cháng)", + "wordSecond": "맛보다 (matboda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "摸 (mō)", + "wordSecond": "만지다 (manjida)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "抱 (bào)", + "wordSecond": "안다 (anda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "握手 (wòshǒu)", + "wordSecond": "악수하다 (aksuhada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "拍手 (pāishǒu)", + "wordSecond": "박수치다 (baksuchida)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "指 (zhǐ)", + "wordSecond": "가리키다 (garikida)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "点头 (diǎntóu)", + "wordSecond": "고개를 끄덕이다 (gogaereul kkeudeogida)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "摇头 (yáotóu)", + "wordSecond": "고개를 저어 (gogaereul jeoeo)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "跳 (tiào)", + "wordSecond": "뛰다 (ttwida)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "跳舞 (tiàowǔ)", + "wordSecond": "춤추다 (chumchuda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "唱歌 (chànggē)", + "wordSecond": "노래하다 (noraehada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "画画 (huàhuà)", + "wordSecond": "그림을 그리다 (geurimeul geurida)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "拍照 (pāizhào)", + "wordSecond": "사진을 찍다 (sajineul jjikda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "打电话 (dǎ diànhuà)", + "wordSecond": "전화하다 (jeonhwahada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "发短信 (fā duǎnxìn)", + "wordSecond": "문자하다 (munjahada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "上网 (shàngwǎng)", + "wordSecond": "인터넷을 하다 (inteoneseul hada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "开车 (kāichē)", + "wordSecond": "운전하다 (unjeonhada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "骑自行车 (qí zìxíngchē)", + "wordSecond": "자전거를 타다 (jajeongeoreul tada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "坐公共汽车 (zuò gōnggòng qìchē)", + "wordSecond": "버스를 타다 (beoseureul tada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "坐地铁 (zuò dìtiě)", + "wordSecond": "지하철을 타다 (jihacheoreul tada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "走路 (zǒulù)", + "wordSecond": "걷다 (geotda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "跑步 (pǎobù)", + "wordSecond": "달리다 (dallida)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "游泳 (yóuyǒng)", + "wordSecond": "수영하다 (suyeonghada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "爬山 (páshān)", + "wordSecond": "등산하다 (deungsanhada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "旅行 (lǚxíng)", + "wordSecond": "여행하다 (yeohaenghada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "访问 (fǎngwèn)", + "wordSecond": "방문하다 (bangmunhada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "邀请 (yāoqǐng)", + "wordSecond": "초대하다 (chodaehada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "见面 (jiànmiàn)", + "wordSecond": "만나다 (mannada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "告别 (gàobié)", + "wordSecond": "작별하다 (jakbyeolhada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "谢谢 (xièxie)", + "wordSecond": "감사하다 (gamsahada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "对不起 (duìbuqǐ)", + "wordSecond": "미안하다 (mianhada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "请 (qǐng)", + "wordSecond": "부탁하다 (butakhada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "欢迎 (huānyíng)", + "wordSecond": "환영하다 (hwanyeonghada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "祝贺 (zhùhè)", + "wordSecond": "축하하다 (chukahada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "担心 (dānxīn)", + "wordSecond": "걱정하다 (geokjeonghada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "害怕 (hàipà)", + "wordSecond": "무서워하다 (museowohada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "生气 (shēngqì)", + "wordSecond": "화내다 (hwanaeda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "惊讶 (jīngyà)", + "wordSecond": "놀라다 (nollada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "饿 (è)", + "wordSecond": "배고프다 (baegopeuda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "渴 (kě)", + "wordSecond": "목마르다 (mongmareuda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "累 (lèi)", + "wordSecond": "피곤하다 (pigonhada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "病 (bìng)", + "wordSecond": "아프다 (apeuda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "休息 (xiūxi)", + "wordSecond": "쉬다 (swida)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "治疗 (zhìliáo)", + "wordSecond": "치료하다 (chiryohada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "死 (sǐ)", + "wordSecond": "죽다 (jukda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "活 (huó)", + "wordSecond": "살다 (salda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "出生 (chūshēng)", + "wordSecond": "태어나다 (taeeonada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "长大 (zhǎngdà)", + "wordSecond": "자라다 (jarada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "变老 (biànlǎo)", + "wordSecond": "늙다 (neukda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "结婚 (jiéhūn)", + "wordSecond": "결혼하다 (gyeolhonhada)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "生小孩 (shēng xiǎohái)", + "wordSecond": "아이를 낳다 (aireul nata)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100109, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "养宠物 (yǎng chǒngwù)", + "wordSecond": "애완동물을 키우다 (aewandongmureul kiuda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100110, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "种植 (zhòngzhí)", + "wordSecond": "심다 (simda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + }, + { + "id": 100111, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "浇水 (jiāoshuǐ)", + "wordSecond": "물을 주다 (mureul juda)", + "createdAt": "2026-02-19T12:36:41.148Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + }, + { + "vocabularyItemId": 100109, + "stage": "NEW" + }, + { + "vocabularyItemId": 100110, + "stage": "NEW" + }, + { + "vocabularyItemId": 100111, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_beginners_zh_pl_A1.json b/output/2026_02_19_verbs_beginners_zh_pl_A1.json new file mode 100644 index 0000000..7de3137 --- /dev/null +++ b/output/2026_02_19_verbs_beginners_zh_pl_A1.json @@ -0,0 +1,1397 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T12:37:09.191Z", + "metadata": { + "itemCount": 106, + "categoryCount": 1, + "exportScope": "Category: Verbs - Beginners" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Beginners" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "是 (shì)", + "wordSecond": "być", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "有 (yǒu)", + "wordSecond": "mieć", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "做 (zuò)", + "wordSecond": "robić", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "去 (qù)", + "wordSecond": "iść", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "来 (lái)", + "wordSecond": "przychodzić", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "吃 (chī)", + "wordSecond": "jeść", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "喝 (hē)", + "wordSecond": "pić", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "看 (kàn)", + "wordSecond": "widzieć", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "听 (tīng)", + "wordSecond": "słuchać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "说 (shuō)", + "wordSecond": "mówić", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "读 (dú)", + "wordSecond": "czytać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "写 (xiě)", + "wordSecond": "pisać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "坐 (zuò)", + "wordSecond": "siedzieć", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "站 (zhàn)", + "wordSecond": "stać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "走 (zǒu)", + "wordSecond": "chodzić", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "跑 (pǎo)", + "wordSecond": "biegać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "睡 (shuì)", + "wordSecond": "spać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "醒 (xǐng)", + "wordSecond": "budzić się", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "工作 (gōngzuò)", + "wordSecond": "pracować", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "学习 (xuéxí)", + "wordSecond": "uczyć się", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "玩 (wán)", + "wordSecond": "bawić się", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "爱 (ài)", + "wordSecond": "kochać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "喜欢 (xǐhuan)", + "wordSecond": "lubić", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "想 (xiǎng)", + "wordSecond": "myśleć", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "知道 (zhīdào)", + "wordSecond": "wiedzieć", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "懂 (dǒng)", + "wordSecond": "rozumieć", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "买 (mǎi)", + "wordSecond": "kupować", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "卖 (mài)", + "wordSecond": "sprzedawać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "给 (gěi)", + "wordSecond": "dawać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "拿 (ná)", + "wordSecond": "brać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "打开 (dǎkāi)", + "wordSecond": "otwierać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "关闭 (guānbì)", + "wordSecond": "zamykać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "开始 (kāishǐ)", + "wordSecond": "zaczynać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "结束 (jiéshù)", + "wordSecond": "kończyć", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "帮助 (bāngzhù)", + "wordSecond": "pomagać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "问 (wèn)", + "wordSecond": "pytać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "回答 (huídá)", + "wordSecond": "odpowiadać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "找 (zhǎo)", + "wordSecond": "szukać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "找到 (zhǎodào)", + "wordSecond": "znajdować", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "等 (děng)", + "wordSecond": "czekać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "住 (zhù)", + "wordSecond": "mieszkać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "生活 (shēnghuó)", + "wordSecond": "żyć", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "需要 (xūyào)", + "wordSecond": "potrzebować", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "用 (yòng)", + "wordSecond": "używać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "洗 (xǐ)", + "wordSecond": "myć", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "打扫 (dǎsǎo)", + "wordSecond": "sprzątać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "煮 (zhǔ)", + "wordSecond": "gotować", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "穿 (chuān)", + "wordSecond": "nosić (ubranie)", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "脱 (tuō)", + "wordSecond": "zdejmować", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "洗澡 (xǐzǎo)", + "wordSecond": "kąpać się", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "刷牙 (shuāyá)", + "wordSecond": "myć zęby", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "梳头 (shūtóu)", + "wordSecond": "czesać się", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "开车 (kāichē)", + "wordSecond": "prowadzić samochód", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "骑 (qí)", + "wordSecond": "jeździć (na rowerze, koniu)", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "飞 (fēi)", + "wordSecond": "latać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "游泳 (yóuyǒng)", + "wordSecond": "pływać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "跳舞 (tiàowǔ)", + "wordSecond": "tańczyć", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "唱歌 (chànggē)", + "wordSecond": "śpiewać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "笑 (xiào)", + "wordSecond": "śmiać się", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "哭 (kū)", + "wordSecond": "płakać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "叫 (jiào)", + "wordSecond": "wołać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "喊 (hǎn)", + "wordSecond": "krzyczeć", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "闻 (wén)", + "wordSecond": "wąchać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "尝 (cháng)", + "wordSecond": "próbować (smak)", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "摸 (mō)", + "wordSecond": "dotykać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "抱 (bào)", + "wordSecond": "przytulać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "吻 (wěn)", + "wordSecond": "całować", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "谢谢 (xièxie)", + "wordSecond": "dziękować", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "对不起 (duìbuqǐ)", + "wordSecond": "przepraszać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "欢迎 (huānyíng)", + "wordSecond": "witać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "再见 (zàijiàn)", + "wordSecond": "żegnać się", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "介绍 (jièshào)", + "wordSecond": "przedstawiać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "认识 (rènshi)", + "wordSecond": "poznawać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "忘记 (wàngjì)", + "wordSecond": "zapominać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "记住 (jìzhù)", + "wordSecond": "pamiętać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "相信 (xiāngxìn)", + "wordSecond": "wierzyć", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "希望 (xīwàng)", + "wordSecond": "mieć nadzieję", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "害怕 (hàipà)", + "wordSecond": "bać się", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "生气 (shēngqì)", + "wordSecond": "złościć się", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "累 (lèi)", + "wordSecond": "być zmęczonym", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "饿 (è)", + "wordSecond": "być głodnym", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "渴 (kě)", + "wordSecond": "być spragnionym", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "病 (bìng)", + "wordSecond": "być chorym", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "休息 (xiūxi)", + "wordSecond": "odpoczywać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "锻炼 (duànliàn)", + "wordSecond": "ćwiczyć", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "赢 (yíng)", + "wordSecond": "wygrać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "输 (shū)", + "wordSecond": "przegrać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "比赛 (bǐsài)", + "wordSecond": "rywalizować", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "旅行 (lǚxíng)", + "wordSecond": "podróżować", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "参观 (cānguān)", + "wordSecond": "zwiedzać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "拍照 (pāizhào)", + "wordSecond": "robić zdjęcia", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "画画 (huàhuà)", + "wordSecond": "rysować", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "种植 (zhòngzhí)", + "wordSecond": "uprawiać (rośliny)", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "喂养 (wèiyǎng)", + "wordSecond": "karmić", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "修理 (xiūlǐ)", + "wordSecond": "naprawiać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "建造 (jiànzào)", + "wordSecond": "budować", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "改变 (gǎibiàn)", + "wordSecond": "zmieniać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "停止 (tíngzhǐ)", + "wordSecond": "zatrzymywać się", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "继续 (jìxù)", + "wordSecond": "kontynuować", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "决定 (juédìng)", + "wordSecond": "decydować", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "选择 (xuǎnzé)", + "wordSecond": "wybierać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "尝试 (chángshì)", + "wordSecond": "próbować (coś zrobić)", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "成功 (chénggōng)", + "wordSecond": "odnosić sukces", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "失败 (shībài)", + "wordSecond": "ponosić porażkę", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "出生 (chūshēng)", + "wordSecond": "rodzić się", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "死亡 (sǐwáng)", + "wordSecond": "umierać", + "createdAt": "2026-02-19T12:37:09.191Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_intermediate_en_es_B1.json b/output/2026_02_19_verbs_intermediate_en_es_B1.json new file mode 100644 index 0000000..2c8f807 --- /dev/null +++ b/output/2026_02_19_verbs_intermediate_en_es_B1.json @@ -0,0 +1,1397 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:48:05.487Z", + "metadata": { + "itemCount": 106, + "categoryCount": 1, + "exportScope": "Category: Verbs - Intermediate" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Intermediate" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "think", + "wordSecond": "pensar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "believe", + "wordSecond": "creer", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "imagine", + "wordSecond": "imaginar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "remember", + "wordSecond": "recordar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "forget", + "wordSecond": "olvidar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "understand", + "wordSecond": "comprender", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "explain", + "wordSecond": "explicar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "argue", + "wordSecond": "discutir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "apologize", + "wordSecond": "disculparse", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "convince", + "wordSecond": "convencer", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "negotiate", + "wordSecond": "negociar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "agree", + "wordSecond": "acordar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "disagree", + "wordSecond": "discrepar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "suggest", + "wordSecond": "sugerir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "recommend", + "wordSecond": "recomendar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "improve", + "wordSecond": "mejorar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "destroy", + "wordSecond": "destruir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "transform", + "wordSecond": "transformar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "develop", + "wordSecond": "desarrollar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "increase", + "wordSecond": "aumentar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "decrease", + "wordSecond": "disminuir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "change", + "wordSecond": "cambiar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "manage", + "wordSecond": "gestionar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "evaluate", + "wordSecond": "evaluar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "implement", + "wordSecond": "implementar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "contribute", + "wordSecond": "contribuir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "organize", + "wordSecond": "organizar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "plan", + "wordSecond": "planificar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "decide", + "wordSecond": "decidir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "choose", + "wordSecond": "elegir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "select", + "wordSecond": "seleccionar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "compare", + "wordSecond": "comparar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "analyze", + "wordSecond": "analizar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "solve", + "wordSecond": "resolver", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "create", + "wordSecond": "crear", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "design", + "wordSecond": "diseñar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "build", + "wordSecond": "construir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "repair", + "wordSecond": "reparar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "install", + "wordSecond": "instalar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "operate", + "wordSecond": "operar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "control", + "wordSecond": "controlar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "adjust", + "wordSecond": "ajustar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "measure", + "wordSecond": "medir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "calculate", + "wordSecond": "calcular", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "estimate", + "wordSecond": "estimar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "investigate", + "wordSecond": "investigar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "research", + "wordSecond": "investigar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "discover", + "wordSecond": "descubrir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "invent", + "wordSecond": "inventar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "prove", + "wordSecond": "demostrar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "test", + "wordSecond": "probar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "examine", + "wordSecond": "examinar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "observe", + "wordSecond": "observar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "notice", + "wordSecond": "notar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "recognize", + "wordSecond": "reconocer", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "identify", + "wordSecond": "identificar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "describe", + "wordSecond": "describir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "report", + "wordSecond": "informar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "announce", + "wordSecond": "anunciar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "advertise", + "wordSecond": "anunciar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "promote", + "wordSecond": "promocionar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sell", + "wordSecond": "vender", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "buy", + "wordSecond": "comprar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "order", + "wordSecond": "pedir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "request", + "wordSecond": "solicitar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "apply", + "wordSecond": "aplicar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hire", + "wordSecond": "contratar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "train", + "wordSecond": "capacitar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "teach", + "wordSecond": "enseñar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "learn", + "wordSecond": "aprender", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "study", + "wordSecond": "estudiar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "practice", + "wordSecond": "practicar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "repeat", + "wordSecond": "repetir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "review", + "wordSecond": "revisar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "correct", + "wordSecond": "corregir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "edit", + "wordSecond": "editar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "translate", + "wordSecond": "traducir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "interpret", + "wordSecond": "interpretar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "communicate", + "wordSecond": "comunicar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "discuss", + "wordSecond": "debatir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "participate", + "wordSecond": "participar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cooperate", + "wordSecond": "cooperar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "collaborate", + "wordSecond": "colaborar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "support", + "wordSecond": "apoyar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "encourage", + "wordSecond": "alentar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "motivate", + "wordSecond": "motivar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "inspire", + "wordSecond": "inspirar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "influence", + "wordSecond": "influir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "affect", + "wordSecond": "afectar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cause", + "wordSecond": "causar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "prevent", + "wordSecond": "prevenir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "protect", + "wordSecond": "proteger", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "defend", + "wordSecond": "defender", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "attack", + "wordSecond": "atacar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "compete", + "wordSecond": "competir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "win", + "wordSecond": "ganar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lose", + "wordSecond": "perder", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "risk", + "wordSecond": "arriesgar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "invest", + "wordSecond": "invertir", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "save", + "wordSecond": "ahorrar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "spend", + "wordSecond": "gastar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "earn", + "wordSecond": "ganar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "borrow", + "wordSecond": "pedir prestado", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lend", + "wordSecond": "prestar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "owe", + "wordSecond": "deber", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "pay", + "wordSecond": "pagar", + "createdAt": "2026-02-19T15:48:05.487Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_intermediate_en_pt_B1.json b/output/2026_02_19_verbs_intermediate_en_pt_B1.json new file mode 100644 index 0000000..5737b92 --- /dev/null +++ b/output/2026_02_19_verbs_intermediate_en_pt_B1.json @@ -0,0 +1,1475 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:48:25.297Z", + "metadata": { + "itemCount": 112, + "categoryCount": 1, + "exportScope": "Category: Verbs - Intermediate" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Intermediate" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "think", + "wordSecond": "pensar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "believe", + "wordSecond": "acreditar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "imagine", + "wordSecond": "imaginar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "remember", + "wordSecond": "lembrar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "forget", + "wordSecond": "esquecer", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "understand", + "wordSecond": "entender", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "explain", + "wordSecond": "explicar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "decide", + "wordSecond": "decidir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "choose", + "wordSecond": "escolher", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "prefer", + "wordSecond": "preferir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "argue", + "wordSecond": "discutir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "apologize", + "wordSecond": "pedir desculpas", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "convince", + "wordSecond": "convencer", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "negotiate", + "wordSecond": "negociar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "agree", + "wordSecond": "concordar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "disagree", + "wordSecond": "discordar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "suggest", + "wordSecond": "sugerir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "invite", + "wordSecond": "convidar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "refuse", + "wordSecond": "recusar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "accept", + "wordSecond": "aceitar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "improve", + "wordSecond": "melhorar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "destroy", + "wordSecond": "destruir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "transform", + "wordSecond": "transformar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "develop", + "wordSecond": "desenvolver", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "increase", + "wordSecond": "aumentar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "decrease", + "wordSecond": "diminuir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "change", + "wordSecond": "mudar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "grow", + "wordSecond": "crescer", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "reduce", + "wordSecond": "reduzir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "expand", + "wordSecond": "expandir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "manage", + "wordSecond": "gerenciar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "evaluate", + "wordSecond": "avaliar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "implement", + "wordSecond": "implementar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "contribute", + "wordSecond": "contribuir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "organize", + "wordSecond": "organizar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "plan", + "wordSecond": "planejar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "create", + "wordSecond": "criar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "solve", + "wordSecond": "resolver", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "analyze", + "wordSecond": "analisar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "report", + "wordSecond": "relatar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "discuss", + "wordSecond": "discutir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "present", + "wordSecond": "apresentar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "train", + "wordSecond": "treinar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hire", + "wordSecond": "contratar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fire", + "wordSecond": "demitir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "invest", + "wordSecond": "investir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "earn", + "wordSecond": "ganhar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "spend", + "wordSecond": "gastar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "save", + "wordSecond": "economizar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "borrow", + "wordSecond": "emprestar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lend", + "wordSecond": "emprestar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "compare", + "wordSecond": "comparar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "describe", + "wordSecond": "descrever", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "define", + "wordSecond": "definir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "identify", + "wordSecond": "identificar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "recognize", + "wordSecond": "reconhecer", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "realize", + "wordSecond": "perceber", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "notice", + "wordSecond": "notar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "observe", + "wordSecond": "observar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "examine", + "wordSecond": "examinar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "research", + "wordSecond": "pesquisar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "discover", + "wordSecond": "descobrir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "invent", + "wordSecond": "inventar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "design", + "wordSecond": "projetar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "build", + "wordSecond": "construir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "repair", + "wordSecond": "consertar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "maintain", + "wordSecond": "manter", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "operate", + "wordSecond": "operar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "control", + "wordSecond": "controlar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "adjust", + "wordSecond": "ajustar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "calibrate", + "wordSecond": "calibrar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "install", + "wordSecond": "instalar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "configure", + "wordSecond": "configurar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "update", + "wordSecond": "atualizar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "upgrade", + "wordSecond": "atualizar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "download", + "wordSecond": "baixar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "upload", + "wordSecond": "carregar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "share", + "wordSecond": "compartilhar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "connect", + "wordSecond": "conectar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "disconnect", + "wordSecond": "desconectar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "register", + "wordSecond": "registrar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "log in", + "wordSecond": "entrar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "log out", + "wordSecond": "sair", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "search", + "wordSecond": "buscar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "filter", + "wordSecond": "filtrar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sort", + "wordSecond": "ordenar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "calculate", + "wordSecond": "calcular", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "measure", + "wordSecond": "medir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "weigh", + "wordSecond": "pesar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "count", + "wordSecond": "contar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "estimate", + "wordSecond": "estimar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "predict", + "wordSecond": "prever", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "forecast", + "wordSecond": "prever", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "risk", + "wordSecond": "arriscar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "guarantee", + "wordSecond": "garantir", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "promise", + "wordSecond": "prometer", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "threaten", + "wordSecond": "ameaçar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "warn", + "wordSecond": "avisar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "advise", + "wordSecond": "aconselhar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "recommend", + "wordSecond": "recomendar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "encourage", + "wordSecond": "incentivar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "motivate", + "wordSecond": "motivar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "inspire", + "wordSecond": "inspirar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "admire", + "wordSecond": "admirar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "respect", + "wordSecond": "respeitar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "trust", + "wordSecond": "confiar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "doubt", + "wordSecond": "duvidar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "suspect", + "wordSecond": "suspeitar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "investigate", + "wordSecond": "investigar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100109, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "prove", + "wordSecond": "provar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100110, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "confirm", + "wordSecond": "confirmar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + }, + { + "id": 100111, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "deny", + "wordSecond": "negar", + "createdAt": "2026-02-19T15:48:25.297Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + }, + { + "vocabularyItemId": 100109, + "stage": "NEW" + }, + { + "vocabularyItemId": 100110, + "stage": "NEW" + }, + { + "vocabularyItemId": 100111, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_verbs_intermediate_es_pt_B1.json b/output/2026_02_19_verbs_intermediate_es_pt_B1.json new file mode 100644 index 0000000..b5fe715 --- /dev/null +++ b/output/2026_02_19_verbs_intermediate_es_pt_B1.json @@ -0,0 +1,1449 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:48:47.645Z", + "metadata": { + "itemCount": 110, + "categoryCount": 1, + "exportScope": "Category: Verbs - Intermediate" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Verbs - Intermediate" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pensar", + "wordSecond": "pensar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "creer", + "wordSecond": "acreditar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "imaginar", + "wordSecond": "imaginar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "recordar", + "wordSecond": "lembrar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "olvidar", + "wordSecond": "esquecer", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "entender", + "wordSecond": "entender", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aprender", + "wordSecond": "aprender", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "enseñar", + "wordSecond": "ensinar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "explicar", + "wordSecond": "explicar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "discutir", + "wordSecond": "discutir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "argumentar", + "wordSecond": "argumentar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "convencer", + "wordSecond": "convencer", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "negociar", + "wordSecond": "negociar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "acordar", + "wordSecond": "combinar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "disculparse", + "wordSecond": "desculpar-se", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "perdonar", + "wordSecond": "perdoar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "saludar", + "wordSecond": "cumprimentar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "presentar", + "wordSecond": "apresentar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "invitar", + "wordSecond": "convidar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rechazar", + "wordSecond": "recusar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aceptar", + "wordSecond": "aceitar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sugerir", + "wordSecond": "sugerir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "recomendar", + "wordSecond": "recomendar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "avisar", + "wordSecond": "avisar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "advertir", + "wordSecond": "advertir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mejorar", + "wordSecond": "melhorar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "empeorar", + "wordSecond": "piorar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cambiar", + "wordSecond": "mudar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "transformar", + "wordSecond": "transformar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "desarrollar", + "wordSecond": "desenvolver", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "crecer", + "wordSecond": "crescer", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "disminuir", + "wordSecond": "diminuir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aumentar", + "wordSecond": "aumentar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "destruir", + "wordSecond": "destruir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "construir", + "wordSecond": "construir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reparar", + "wordSecond": "consertar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "proteger", + "wordSecond": "proteger", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dañar", + "wordSecond": "danificar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "organizar", + "wordSecond": "organizar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "planificar", + "wordSecond": "planejar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "preparar", + "wordSecond": "preparar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "comenzar", + "wordSecond": "começar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "terminar", + "wordSecond": "terminar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "continuar", + "wordSecond": "continuar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "interrumpir", + "wordSecond": "interromper", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gestionar", + "wordSecond": "gerenciar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "administrar", + "wordSecond": "administrar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "dirigir", + "wordSecond": "dirigir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "supervisar", + "wordSecond": "supervisionar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "coordinar", + "wordSecond": "coordenar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100050, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "evaluar", + "wordSecond": "avaliar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100051, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "analizar", + "wordSecond": "analisar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100052, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "comparar", + "wordSecond": "comparar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100053, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "seleccionar", + "wordSecond": "selecionar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100054, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "contratar", + "wordSecond": "contratar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100055, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "despedir", + "wordSecond": "demitir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100056, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "renunciar", + "wordSecond": "pedir demissão", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100057, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "trabajar", + "wordSecond": "trabalhar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100058, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "colaborar", + "wordSecond": "colaborar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100059, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "contribuir", + "wordSecond": "contribuir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100060, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "participar", + "wordSecond": "participar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100061, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "asistir", + "wordSecond": "assistir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100062, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ausentarse", + "wordSecond": "ausentar-se", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100063, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "implementar", + "wordSecond": "implementar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100064, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aplicar", + "wordSecond": "aplicar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100065, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "crear", + "wordSecond": "criar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100066, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "inventar", + "wordSecond": "inventar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100067, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "diseñar", + "wordSecond": "projetar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100068, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "producir", + "wordSecond": "produzir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100069, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fabricar", + "wordSecond": "fabricar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100070, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "vender", + "wordSecond": "vender", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100071, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "comprar", + "wordSecond": "comprar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100072, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "pagar", + "wordSecond": "pagar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100073, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cobrar", + "wordSecond": "cobrar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100074, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "invertir", + "wordSecond": "investir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100075, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ahorrar", + "wordSecond": "economizar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100076, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "gastar", + "wordSecond": "gastar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100077, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "viajar", + "wordSecond": "viajar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100078, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "visitar", + "wordSecond": "visitar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100079, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "explorar", + "wordSecond": "explorar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100080, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "descubrir", + "wordSecond": "descobrir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100081, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "buscar", + "wordSecond": "procurar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100082, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "encontrar", + "wordSecond": "encontrar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100083, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "perder", + "wordSecond": "perder", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100084, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "llegar", + "wordSecond": "chegar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100085, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "salir", + "wordSecond": "sair", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100086, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "partir", + "wordSecond": "partir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100087, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "regresar", + "wordSecond": "voltar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100088, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "quedarse", + "wordSecond": "ficar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100089, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "alojarse", + "wordSecond": "hospedar-se", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100090, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "reservar", + "wordSecond": "reservar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100091, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cancelar", + "wordSecond": "cancelar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100092, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "confirmar", + "wordSecond": "confirmar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100093, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "comunicar", + "wordSecond": "comunicar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100094, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "expresar", + "wordSecond": "expressar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100095, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "escuchar", + "wordSecond": "escutar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100096, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "observar", + "wordSecond": "observar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100097, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "notar", + "wordSecond": "notar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100098, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sentir", + "wordSecond": "sentir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100099, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sufrir", + "wordSecond": "sofrer", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100100, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sorprender", + "wordSecond": "surpreender", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100101, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "preocupar", + "wordSecond": "preocupar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100102, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "relajarse", + "wordSecond": "relaxar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100103, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "descansar", + "wordSecond": "descansar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100104, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "esperar", + "wordSecond": "esperar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100105, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "intentar", + "wordSecond": "tentar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100106, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lograr", + "wordSecond": "conseguir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100107, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fracasar", + "wordSecond": "fracassar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100108, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "arriesgar", + "wordSecond": "arriscar", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + }, + { + "id": 100109, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "decidir", + "wordSecond": "decidir", + "createdAt": "2026-02-19T15:48:47.645Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + }, + { + "vocabularyItemId": 100050, + "stage": "NEW" + }, + { + "vocabularyItemId": 100051, + "stage": "NEW" + }, + { + "vocabularyItemId": 100052, + "stage": "NEW" + }, + { + "vocabularyItemId": 100053, + "stage": "NEW" + }, + { + "vocabularyItemId": 100054, + "stage": "NEW" + }, + { + "vocabularyItemId": 100055, + "stage": "NEW" + }, + { + "vocabularyItemId": 100056, + "stage": "NEW" + }, + { + "vocabularyItemId": 100057, + "stage": "NEW" + }, + { + "vocabularyItemId": 100058, + "stage": "NEW" + }, + { + "vocabularyItemId": 100059, + "stage": "NEW" + }, + { + "vocabularyItemId": 100060, + "stage": "NEW" + }, + { + "vocabularyItemId": 100061, + "stage": "NEW" + }, + { + "vocabularyItemId": 100062, + "stage": "NEW" + }, + { + "vocabularyItemId": 100063, + "stage": "NEW" + }, + { + "vocabularyItemId": 100064, + "stage": "NEW" + }, + { + "vocabularyItemId": 100065, + "stage": "NEW" + }, + { + "vocabularyItemId": 100066, + "stage": "NEW" + }, + { + "vocabularyItemId": 100067, + "stage": "NEW" + }, + { + "vocabularyItemId": 100068, + "stage": "NEW" + }, + { + "vocabularyItemId": 100069, + "stage": "NEW" + }, + { + "vocabularyItemId": 100070, + "stage": "NEW" + }, + { + "vocabularyItemId": 100071, + "stage": "NEW" + }, + { + "vocabularyItemId": 100072, + "stage": "NEW" + }, + { + "vocabularyItemId": 100073, + "stage": "NEW" + }, + { + "vocabularyItemId": 100074, + "stage": "NEW" + }, + { + "vocabularyItemId": 100075, + "stage": "NEW" + }, + { + "vocabularyItemId": 100076, + "stage": "NEW" + }, + { + "vocabularyItemId": 100077, + "stage": "NEW" + }, + { + "vocabularyItemId": 100078, + "stage": "NEW" + }, + { + "vocabularyItemId": 100079, + "stage": "NEW" + }, + { + "vocabularyItemId": 100080, + "stage": "NEW" + }, + { + "vocabularyItemId": 100081, + "stage": "NEW" + }, + { + "vocabularyItemId": 100082, + "stage": "NEW" + }, + { + "vocabularyItemId": 100083, + "stage": "NEW" + }, + { + "vocabularyItemId": 100084, + "stage": "NEW" + }, + { + "vocabularyItemId": 100085, + "stage": "NEW" + }, + { + "vocabularyItemId": 100086, + "stage": "NEW" + }, + { + "vocabularyItemId": 100087, + "stage": "NEW" + }, + { + "vocabularyItemId": 100088, + "stage": "NEW" + }, + { + "vocabularyItemId": 100089, + "stage": "NEW" + }, + { + "vocabularyItemId": 100090, + "stage": "NEW" + }, + { + "vocabularyItemId": 100091, + "stage": "NEW" + }, + { + "vocabularyItemId": 100092, + "stage": "NEW" + }, + { + "vocabularyItemId": 100093, + "stage": "NEW" + }, + { + "vocabularyItemId": 100094, + "stage": "NEW" + }, + { + "vocabularyItemId": 100095, + "stage": "NEW" + }, + { + "vocabularyItemId": 100096, + "stage": "NEW" + }, + { + "vocabularyItemId": 100097, + "stage": "NEW" + }, + { + "vocabularyItemId": 100098, + "stage": "NEW" + }, + { + "vocabularyItemId": 100099, + "stage": "NEW" + }, + { + "vocabularyItemId": 100100, + "stage": "NEW" + }, + { + "vocabularyItemId": 100101, + "stage": "NEW" + }, + { + "vocabularyItemId": 100102, + "stage": "NEW" + }, + { + "vocabularyItemId": 100103, + "stage": "NEW" + }, + { + "vocabularyItemId": 100104, + "stage": "NEW" + }, + { + "vocabularyItemId": 100105, + "stage": "NEW" + }, + { + "vocabularyItemId": 100106, + "stage": "NEW" + }, + { + "vocabularyItemId": 100107, + "stage": "NEW" + }, + { + "vocabularyItemId": 100108, + "stage": "NEW" + }, + { + "vocabularyItemId": 100109, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_de_fr_A1.json b/output/2026_02_19_weather_seasons_de_fr_A1.json new file mode 100644 index 0000000..7e610c2 --- /dev/null +++ b/output/2026_02_19_weather_seasons_de_fr_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:13:42.714Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Sonne", + "wordSecond": "soleil", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Regen", + "wordSecond": "pluie", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schnee", + "wordSecond": "neige", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wind", + "wordSecond": "vent", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wolke", + "wordSecond": "nuage", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Nebel", + "wordSecond": "brouillard", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Sturm", + "wordSecond": "tempête", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Blitz", + "wordSecond": "éclair", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Donner", + "wordSecond": "tonnerre", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Regenbogen", + "wordSecond": "arc-en-ciel", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "heiß", + "wordSecond": "chaud", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "warm", + "wordSecond": "chaud", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "kühl", + "wordSecond": "frais", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "kalt", + "wordSecond": "froid", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "eiskalt", + "wordSecond": "gelé", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "sonnig", + "wordSecond": "ensoleillé", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "wolkig", + "wordSecond": "nuageux", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "regnerisch", + "wordSecond": "pluvieux", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "schneereich", + "wordSecond": "neigeux", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "windig", + "wordSecond": "venteux", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "neblig", + "wordSecond": "brumeux", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "stürmisch", + "wordSecond": "orageux", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Frühling", + "wordSecond": "printemps", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Sommer", + "wordSecond": "été", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Herbst", + "wordSecond": "automne", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Winter", + "wordSecond": "hiver", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hagel", + "wordSecond": "grêle", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Eis", + "wordSecond": "glace", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Frost", + "wordSecond": "gel", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Hitze", + "wordSecond": "chaleur", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Temperatur", + "wordSecond": "température", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wetter", + "wordSecond": "temps", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Jahreszeit", + "wordSecond": "saison", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Himmel", + "wordSecond": "ciel", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wolken", + "wordSecond": "nuages", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Regenschauer", + "wordSecond": "averse", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schneeflocke", + "wordSecond": "flocon", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Gewitter", + "wordSecond": "orage", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Niederschlag", + "wordSecond": "précipitation", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Sonnenschein", + "wordSecond": "ensoleillement", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Schatten", + "wordSecond": "ombre", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Feuchtigkeit", + "wordSecond": "humidité", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Trockenheit", + "wordSecond": "sécheresse", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Überschwemmung", + "wordSecond": "inondation", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Dürre", + "wordSecond": "sécheresse", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Luft", + "wordSecond": "air", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Wettervorhersage", + "wordSecond": "météo", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Morgen", + "wordSecond": "matin", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Abend", + "wordSecond": "soir", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 14, + "wordFirst": "Nacht", + "wordSecond": "nuit", + "createdAt": "2026-02-19T15:13:42.714Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_de_it_A1.json b/output/2026_02_19_weather_seasons_de_it_A1.json new file mode 100644 index 0000000..8436513 --- /dev/null +++ b/output/2026_02_19_weather_seasons_de_it_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:13:53.902Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sonne", + "wordSecond": "sole", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Regen", + "wordSecond": "pioggia", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schnee", + "wordSecond": "neve", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wind", + "wordSecond": "vento", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wolke", + "wordSecond": "nuvola", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Nebel", + "wordSecond": "nebbia", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sturm", + "wordSecond": "tempesta", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Blitz", + "wordSecond": "fulmine", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Donner", + "wordSecond": "tuono", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Regenbogen", + "wordSecond": "arcobaleno", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "heiß", + "wordSecond": "caldo", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "warm", + "wordSecond": "caldo", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "kühl", + "wordSecond": "fresco", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "kalt", + "wordSecond": "freddo", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "eiskalt", + "wordSecond": "gelido", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "sonnig", + "wordSecond": "soleggiato", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "wolkig", + "wordSecond": "nuvoloso", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "regnerisch", + "wordSecond": "piovoso", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "schneereich", + "wordSecond": "nevoso", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "windig", + "wordSecond": "ventoso", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "neblig", + "wordSecond": "nebbioso", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "stürmisch", + "wordSecond": "tempestoso", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Frühling", + "wordSecond": "primavera", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sommer", + "wordSecond": "estate", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Herbst", + "wordSecond": "autunno", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Winter", + "wordSecond": "inverno", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hagel", + "wordSecond": "grandine", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Eis", + "wordSecond": "ghiaccio", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Frost", + "wordSecond": "brina", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Hitze", + "wordSecond": "calore", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Kälte", + "wordSecond": "freddo", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Temperatur", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wetter", + "wordSecond": "tempo", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Jahreszeit", + "wordSecond": "stagione", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Himmel", + "wordSecond": "cielo", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wolkenbruch", + "wordSecond": "acquazzone", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schauer", + "wordSecond": "rovescio", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schneeflocke", + "wordSecond": "fiocco di neve", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Regentropfen", + "wordSecond": "goccia di pioggia", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Sonnenschein", + "wordSecond": "sole", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wolkenkratzer", + "wordSecond": "grattacielo", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Wettervorhersage", + "wordSecond": "previsioni del tempo", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Gewitter", + "wordSecond": "temporale", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Überschwemmung", + "wordSecond": "inondazione", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Dürre", + "wordSecond": "siccità", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Tau", + "wordSecond": "rugiada", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Luft", + "wordSecond": "aria", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Feuchtigkeit", + "wordSecond": "umidità", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Niederschlag", + "wordSecond": "precipitazione", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 20, + "wordFirst": "Schneesturm", + "wordSecond": "tempesta di neve", + "createdAt": "2026-02-19T15:13:53.902Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_de_ja_A1.json b/output/2026_02_19_weather_seasons_de_ja_A1.json new file mode 100644 index 0000000..0c007f2 --- /dev/null +++ b/output/2026_02_19_weather_seasons_de_ja_A1.json @@ -0,0 +1,525 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:14:10.473Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "sonnig", + "wordSecond": "晴れ (はれ, hare)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "wolkig", + "wordSecond": "曇り (くもり, kumori)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "regnerisch", + "wordSecond": "雨 (あめ, ame)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "schneeig", + "wordSecond": "雪 (ゆき, yuki)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "windig", + "wordSecond": "風 (かぜ, kaze)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "neblig", + "wordSecond": "霧 (きり, kiri)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "stürmisch", + "wordSecond": "嵐 (あらし, arashi)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "heiß", + "wordSecond": "暑い (あつい, atsui)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "warm", + "wordSecond": "暖かい (あたたかい, atatakai)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "kühl", + "wordSecond": "涼しい (すずしい, suzushii)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "kalt", + "wordSecond": "寒い (さむい, samui)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "eiskalt", + "wordSecond": "凍える (こごえる, kogoeru)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Frühling", + "wordSecond": "春 (はる, haru)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Sommer", + "wordSecond": "夏 (なつ, natsu)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Herbst", + "wordSecond": "秋 (あき, aki)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Winter", + "wordSecond": "冬 (ふゆ, fuyu)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Donner", + "wordSecond": "雷 (かみなり, kaminari)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Blitz", + "wordSecond": "稲妻 (いなずま, inazuma)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Regenbogen", + "wordSecond": "虹 (にじ, niji)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Flut", + "wordSecond": "洪水 (こうずい, kōzui)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Dürre", + "wordSecond": "干ばつ (かんばつ, kanbatsu)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wetter", + "wordSecond": "天気 (てんき, tenki)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Sonne", + "wordSecond": "太陽 (たいよう, taiyō)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wolke", + "wordSecond": "雲 (くも, kumo)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Regen", + "wordSecond": "雨 (あめ, ame)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Schnee", + "wordSecond": "雪 (ゆき, yuki)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wind", + "wordSecond": "風 (かぜ, kaze)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Nebel", + "wordSecond": "霧 (きり, kiri)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Sturm", + "wordSecond": "嵐 (あらし, arashi)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hitze", + "wordSecond": "熱 (ねつ, netsu)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Wärme", + "wordSecond": "暖かさ (あたたかさ, atatakasa)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Kälte", + "wordSecond": "寒さ (さむさ, samusa)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Eis", + "wordSecond": "氷 (こおり, kōri)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 21, + "wordFirst": "Hagel", + "wordSecond": "雹 (ひょう, hyō)", + "createdAt": "2026-02-19T15:14:10.473Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_de_ko_A1.json b/output/2026_02_19_weather_seasons_de_ko_A1.json new file mode 100644 index 0000000..97d7c97 --- /dev/null +++ b/output/2026_02_19_weather_seasons_de_ko_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:14:38.741Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Sonne", + "wordSecond": "해 (hae)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Regen", + "wordSecond": "비 (bi)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schnee", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wolke", + "wordSecond": "구름 (gureum)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wind", + "wordSecond": "바람 (baram)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Nebel", + "wordSecond": "안개 (angae)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Sturm", + "wordSecond": "폭풍 (pokpung)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "heiß", + "wordSecond": "덥다 (deopda)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "warm", + "wordSecond": "따뜻하다 (ttatteuthada)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "kühl", + "wordSecond": "시원하다 (siwonhada)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "kalt", + "wordSecond": "춥다 (chupda)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "gefrierend", + "wordSecond": "얼다 (eolda)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "sonnig", + "wordSecond": "맑다 (makda)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "wolkig", + "wordSecond": "흐리다 (heurida)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "regnerisch", + "wordSecond": "비가 오다 (biga oda)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "schneereich", + "wordSecond": "눈이 오다 (nuni oda)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "windig", + "wordSecond": "바람이 불다 (barami bulda)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "neblig", + "wordSecond": "안개가 끼다 (angaega kkida)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "stürmisch", + "wordSecond": "폭풍우가 치다 (pokpunguga chida)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Frühling", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Sommer", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Herbst", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Winter", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Himmel", + "wordSecond": "하늘 (haneul)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Donner", + "wordSecond": "천둥 (cheondung)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Blitz", + "wordSecond": "번개 (beongae)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Regenbogen", + "wordSecond": "무지개 (mujigae)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Flut", + "wordSecond": "홍수 (hongsu)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Dürre", + "wordSecond": "가뭄 (gamum)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Eis", + "wordSecond": "얼음 (eoreum)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Hitze", + "wordSecond": "더위 (deowi)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Kälte", + "wordSecond": "추위 (chuwi)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Luft", + "wordSecond": "공기 (gonggi)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Temperatur", + "wordSecond": "온도 (ondo)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wetter", + "wordSecond": "날씨 (nalssi)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Jahreszeit", + "wordSecond": "계절 (gyejeol)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Tag", + "wordSecond": "날 (nal)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Nacht", + "wordSecond": "밤 (bam)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Morgen", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Abend", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Niederschlag", + "wordSecond": "강수량 (gangsuryang)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schauer", + "wordSecond": "소나기 (sonagi)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schneeflocke", + "wordSecond": "눈송이 (nunsongi)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Regentropfen", + "wordSecond": "빗방울 (bitbangul)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Wolkenlos", + "wordSecond": "구름 없음 (gureum eopseum)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schneeberg", + "wordSecond": "눈더미 (nundeomi)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Regenmantel", + "wordSecond": "비옷 (biot)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schirm", + "wordSecond": "우산 (usan)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Schneemann", + "wordSecond": "눈사람 (nunsaram)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 13, + "wordFirst": "Gewitter", + "wordSecond": "뇌우 (noeu)", + "createdAt": "2026-02-19T15:14:38.741Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_de_pl_A1.json b/output/2026_02_19_weather_seasons_de_pl_A1.json new file mode 100644 index 0000000..c26bfc1 --- /dev/null +++ b/output/2026_02_19_weather_seasons_de_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:14:50.139Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "sonnig", + "wordSecond": "słonecznie", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "wolkig", + "wordSecond": "pochmurnie", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "regnerisch", + "wordSecond": "deszczowo", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "schneereich", + "wordSecond": "śnieżnie", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "windig", + "wordSecond": "wietrznie", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "neblig", + "wordSecond": "mgliście", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "stürmisch", + "wordSecond": "burzowo", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "heiß", + "wordSecond": "gorąco", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "warm", + "wordSecond": "ciepło", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "kühl", + "wordSecond": "chłodno", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "kalt", + "wordSecond": "zimno", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "eiskalt", + "wordSecond": "mroźno", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Frühling", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Sommer", + "wordSecond": "lato", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Herbst", + "wordSecond": "jesień", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Winter", + "wordSecond": "zima", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Donner", + "wordSecond": "grzmot", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Blitz", + "wordSecond": "błyskawica", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Regenbogen", + "wordSecond": "tęcza", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Überschwemmung", + "wordSecond": "powódź", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Dürre", + "wordSecond": "susza", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wolke", + "wordSecond": "chmura", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Regen", + "wordSecond": "deszcz", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schnee", + "wordSecond": "śnieg", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wind", + "wordSecond": "wiatr", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Nebel", + "wordSecond": "mgła", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Sturm", + "wordSecond": "burza", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Sonne", + "wordSecond": "słońce", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Himmel", + "wordSecond": "niebo", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Temperatur", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wetter", + "wordSecond": "pogoda", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Jahreszeit", + "wordSecond": "pora roku", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schauer", + "wordSecond": "przelotny deszcz", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hagel", + "wordSecond": "grad", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Eis", + "wordSecond": "lód", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Frost", + "wordSecond": "mróz", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Hitze", + "wordSecond": "upał", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Gewitter", + "wordSecond": "burza z piorunami", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Niederschlag", + "wordSecond": "opady", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schneefall", + "wordSecond": "opady śniegu", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Regenfall", + "wordSecond": "opady deszczu", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wolkenbruch", + "wordSecond": "ulewa", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Schneesturm", + "wordSecond": "zamieć śnieżna", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Orkan", + "wordSecond": "huragan", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Tauwetter", + "wordSecond": "odwilż", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Sonnenschein", + "wordSecond": "słoneczna pogoda", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Bewölkung", + "wordSecond": "zachmurzenie", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Luftfeuchtigkeit", + "wordSecond": "wilgotność powietrza", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Wettervorhersage", + "wordSecond": "prognoza pogody", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 24, + "wordFirst": "Klima", + "wordSecond": "klimat", + "createdAt": "2026-02-19T15:14:50.139Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_de_zh_A1.json b/output/2026_02_19_weather_seasons_de_zh_A1.json new file mode 100644 index 0000000..8c5b31f --- /dev/null +++ b/output/2026_02_19_weather_seasons_de_zh_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:14:23.567Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Sonne", + "wordSecond": "太阳 (taiyang)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Regen", + "wordSecond": "雨 (yu)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schnee", + "wordSecond": "雪 (xue)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wind", + "wordSecond": "风 (feng)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wolke", + "wordSecond": "云 (yun)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Nebel", + "wordSecond": "雾 (wu)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Gewitter", + "wordSecond": "雷暴 (leibao)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Blitz", + "wordSecond": "闪电 (shandian)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Donner", + "wordSecond": "雷 (lei)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Regenbogen", + "wordSecond": "彩虹 (caihong)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "sonnig", + "wordSecond": "晴朗 (qinglang)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "wolkig", + "wordSecond": "多云 (duoyun)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "regnerisch", + "wordSecond": "下雨 (xiayu)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "schneien", + "wordSecond": "下雪 (xiaxue)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "windig", + "wordSecond": "有风 (youfeng)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "neblig", + "wordSecond": "有雾 (youwu)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "stürmisch", + "wordSecond": "暴风雨 (baofengyu)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "heiß", + "wordSecond": "热 (re)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "warm", + "wordSecond": "温暖 (wennuan)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "kühl", + "wordSecond": "凉爽 (liangshuang)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "kalt", + "wordSecond": "冷 (leng)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "gefrieren", + "wordSecond": "结冰 (jiebing)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Frühling", + "wordSecond": "春天 (chuntian)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Sommer", + "wordSecond": "夏天 (xiatian)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Herbst", + "wordSecond": "秋天 (qiutian)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Winter", + "wordSecond": "冬天 (dongtian)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hagel", + "wordSecond": "冰雹 (bingbao)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Eis", + "wordSecond": "冰 (bing)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Frost", + "wordSecond": "霜 (shuang)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tau", + "wordSecond": "露水 (lushui)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Hitze", + "wordSecond": "炎热 (yanre)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Kälte", + "wordSecond": "寒冷 (hanleng)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Temperatur", + "wordSecond": "温度 (wendu)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Himmel", + "wordSecond": "天空 (tiankong)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wetter", + "wordSecond": "天气 (tianqi)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Jahreszeit", + "wordSecond": "季节 (jijie)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Nacht", + "wordSecond": "夜晚 (yewan)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Tag", + "wordSecond": "白天 (baitian)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Morgen", + "wordSecond": "早晨 (zaochen)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Abend", + "wordSecond": "晚上 (wanshang)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Mond", + "wordSecond": "月亮 (yueliang)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Stern", + "wordSecond": "星星 (xingxing)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Wolkenbruch", + "wordSecond": "暴雨 (baoyu)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schauer", + "wordSecond": "阵雨 (zhenyu)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Nieselregen", + "wordSecond": "毛毛雨 (maomaoyu)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schneefall", + "wordSecond": "降雪 (jiangxue)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Schneesturm", + "wordSecond": "暴风雪 (baofengxue)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Dürre", + "wordSecond": "干旱 (ganhan)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Überschwemmung", + "wordSecond": "洪水 (hongshui)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 15, + "languageSecondId": 2, + "wordFirst": "Luft", + "wordSecond": "空气 (kongqi)", + "createdAt": "2026-02-19T15:14:23.567Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_en_de_A1.json b/output/2026_02_19_weather_seasons_en_de_A1.json new file mode 100644 index 0000000..7ca51b1 --- /dev/null +++ b/output/2026_02_19_weather_seasons_en_de_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:09:16.477Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sunny", + "wordSecond": "sonnig", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cloudy", + "wordSecond": "bewölkt", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "rainy", + "wordSecond": "regnerisch", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "snowy", + "wordSecond": "verschneit", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "windy", + "wordSecond": "windig", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "foggy", + "wordSecond": "neblig", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "stormy", + "wordSecond": "stürmisch", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hot", + "wordSecond": "heiß", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "warm", + "wordSecond": "warm", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cool", + "wordSecond": "kühl", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cold", + "wordSecond": "kalt", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "freezing", + "wordSecond": "eiskalt", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "spring", + "wordSecond": "Frühling", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "summer", + "wordSecond": "Sommer", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "autumn", + "wordSecond": "Herbst", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "winter", + "wordSecond": "Winter", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "thunder", + "wordSecond": "Donner", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "lightning", + "wordSecond": "Blitz", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "rainbow", + "wordSecond": "Regenbogen", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "flood", + "wordSecond": "Flut", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "drought", + "wordSecond": "Dürre", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "weather", + "wordSecond": "Wetter", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "season", + "wordSecond": "Jahreszeit", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sun", + "wordSecond": "Sonne", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "cloud", + "wordSecond": "Wolke", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "rain", + "wordSecond": "Regen", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "snow", + "wordSecond": "Schnee", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "wind", + "wordSecond": "Wind", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "fog", + "wordSecond": "Nebel", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "storm", + "wordSecond": "Sturm", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "ice", + "wordSecond": "Eis", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "frost", + "wordSecond": "Frost", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "hail", + "wordSecond": "Hagel", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sky", + "wordSecond": "Himmel", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "temperature", + "wordSecond": "Temperatur", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "degree", + "wordSecond": "Grad", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "warmth", + "wordSecond": "Wärme", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "coldness", + "wordSecond": "Kälte", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "heat", + "wordSecond": "Hitze", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "breeze", + "wordSecond": "Brise", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "gale", + "wordSecond": "Sturmwind", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "shower", + "wordSecond": "Schauer", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "drizzle", + "wordSecond": "Nieselregen", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "sleet", + "wordSecond": "Schneeregen", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "mist", + "wordSecond": "Dunst", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "dew", + "wordSecond": "Tau", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "puddle", + "wordSecond": "Pfütze", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "umbrella", + "wordSecond": "Regenschirm", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "coat", + "wordSecond": "Mantel", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 15, + "wordFirst": "scarf", + "wordSecond": "Schal", + "createdAt": "2026-02-19T15:09:16.477Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_en_es_A1.json b/output/2026_02_19_weather_seasons_en_es_A1.json new file mode 100644 index 0000000..e4852fa --- /dev/null +++ b/output/2026_02_19_weather_seasons_en_es_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:08:57.802Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sunny", + "wordSecond": "soleado", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cloudy", + "wordSecond": "nublado", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rainy", + "wordSecond": "lluvioso", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "snowy", + "wordSecond": "nevado", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "windy", + "wordSecond": "ventoso", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "foggy", + "wordSecond": "neblinoso", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "stormy", + "wordSecond": "tormentoso", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hot", + "wordSecond": "caliente", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "warm", + "wordSecond": "cálido", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cool", + "wordSecond": "fresco", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cold", + "wordSecond": "frío", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "freezing", + "wordSecond": "helado", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "spring", + "wordSecond": "primavera", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "summer", + "wordSecond": "verano", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "autumn", + "wordSecond": "otoño", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "winter", + "wordSecond": "invierno", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "thunder", + "wordSecond": "trueno", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "lightning", + "wordSecond": "relámpago", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rainbow", + "wordSecond": "arcoíris", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "flood", + "wordSecond": "inundación", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "drought", + "wordSecond": "sequía", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sun", + "wordSecond": "sol", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cloud", + "wordSecond": "nube", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "rain", + "wordSecond": "lluvia", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "snow", + "wordSecond": "nieve", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wind", + "wordSecond": "viento", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "fog", + "wordSecond": "niebla", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "storm", + "wordSecond": "tormenta", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "ice", + "wordSecond": "hielo", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "frost", + "wordSecond": "escarcha", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "hail", + "wordSecond": "granizo", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sky", + "wordSecond": "cielo", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "temperature", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "weather", + "wordSecond": "tiempo", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "season", + "wordSecond": "estación", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "heat", + "wordSecond": "calor", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "cold", + "wordSecond": "frío", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "breeze", + "wordSecond": "brisa", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "humidity", + "wordSecond": "humedad", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dry", + "wordSecond": "seco", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "wet", + "wordSecond": "mojado", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "clear", + "wordSecond": "despejado", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "overcast", + "wordSecond": "cubierto", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "drizzle", + "wordSecond": "llovizna", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "shower", + "wordSecond": "chubasco", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "blizzard", + "wordSecond": "ventisca", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "mist", + "wordSecond": "bruma", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "dew", + "wordSecond": "rocío", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "sunshine", + "wordSecond": "sol", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 3, + "wordFirst": "climate", + "wordSecond": "clima", + "createdAt": "2026-02-19T15:08:57.802Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_en_fr_A1.json b/output/2026_02_19_weather_seasons_en_fr_A1.json new file mode 100644 index 0000000..18ede85 --- /dev/null +++ b/output/2026_02_19_weather_seasons_en_fr_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:09:25.111Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sun", + "wordSecond": "soleil", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cloud", + "wordSecond": "nuage", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "rain", + "wordSecond": "pluie", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "snow", + "wordSecond": "neige", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wind", + "wordSecond": "vent", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "fog", + "wordSecond": "brouillard", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "storm", + "wordSecond": "orage", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sunny", + "wordSecond": "ensoleillé", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cloudy", + "wordSecond": "nuageux", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "rainy", + "wordSecond": "pluvieux", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "snowy", + "wordSecond": "neigeux", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "windy", + "wordSecond": "venteux", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "foggy", + "wordSecond": "brumeux", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "stormy", + "wordSecond": "orageux", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hot", + "wordSecond": "chaud", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "warm", + "wordSecond": "tiède", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cool", + "wordSecond": "frais", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "cold", + "wordSecond": "froid", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "freezing", + "wordSecond": "gelé", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "spring", + "wordSecond": "printemps", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "summer", + "wordSecond": "été", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "autumn", + "wordSecond": "automne", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "winter", + "wordSecond": "hiver", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "season", + "wordSecond": "saison", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "weather", + "wordSecond": "temps", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "temperature", + "wordSecond": "température", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sky", + "wordSecond": "ciel", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "ice", + "wordSecond": "glace", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "frost", + "wordSecond": "gel", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "hail", + "wordSecond": "grêle", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "thunder", + "wordSecond": "tonnerre", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "lightning", + "wordSecond": "éclair", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "rainbow", + "wordSecond": "arc-en-ciel", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "flood", + "wordSecond": "inondation", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "drought", + "wordSecond": "sécheresse", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "sunshine", + "wordSecond": "ensoleillement", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "breeze", + "wordSecond": "brise", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "shower", + "wordSecond": "averse", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "drizzle", + "wordSecond": "bruine", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "mist", + "wordSecond": "brume", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "humid", + "wordSecond": "humide", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "dry", + "wordSecond": "sec", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "wet", + "wordSecond": "mouillé", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "warmth", + "wordSecond": "chaleur", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "coldness", + "wordSecond": "froidure", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "day", + "wordSecond": "jour", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "night", + "wordSecond": "nuit", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "morning", + "wordSecond": "matin", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "evening", + "wordSecond": "soir", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 14, + "wordFirst": "afternoon", + "wordSecond": "après-midi", + "createdAt": "2026-02-19T15:09:25.111Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_en_it_A1.json b/output/2026_02_19_weather_seasons_en_it_A1.json new file mode 100644 index 0000000..9dae92e --- /dev/null +++ b/output/2026_02_19_weather_seasons_en_it_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:09:34.397Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sunny", + "wordSecond": "soleggiato", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cloudy", + "wordSecond": "nuvoloso", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "rainy", + "wordSecond": "piovoso", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "snowy", + "wordSecond": "nevoso", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "windy", + "wordSecond": "ventoso", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "foggy", + "wordSecond": "nebbioso", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "stormy", + "wordSecond": "tempestoso", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hot", + "wordSecond": "caldo", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "warm", + "wordSecond": "caldo", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cool", + "wordSecond": "fresco", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cold", + "wordSecond": "freddo", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "freezing", + "wordSecond": "gelido", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "spring", + "wordSecond": "primavera", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "summer", + "wordSecond": "estate", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "autumn", + "wordSecond": "autunno", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "winter", + "wordSecond": "inverno", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "thunder", + "wordSecond": "tuono", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lightning", + "wordSecond": "fulmine", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "rainbow", + "wordSecond": "arcobaleno", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "flood", + "wordSecond": "alluvione", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "drought", + "wordSecond": "siccità", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "rain", + "wordSecond": "pioggia", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "snow", + "wordSecond": "neve", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wind", + "wordSecond": "vento", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "fog", + "wordSecond": "nebbia", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "storm", + "wordSecond": "tempesta", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sun", + "wordSecond": "sole", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cloud", + "wordSecond": "nuvola", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "ice", + "wordSecond": "ghiaccio", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "frost", + "wordSecond": "brina", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "hail", + "wordSecond": "grandine", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sky", + "wordSecond": "cielo", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "weather", + "wordSecond": "tempo", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "season", + "wordSecond": "stagione", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "temperature", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "heat", + "wordSecond": "calore", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "cold", + "wordSecond": "freddo", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "breeze", + "wordSecond": "brezza", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "shower", + "wordSecond": "acquazzone", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "drizzle", + "wordSecond": "pioggerella", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "mist", + "wordSecond": "foschia", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "humidity", + "wordSecond": "umidità", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "dry", + "wordSecond": "secco", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "wet", + "wordSecond": "bagnato", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "clear", + "wordSecond": "sereno", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "overcast", + "wordSecond": "coperto", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "sunshine", + "wordSecond": "sole", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "lightning bolt", + "wordSecond": "fulmine", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "thunderstorm", + "wordSecond": "temporale", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 20, + "wordFirst": "climate", + "wordSecond": "clima", + "createdAt": "2026-02-19T15:09:34.397Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_en_ja_A1.json b/output/2026_02_19_weather_seasons_en_ja_A1.json new file mode 100644 index 0000000..904a313 --- /dev/null +++ b/output/2026_02_19_weather_seasons_en_ja_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:09:49.967Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sunny", + "wordSecond": "晴れ (はれ, hare)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cloudy", + "wordSecond": "曇り (くもり, kumori)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "rainy", + "wordSecond": "雨 (あめ, ame)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "snowy", + "wordSecond": "雪 (ゆき, yuki)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "windy", + "wordSecond": "風 (かぜ, kaze)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "foggy", + "wordSecond": "霧 (きり, kiri)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "stormy", + "wordSecond": "嵐 (あらし, arashi)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hot", + "wordSecond": "暑い (あつい, atsui)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "warm", + "wordSecond": "暖かい (あたたかい, atatakai)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cool", + "wordSecond": "涼しい (すずしい, suzushii)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cold", + "wordSecond": "寒い (さむい, samui)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "freezing", + "wordSecond": "凍える (こごえる, kogoeru)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "spring", + "wordSecond": "春 (はる, haru)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "summer", + "wordSecond": "夏 (なつ, natsu)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "autumn", + "wordSecond": "秋 (あき, aki)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "winter", + "wordSecond": "冬 (ふゆ, fuyu)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "thunder", + "wordSecond": "雷 (かみなり, kaminari)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "lightning", + "wordSecond": "稲妻 (いなずま, inazuma)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "rainbow", + "wordSecond": "虹 (にじ, niji)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "flood", + "wordSecond": "洪水 (こうずい, kōzui)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "drought", + "wordSecond": "干ばつ (かんばつ, kanbatsu)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "weather", + "wordSecond": "天気 (てんき, tenki)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "season", + "wordSecond": "季節 (きせつ, kisetsu)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sky", + "wordSecond": "空 (そら, sora)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cloud", + "wordSecond": "雲 (くも, kumo)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "rain", + "wordSecond": "雨 (あめ, ame)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "snow", + "wordSecond": "雪 (ゆき, yuki)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "wind", + "wordSecond": "風 (かぜ, kaze)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "fog", + "wordSecond": "霧 (きり, kiri)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "storm", + "wordSecond": "嵐 (あらし, arashi)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sun", + "wordSecond": "太陽 (たいよう, taiyō)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "moon", + "wordSecond": "月 (つき, tsuki)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "star", + "wordSecond": "星 (ほし, hoshi)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "ice", + "wordSecond": "氷 (こおり, kōri)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "frost", + "wordSecond": "霜 (しも, shimo)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "dew", + "wordSecond": "露 (つゆ, tsuyu)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "hail", + "wordSecond": "雹 (ひょう, hyō)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sleet", + "wordSecond": "みぞれ (みぞれ, mizore)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "typhoon", + "wordSecond": "台風 (たいふう, taifū)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "earthquake", + "wordSecond": "地震 (じしん, jishin)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "tsunami", + "wordSecond": "津波 (つなみ, tsunami)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "temperature", + "wordSecond": "温度 (おんど, ondo)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "heat", + "wordSecond": "熱 (ねつ, netsu)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "cold", + "wordSecond": "寒さ (さむさ, samusa)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "humidity", + "wordSecond": "湿度 (しつど, shitsudo)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "dry", + "wordSecond": "乾燥 (かんそう, kansō)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "wet", + "wordSecond": "湿った (しめった, shimetta)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "breeze", + "wordSecond": "そよ風 (そよかぜ, soyokaze)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "gale", + "wordSecond": "強風 (きょうふう, kyōfū)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 21, + "wordFirst": "sunshine", + "wordSecond": "日光 (にっこう, nikkō)", + "createdAt": "2026-02-19T15:09:49.967Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_en_ko_A1.json b/output/2026_02_19_weather_seasons_en_ko_A1.json new file mode 100644 index 0000000..4152a67 --- /dev/null +++ b/output/2026_02_19_weather_seasons_en_ko_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:10:16.666Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sunny", + "wordSecond": "맑다 (makda)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cloudy", + "wordSecond": "흐리다 (heurida)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "rainy", + "wordSecond": "비가 오다 (biga oda)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "snowy", + "wordSecond": "눈이 오다 (nuni oda)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "windy", + "wordSecond": "바람이 불다 (barami bulda)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "foggy", + "wordSecond": "안개가 끼다 (angaega kkida)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "stormy", + "wordSecond": "폭풍우가 치다 (pokpunguga chida)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "hot", + "wordSecond": "덥다 (deopda)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "warm", + "wordSecond": "따뜻하다 (ttatteuthada)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cool", + "wordSecond": "시원하다 (siwonhada)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cold", + "wordSecond": "춥다 (chupda)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "freezing", + "wordSecond": "얼다 (eolda)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "spring", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "summer", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "autumn", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "winter", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "thunder", + "wordSecond": "천둥 (cheondung)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "lightning", + "wordSecond": "번개 (beongae)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "rainbow", + "wordSecond": "무지개 (mujigae)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "flood", + "wordSecond": "홍수 (hongsu)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "drought", + "wordSecond": "가뭄 (gamum)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sun", + "wordSecond": "해 (hae)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cloud", + "wordSecond": "구름 (gureum)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "rain", + "wordSecond": "비 (bi)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "snow", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "wind", + "wordSecond": "바람 (baram)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "fog", + "wordSecond": "안개 (angae)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "storm", + "wordSecond": "폭풍우 (pokpungu)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "ice", + "wordSecond": "얼음 (eoreum)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "frost", + "wordSecond": "서리 (seori)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "hail", + "wordSecond": "우박 (ubak)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "sky", + "wordSecond": "하늘 (haneul)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "weather", + "wordSecond": "날씨 (nalssi)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "season", + "wordSecond": "계절 (gyejeol)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "temperature", + "wordSecond": "온도 (ondo)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "heat", + "wordSecond": "더위 (deowi)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "cold", + "wordSecond": "추위 (chuwi)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "humidity", + "wordSecond": "습기 (seupgi)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "dry", + "wordSecond": "건조하다 (geonjohada)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "wet", + "wordSecond": "젖다 (jeotda)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "clear", + "wordSecond": "맑다 (makda)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "bright", + "wordSecond": "밝다 (balgda)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "dark", + "wordSecond": "어둡다 (eodupda)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "mild", + "wordSecond": "온화하다 (onhwahada)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "severe", + "wordSecond": "심하다 (simhada)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "change", + "wordSecond": "변하다 (byeonhada)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "forecast", + "wordSecond": "예보 (yebo)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "umbrella", + "wordSecond": "우산 (usan)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "coat", + "wordSecond": "코트 (koteu)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 13, + "wordFirst": "shower", + "wordSecond": "소나기 (sonagi)", + "createdAt": "2026-02-19T15:10:16.666Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_en_pl_A1.json b/output/2026_02_19_weather_seasons_en_pl_A1.json new file mode 100644 index 0000000..2e8b413 --- /dev/null +++ b/output/2026_02_19_weather_seasons_en_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:10:27.224Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sunny", + "wordSecond": "słoneczny", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cloudy", + "wordSecond": "pochmurny", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "rainy", + "wordSecond": "deszczowy", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "snowy", + "wordSecond": "śnieżny", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "windy", + "wordSecond": "wietrzny", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "foggy", + "wordSecond": "mglisty", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "stormy", + "wordSecond": "burzowy", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "hot", + "wordSecond": "gorący", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "warm", + "wordSecond": "ciepły", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cool", + "wordSecond": "chłodny", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cold", + "wordSecond": "zimny", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "freezing", + "wordSecond": "mroźny", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "spring", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "summer", + "wordSecond": "lato", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "autumn", + "wordSecond": "jesień", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "winter", + "wordSecond": "zima", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "weather", + "wordSecond": "pogoda", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "season", + "wordSecond": "pora roku", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "rain", + "wordSecond": "deszcz", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "snow", + "wordSecond": "śnieg", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "wind", + "wordSecond": "wiatr", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "fog", + "wordSecond": "mgła", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "storm", + "wordSecond": "burza", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sun", + "wordSecond": "słońce", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "cloud", + "wordSecond": "chmura", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "ice", + "wordSecond": "lód", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "frost", + "wordSecond": "mróz", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "hail", + "wordSecond": "grad", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "thunder", + "wordSecond": "grzmot", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "lightning", + "wordSecond": "błyskawica", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "rainbow", + "wordSecond": "tęcza", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "flood", + "wordSecond": "powódź", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "drought", + "wordSecond": "susza", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sky", + "wordSecond": "niebo", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "temperature", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "heat", + "wordSecond": "upał", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "breeze", + "wordSecond": "bryza", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "shower", + "wordSecond": "przelotny deszcz", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "drizzle", + "wordSecond": "mżawka", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "blizzard", + "wordSecond": "zamieć śnieżna", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "mist", + "wordSecond": "zamglenie", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "dew", + "wordSecond": "rosa", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "sunshine", + "wordSecond": "słoneczna pogoda", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "overcast", + "wordSecond": "zachmurzenie", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "humid", + "wordSecond": "wilgotny", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "dry", + "wordSecond": "suchy", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "clear", + "wordSecond": "bezchmurny", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "bright", + "wordSecond": "jasny", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "mild", + "wordSecond": "łagodny", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 24, + "wordFirst": "chilly", + "wordSecond": "przezimny", + "createdAt": "2026-02-19T15:10:27.224Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_en_pt_A1.json b/output/2026_02_19_weather_seasons_en_pt_A1.json new file mode 100644 index 0000000..23d2ce1 --- /dev/null +++ b/output/2026_02_19_weather_seasons_en_pt_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:09:07.021Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sunny", + "wordSecond": "ensolarado", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cloudy", + "wordSecond": "nublado", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rainy", + "wordSecond": "chuvoso", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "snowy", + "wordSecond": "nevoso", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "windy", + "wordSecond": "ventoso", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "foggy", + "wordSecond": "nebuloso", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "stormy", + "wordSecond": "tempestuoso", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hot", + "wordSecond": "quente", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "warm", + "wordSecond": "morno", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cool", + "wordSecond": "fresco", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cold", + "wordSecond": "frio", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "freezing", + "wordSecond": "congelante", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "spring", + "wordSecond": "primavera", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "summer", + "wordSecond": "verão", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "autumn", + "wordSecond": "outono", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "winter", + "wordSecond": "inverno", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "thunder", + "wordSecond": "trovão", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lightning", + "wordSecond": "relâmpago", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rainbow", + "wordSecond": "arco-íris", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "flood", + "wordSecond": "inundação", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "drought", + "wordSecond": "seca", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sun", + "wordSecond": "sol", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cloud", + "wordSecond": "nuvem", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "rain", + "wordSecond": "chuva", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "snow", + "wordSecond": "neve", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wind", + "wordSecond": "vento", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "fog", + "wordSecond": "névoa", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "storm", + "wordSecond": "tempestade", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "ice", + "wordSecond": "gelo", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "frost", + "wordSecond": "geada", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "hail", + "wordSecond": "granizo", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sky", + "wordSecond": "céu", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "weather", + "wordSecond": "tempo", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "season", + "wordSecond": "estação", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "temperature", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "heat", + "wordSecond": "calor", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "cold", + "wordSecond": "frio", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "dry", + "wordSecond": "seco", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "wet", + "wordSecond": "molhado", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "humid", + "wordSecond": "úmido", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "breeze", + "wordSecond": "brisa", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "gale", + "wordSecond": "vendaval", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "mist", + "wordSecond": "névoa", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "drizzle", + "wordSecond": "garoa", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "shower", + "wordSecond": "chuvisco", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "downpour", + "wordSecond": "aguaceiro", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "lightning bolt", + "wordSecond": "raio", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "thunderstorm", + "wordSecond": "trovoada", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "sunshine", + "wordSecond": "sol", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 7, + "wordFirst": "climate", + "wordSecond": "clima", + "createdAt": "2026-02-19T15:09:07.021Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_en_zh_A1.json b/output/2026_02_19_weather_seasons_en_zh_A1.json new file mode 100644 index 0000000..a11c072 --- /dev/null +++ b/output/2026_02_19_weather_seasons_en_zh_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:10:02.614Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sunny", + "wordSecond": "晴天 (qing tian)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cloudy", + "wordSecond": "多云 (duo yun)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "rainy", + "wordSecond": "下雨 (xia yu)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "snowy", + "wordSecond": "下雪 (xia xue)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "windy", + "wordSecond": "刮风 (gua feng)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "foggy", + "wordSecond": "有雾 (you wu)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "stormy", + "wordSecond": "暴风雨 (bao feng yu)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hot", + "wordSecond": "热 (re)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "warm", + "wordSecond": "暖和 (nuan huo)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cool", + "wordSecond": "凉爽 (liang shuang)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cold", + "wordSecond": "冷 (leng)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "freezing", + "wordSecond": "冰冷 (bing leng)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "spring", + "wordSecond": "春天 (chun tian)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "summer", + "wordSecond": "夏天 (xia tian)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "autumn", + "wordSecond": "秋天 (qiu tian)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "winter", + "wordSecond": "冬天 (dong tian)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "thunder", + "wordSecond": "雷 (lei)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "lightning", + "wordSecond": "闪电 (shan dian)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "rainbow", + "wordSecond": "彩虹 (cai hong)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "flood", + "wordSecond": "洪水 (hong shui)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "drought", + "wordSecond": "干旱 (gan han)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "weather", + "wordSecond": "天气 (tian qi)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "season", + "wordSecond": "季节 (ji jie)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sun", + "wordSecond": "太阳 (tai yang)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "cloud", + "wordSecond": "云 (yun)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "rain", + "wordSecond": "雨 (yu)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "snow", + "wordSecond": "雪 (xue)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "wind", + "wordSecond": "风 (feng)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "fog", + "wordSecond": "雾 (wu)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "storm", + "wordSecond": "风暴 (feng bao)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "ice", + "wordSecond": "冰 (bing)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "frost", + "wordSecond": "霜 (shuang)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "hail", + "wordSecond": "冰雹 (bing bao)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sky", + "wordSecond": "天空 (tian kong)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "air", + "wordSecond": "空气 (kong qi)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "temperature", + "wordSecond": "温度 (wen du)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "warmth", + "wordSecond": "温暖 (wen nuan)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "coldness", + "wordSecond": "寒冷 (han leng)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "heat", + "wordSecond": "炎热 (yan re)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "breeze", + "wordSecond": "微风 (wei feng)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "gale", + "wordSecond": "大风 (da feng)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "shower", + "wordSecond": "阵雨 (zhen yu)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "drizzle", + "wordSecond": "毛毛雨 (mao mao yu)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "sleet", + "wordSecond": "雨夹雪 (yu jia xue)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "mist", + "wordSecond": "薄雾 (bao wu)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "dew", + "wordSecond": "露水 (lu shui)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "humidity", + "wordSecond": "湿度 (shi du)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "dry", + "wordSecond": "干燥 (gan zao)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "wet", + "wordSecond": "潮湿 (chao shi)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 1, + "languageSecondId": 2, + "wordFirst": "clear", + "wordSecond": "晴朗 (qing lang)", + "createdAt": "2026-02-19T15:10:02.614Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_es_de_A1.json b/output/2026_02_19_weather_seasons_es_de_A1.json new file mode 100644 index 0000000..0147ae2 --- /dev/null +++ b/output/2026_02_19_weather_seasons_es_de_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:10:47.765Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sol", + "wordSecond": "Sonne", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "nube", + "wordSecond": "Wolke", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lluvia", + "wordSecond": "Regen", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "nieve", + "wordSecond": "Schnee", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "viento", + "wordSecond": "Wind", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "niebla", + "wordSecond": "Nebel", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tormenta", + "wordSecond": "Sturm", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "soleado", + "wordSecond": "sonnig", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "nublado", + "wordSecond": "bewölkt", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "lluvioso", + "wordSecond": "regnerisch", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "nevado", + "wordSecond": "schneereich", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "ventoso", + "wordSecond": "windig", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "neblinoso", + "wordSecond": "neblig", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tempestuoso", + "wordSecond": "stürmisch", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "calor", + "wordSecond": "Hitze", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "frío", + "wordSecond": "Kälte", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "caliente", + "wordSecond": "heiß", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tibio", + "wordSecond": "warm", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "fresco", + "wordSecond": "kühl", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "frío", + "wordSecond": "kalt", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "helado", + "wordSecond": "eiskalt", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "temperatura", + "wordSecond": "Temperatur", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "primavera", + "wordSecond": "Frühling", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "verano", + "wordSecond": "Sommer", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "otoño", + "wordSecond": "Herbst", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "invierno", + "wordSecond": "Winter", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "estación", + "wordSecond": "Jahreszeit", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "día", + "wordSecond": "Tag", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "noche", + "wordSecond": "Nacht", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "cielo", + "wordSecond": "Himmel", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "arcoíris", + "wordSecond": "Regenbogen", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "relámpago", + "wordSecond": "Blitz", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "trueno", + "wordSecond": "Donner", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "inundación", + "wordSecond": "Flut", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sequía", + "wordSecond": "Dürre", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "hielo", + "wordSecond": "Eis", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "granizo", + "wordSecond": "Hagel", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "agua", + "wordSecond": "Wasser", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "luz", + "wordSecond": "Licht", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "sombra", + "wordSecond": "Schatten", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "humedad", + "wordSecond": "Feuchtigkeit", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "seco", + "wordSecond": "trocken", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "mojado", + "wordSecond": "nass", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "clima", + "wordSecond": "Wetter", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "tiempo", + "wordSecond": "Wetter", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "brillo", + "wordSecond": "Glanz", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "rayo", + "wordSecond": "Strahl", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "nublar", + "wordSecond": "bewölken", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "llover", + "wordSecond": "regnen", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 15, + "wordFirst": "nevar", + "wordSecond": "schneien", + "createdAt": "2026-02-19T15:10:47.765Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_es_fr_A1.json b/output/2026_02_19_weather_seasons_es_fr_A1.json new file mode 100644 index 0000000..9566031 --- /dev/null +++ b/output/2026_02_19_weather_seasons_es_fr_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:10:58.005Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sol", + "wordSecond": "soleil", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nube", + "wordSecond": "nuage", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lluvia", + "wordSecond": "pluie", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nieve", + "wordSecond": "neige", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "viento", + "wordSecond": "vent", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "niebla", + "wordSecond": "brouillard", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tormenta", + "wordSecond": "tempête", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "calor", + "wordSecond": "chaud", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tibio", + "wordSecond": "doux", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fresco", + "wordSecond": "frais", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "frío", + "wordSecond": "froid", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "helado", + "wordSecond": "gelé", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "soleado", + "wordSecond": "ensoleillé", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nublado", + "wordSecond": "nuageux", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "lluvioso", + "wordSecond": "pluvieux", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "nevado", + "wordSecond": "neigeux", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "ventoso", + "wordSecond": "venteux", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "brumoso", + "wordSecond": "brumeux", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tormentoso", + "wordSecond": "orageux", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "primavera", + "wordSecond": "printemps", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "verano", + "wordSecond": "été", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "otoño", + "wordSecond": "automne", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "invierno", + "wordSecond": "hiver", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "trueno", + "wordSecond": "tonnerre", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "relámpago", + "wordSecond": "éclair", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "arcoíris", + "wordSecond": "arc-en-ciel", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "inundación", + "wordSecond": "inondation", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "sequía", + "wordSecond": "sécheresse", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "cielo", + "wordSecond": "ciel", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "temperatura", + "wordSecond": "température", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "clima", + "wordSecond": "temps", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "estación", + "wordSecond": "saison", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "día", + "wordSecond": "jour", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "noche", + "wordSecond": "nuit", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "amanecer", + "wordSecond": "aube", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "atardecer", + "wordSecond": "crépuscule", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "hielo", + "wordSecond": "glace", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "granizo", + "wordSecond": "grêle", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "rocío", + "wordSecond": "rosée", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "humedad", + "wordSecond": "humidité", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "seco", + "wordSecond": "sec", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "húmedo", + "wordSecond": "humide", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "claro", + "wordSecond": "clair", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "oscuro", + "wordSecond": "sombre", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "caliente", + "wordSecond": "chaud", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "templado", + "wordSecond": "tempéré", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fresquito", + "wordSecond": "frais", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "fríolento", + "wordSecond": "frileux", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "tormenta de nieve", + "wordSecond": "tempête de neige", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 14, + "wordFirst": "llovizna", + "wordSecond": "bruine", + "createdAt": "2026-02-19T15:10:58.005Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_es_it_A1.json b/output/2026_02_19_weather_seasons_es_it_A1.json new file mode 100644 index 0000000..6846c17 --- /dev/null +++ b/output/2026_02_19_weather_seasons_es_it_A1.json @@ -0,0 +1,651 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:11:08.838Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sol", + "wordSecond": "sole", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nube", + "wordSecond": "nuvola", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lluvia", + "wordSecond": "pioggia", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nieve", + "wordSecond": "neve", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "viento", + "wordSecond": "vento", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "niebla", + "wordSecond": "nebbia", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tormenta", + "wordSecond": "tempesta", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "calor", + "wordSecond": "caldo", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "cálido", + "wordSecond": "caldo", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "fresco", + "wordSecond": "fresco", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "frío", + "wordSecond": "freddo", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "helado", + "wordSecond": "gelato", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "verano", + "wordSecond": "estate", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "invierno", + "wordSecond": "inverno", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "primavera", + "wordSecond": "primavera", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "otoño", + "wordSecond": "autunno", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "trueno", + "wordSecond": "tuono", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "relámpago", + "wordSecond": "lampo", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "arcoíris", + "wordSecond": "arcobaleno", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "inundación", + "wordSecond": "inondazione", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "sequía", + "wordSecond": "siccità", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "soleado", + "wordSecond": "soleggiato", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nublado", + "wordSecond": "nuvoloso", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "lluvioso", + "wordSecond": "piovoso", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "nevado", + "wordSecond": "nevoso", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "ventoso", + "wordSecond": "ventoso", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "neblinoso", + "wordSecond": "nebbioso", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tormentoso", + "wordSecond": "tempestoso", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "caliente", + "wordSecond": "caldo", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "templado", + "wordSecond": "temperato", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "fresquito", + "wordSecond": "freschetto", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "frívolo", + "wordSecond": "freddoloso", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "congelado", + "wordSecond": "congelato", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "estación", + "wordSecond": "stagione", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "clima", + "wordSecond": "clima", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "tiempo", + "wordSecond": "tempo", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "temperatura", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "humedad", + "wordSecond": "umidità", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "seco", + "wordSecond": "secco", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "húmedo", + "wordSecond": "umido", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "bruma", + "wordSecond": "foschia", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "granizo", + "wordSecond": "grandine", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "aguanieve", + "wordSecond": "nevischio", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "rocío", + "wordSecond": "rugiada", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "escarcha", + "wordSecond": "brina", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "caluroso", + "wordSecond": "afoso", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "helada", + "wordSecond": "gelata", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 20, + "wordFirst": "temporal", + "wordSecond": "temporale", + "createdAt": "2026-02-19T15:11:08.838Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_es_ja_A1.json b/output/2026_02_19_weather_seasons_es_ja_A1.json new file mode 100644 index 0000000..2923af2 --- /dev/null +++ b/output/2026_02_19_weather_seasons_es_ja_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:11:25.821Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sol", + "wordSecond": "太陽 (たいよう, taiyou)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "nube", + "wordSecond": "雲 (くも, kumo)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lluvia", + "wordSecond": "雨 (あめ, ame)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "nieve", + "wordSecond": "雪 (ゆき, yuki)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "viento", + "wordSecond": "風 (かぜ, kaze)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "niebla", + "wordSecond": "霧 (きり, kiri)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tormenta", + "wordSecond": "嵐 (あらし, arashi)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "calor", + "wordSecond": "暑い (あつい, atsui)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "caliente", + "wordSecond": "熱い (あつい, atsui)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tibio", + "wordSecond": "暖かい (あたたかい, atatakai)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "fresco", + "wordSecond": "涼しい (すずしい, suzushii)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "frío", + "wordSecond": "寒い (さむい, samui)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "helado", + "wordSecond": "凍える (こごえる, kogoeru)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "primavera", + "wordSecond": "春 (はる, haru)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "verano", + "wordSecond": "夏 (なつ, natsu)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "otoño", + "wordSecond": "秋 (あき, aki)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "invierno", + "wordSecond": "冬 (ふゆ, fuyu)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "trueno", + "wordSecond": "雷 (かみなり, kaminari)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "relámpago", + "wordSecond": "稲妻 (いなずま, inazuma)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "arcoíris", + "wordSecond": "虹 (にじ, niji)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "inundación", + "wordSecond": "洪水 (こうずい, kouzui)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "sequía", + "wordSecond": "干ばつ (かんばつ, kanbatsu)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "soleado", + "wordSecond": "晴れ (はれ, hare)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "nublado", + "wordSecond": "曇り (くもり, kumori)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "lluvioso", + "wordSecond": "雨の (あめの, ame no)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "nevado", + "wordSecond": "雪の (ゆきの, yuki no)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "ventoso", + "wordSecond": "風の強い (かぜのつよい, kaze no tsuyoi)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "brumoso", + "wordSecond": "霧の (きりの, kiri no)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tempestuoso", + "wordSecond": "嵐の (あらしの, arashi no)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "temperatura", + "wordSecond": "温度 (おんど, ondo)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "clima", + "wordSecond": "天気 (てんき, tenki)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "estación", + "wordSecond": "季節 (きせつ, kisetsu)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "día", + "wordSecond": "日 (ひ, hi)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "noche", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mañana", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "tarde", + "wordSecond": "午後 (ごご, gogo)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "cielo", + "wordSecond": "空 (そら, sora)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "luna", + "wordSecond": "月 (つき, tsuki)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "estrella", + "wordSecond": "星 (ほし, hoshi)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "agua", + "wordSecond": "水 (みず, mizu)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "hielo", + "wordSecond": "氷 (こおり, koori)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "granizo", + "wordSecond": "雹 (ひょう, hyou)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "rocío", + "wordSecond": "露 (つゆ, tsuyu)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "humedad", + "wordSecond": "湿気 (しっけ, shikke)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "seco", + "wordSecond": "乾いた (かわいた, kawaita)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "mojado", + "wordSecond": "濡れた (ぬれた, nureta)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "claro", + "wordSecond": "晴れた (はれた, hareta)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "oscuro", + "wordSecond": "暗い (くらい, kurai)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "frío (objeto)", + "wordSecond": "冷たい (つめたい, tsumetai)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 21, + "wordFirst": "calor (objeto)", + "wordSecond": "熱い (あつい, atsui)", + "createdAt": "2026-02-19T15:11:25.821Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_es_ko_A1.json b/output/2026_02_19_weather_seasons_es_ko_A1.json new file mode 100644 index 0000000..291f860 --- /dev/null +++ b/output/2026_02_19_weather_seasons_es_ko_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:11:53.391Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sol", + "wordSecond": "해 (hae)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "nube", + "wordSecond": "구름 (gureum)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lluvia", + "wordSecond": "비 (bi)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "nieve", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "viento", + "wordSecond": "바람 (baram)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "niebla", + "wordSecond": "안개 (angae)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tormenta", + "wordSecond": "폭풍 (pokpung)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "calor", + "wordSecond": "더위 (deowi)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "caliente", + "wordSecond": "뜨거운 (tteugeoun)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cálido", + "wordSecond": "따뜻한 (ttatteuthan)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "fresco", + "wordSecond": "시원한 (siwonhan)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "frío", + "wordSecond": "추운 (chuun)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "helado", + "wordSecond": "얼음 (eoreum)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "soleado", + "wordSecond": "맑은 (malgeun)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "nublado", + "wordSecond": "흐린 (heurrin)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lluvioso", + "wordSecond": "비 오는 (bi oneun)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "nevado", + "wordSecond": "눈 오는 (nun oneun)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "ventoso", + "wordSecond": "바람 부는 (baram buneun)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "neblinoso", + "wordSecond": "안개 낀 (angae kkin)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "trueno", + "wordSecond": "천둥 (cheondung)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "relámpago", + "wordSecond": "번개 (beongae)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "arcoíris", + "wordSecond": "무지개 (mujigae)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "inundación", + "wordSecond": "홍수 (hongsu)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "sequía", + "wordSecond": "가뭄 (gamum)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "primavera", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "verano", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "otoño", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "invierno", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "día", + "wordSecond": "날 (nal)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "tiempo", + "wordSecond": "날씨 (nalssi)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "estación", + "wordSecond": "계절 (gyejeol)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "cielo", + "wordSecond": "하늘 (haneul)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "luna", + "wordSecond": "달 (dal)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "estrella", + "wordSecond": "별 (byeol)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "amanecer", + "wordSecond": "아침 (achim)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "atardecer", + "wordSecond": "저녁 (jeonyeok)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "noche", + "wordSecond": "밤 (bam)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "temperatura", + "wordSecond": "온도 (ondo)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "grados", + "wordSecond": "도 (do)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "hielo", + "wordSecond": "얼음 (eoreum)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "agua", + "wordSecond": "물 (mul)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "mar", + "wordSecond": "바다 (bada)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "río", + "wordSecond": "강 (gang)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "lago", + "wordSecond": "호수 (hosu)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "montaña", + "wordSecond": "산 (san)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "bosque", + "wordSecond": "숲 (sup)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "flor", + "wordSecond": "꽃 (kkot)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "árbol", + "wordSecond": "나무 (namu)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "pájaro", + "wordSecond": "새 (sae)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 13, + "wordFirst": "animal", + "wordSecond": "동물 (dongmul)", + "createdAt": "2026-02-19T15:11:53.391Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_es_pl_A1.json b/output/2026_02_19_weather_seasons_es_pl_A1.json new file mode 100644 index 0000000..1d9fde1 --- /dev/null +++ b/output/2026_02_19_weather_seasons_es_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:12:04.448Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sol", + "wordSecond": "słońce", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "nublado", + "wordSecond": "pochmurny", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "lluvia", + "wordSecond": "deszcz", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "nieve", + "wordSecond": "śnieg", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "viento", + "wordSecond": "wiatr", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "niebla", + "wordSecond": "mgła", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tormenta", + "wordSecond": "burza", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "calor", + "wordSecond": "upał", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "caliente", + "wordSecond": "gorący", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tibio", + "wordSecond": "ciepły", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "fresco", + "wordSecond": "chłodny", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "frío", + "wordSecond": "zimny", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "helado", + "wordSecond": "mroźny", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "primavera", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "verano", + "wordSecond": "lato", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "otoño", + "wordSecond": "jesień", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "invierno", + "wordSecond": "zima", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "trueno", + "wordSecond": "grzmot", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "relámpago", + "wordSecond": "błyskawica", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "arcoíris", + "wordSecond": "tęcza", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "inundación", + "wordSecond": "powódź", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sequía", + "wordSecond": "susza", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "soleado", + "wordSecond": "słoneczny", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "nube", + "wordSecond": "chmura", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "lluvioso", + "wordSecond": "deszczowy", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "nevado", + "wordSecond": "śnieżny", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "ventoso", + "wordSecond": "wietrzny", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "neblina", + "wordSecond": "mglisty", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tormentoso", + "wordSecond": "burzowy", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "temperatura", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "clima", + "wordSecond": "pogoda", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "estación", + "wordSecond": "pora roku", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "día", + "wordSecond": "dzień", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "noche", + "wordSecond": "noc", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "cielo", + "wordSecond": "niebo", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "luz", + "wordSecond": "światło", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "sombra", + "wordSecond": "cień", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "hielo", + "wordSecond": "lód", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "agua", + "wordSecond": "woda", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "tierra", + "wordSecond": "ziemia", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "aire", + "wordSecond": "powietrze", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "humedad", + "wordSecond": "wilgoć", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "seco", + "wordSecond": "suchy", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "mojado", + "wordSecond": "mokry", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "brillo", + "wordSecond": "blask", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "caluroso", + "wordSecond": "upalny", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "fresquito", + "wordSecond": "chłodnawy", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "fríolento", + "wordSecond": "zmarznięty", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "granizo", + "wordSecond": "grad", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 24, + "wordFirst": "rocío", + "wordSecond": "rosa", + "createdAt": "2026-02-19T15:12:04.448Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_es_pt_A1.json b/output/2026_02_19_weather_seasons_es_pt_A1.json new file mode 100644 index 0000000..554d2c0 --- /dev/null +++ b/output/2026_02_19_weather_seasons_es_pt_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:10:37.629Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sol", + "wordSecond": "sol", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nube", + "wordSecond": "nuvem", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lluvia", + "wordSecond": "chuva", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nieve", + "wordSecond": "neve", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "viento", + "wordSecond": "vento", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "niebla", + "wordSecond": "névoa", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "tormenta", + "wordSecond": "tempestade", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "soleado", + "wordSecond": "ensolarado", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nublado", + "wordSecond": "nublado", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "lluvioso", + "wordSecond": "chuvoso", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "nevado", + "wordSecond": "nevado", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "ventoso", + "wordSecond": "ventoso", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "caliente", + "wordSecond": "quente", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cálido", + "wordSecond": "quente", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "templado", + "wordSecond": "morno", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fresco", + "wordSecond": "fresco", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "frío", + "wordSecond": "frio", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "helado", + "wordSecond": "gelado", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "invierno", + "wordSecond": "inverno", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "primavera", + "wordSecond": "primavera", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "verano", + "wordSecond": "verão", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "otoño", + "wordSecond": "outono", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "trueno", + "wordSecond": "trovão", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "relámpago", + "wordSecond": "relâmpago", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "rayo", + "wordSecond": "raio", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "arcoíris", + "wordSecond": "arco-íris", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "inundación", + "wordSecond": "inundação", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sequía", + "wordSecond": "seca", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "día", + "wordSecond": "dia", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "noche", + "wordSecond": "noite", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "cielo", + "wordSecond": "céu", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "temperatura", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "clima", + "wordSecond": "clima", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "estación", + "wordSecond": "estação", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "hielo", + "wordSecond": "gelo", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "granizo", + "wordSecond": "granizo", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "agua", + "wordSecond": "água", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "calor", + "wordSecond": "calor", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "frío", + "wordSecond": "frio", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "humedad", + "wordSecond": "umidade", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "seco", + "wordSecond": "seco", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "mojado", + "wordSecond": "molhado", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "brillante", + "wordSecond": "brilhante", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "oscuro", + "wordSecond": "escuro", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "claro", + "wordSecond": "claro", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "fuerte", + "wordSecond": "forte", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "suave", + "wordSecond": "suave", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "luz", + "wordSecond": "luz", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "sombra", + "wordSecond": "sombra", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 7, + "wordFirst": "aire", + "wordSecond": "ar", + "createdAt": "2026-02-19T15:10:37.629Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_es_zh_A1.json b/output/2026_02_19_weather_seasons_es_zh_A1.json new file mode 100644 index 0000000..cba8a12 --- /dev/null +++ b/output/2026_02_19_weather_seasons_es_zh_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:11:39.185Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sol", + "wordSecond": "太阳 (tai yang)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nube", + "wordSecond": "云 (yun)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "lluvia", + "wordSecond": "雨 (yu)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nieve", + "wordSecond": "雪 (xue)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "viento", + "wordSecond": "风 (feng)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "niebla", + "wordSecond": "雾 (wu)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tormenta", + "wordSecond": "暴风雨 (bao feng yu)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "soleado", + "wordSecond": "晴朗 (qing lang)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nublado", + "wordSecond": "多云 (duo yun)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "lluvioso", + "wordSecond": "下雨 (xia yu)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nevado", + "wordSecond": "下雪 (xia xue)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "ventoso", + "wordSecond": "刮风 (gua feng)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "caliente", + "wordSecond": "热 (re)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cálido", + "wordSecond": "温暖 (wen nuan)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "fresco", + "wordSecond": "凉爽 (liang shuang)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "frío", + "wordSecond": "冷 (leng)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "helado", + "wordSecond": "冰冻 (bing dong)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "primavera", + "wordSecond": "春天 (chun tian)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "verano", + "wordSecond": "夏天 (xia tian)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "otoño", + "wordSecond": "秋天 (qiu tian)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "invierno", + "wordSecond": "冬天 (dong tian)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "temperatura", + "wordSecond": "温度 (wen du)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "cielo", + "wordSecond": "天空 (tian kong)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "arcoíris", + "wordSecond": "彩虹 (cai hong)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "trueno", + "wordSecond": "雷 (lei)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "relámpago", + "wordSecond": "闪电 (shan dian)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "inundación", + "wordSecond": "洪水 (hong shui)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "sequía", + "wordSecond": "干旱 (gan han)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "hielo", + "wordSecond": "冰 (bing)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "granizo", + "wordSecond": "冰雹 (bing bao)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "agua", + "wordSecond": "水 (shui)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "calor", + "wordSecond": "热 (re)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "frío", + "wordSecond": "冷 (leng)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "humedad", + "wordSecond": "潮湿 (chao shi)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "seco", + "wordSecond": "干燥 (gan zao)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "clima", + "wordSecond": "天气 (tian qi)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "estación", + "wordSecond": "季节 (ji jie)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "día", + "wordSecond": "天 (tian)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "noche", + "wordSecond": "晚上 (wan shang)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "amanecer", + "wordSecond": "日出 (ri chu)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "atardecer", + "wordSecond": "日落 (ri luo)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "luna", + "wordSecond": "月亮 (yue liang)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "estrella", + "wordSecond": "星星 (xing xing)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nublado", + "wordSecond": "阴天 (yin tian)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "despejado", + "wordSecond": "晴天 (qing tian)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "llovizna", + "wordSecond": "小雨 (xiao yu)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "aguacero", + "wordSecond": "大雨 (da yu)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "nieve", + "wordSecond": "雪 (xue)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "tormenta de nieve", + "wordSecond": "暴风雪 (bao feng xue)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 3, + "languageSecondId": 2, + "wordFirst": "niebla", + "wordSecond": "雾 (wu)", + "createdAt": "2026-02-19T15:11:39.185Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_fr_it_A1.json b/output/2026_02_19_weather_seasons_fr_it_A1.json new file mode 100644 index 0000000..7942253 --- /dev/null +++ b/output/2026_02_19_weather_seasons_fr_it_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:15:00.301Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "soleil", + "wordSecond": "sole", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "nuage", + "wordSecond": "nuvola", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pluie", + "wordSecond": "pioggia", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "neige", + "wordSecond": "neve", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "vent", + "wordSecond": "vento", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "brouillard", + "wordSecond": "nebbia", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "orage", + "wordSecond": "temporale", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chaud", + "wordSecond": "caldo", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chaud", + "wordSecond": "caldo", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tiède", + "wordSecond": "tiepido", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "frais", + "wordSecond": "fresco", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "froid", + "wordSecond": "freddo", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "gel", + "wordSecond": "gelo", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "printemps", + "wordSecond": "primavera", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "été", + "wordSecond": "estate", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "automne", + "wordSecond": "autunno", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "hiver", + "wordSecond": "inverno", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tonnerre", + "wordSecond": "tuono", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "éclair", + "wordSecond": "fulmine", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "arc-en-ciel", + "wordSecond": "arcobaleno", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "inondation", + "wordSecond": "inondazione", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sécheresse", + "wordSecond": "siccità", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ciel", + "wordSecond": "cielo", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tempête", + "wordSecond": "tempesta", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "grêle", + "wordSecond": "grandine", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "brume", + "wordSecond": "foschia", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ensoleillé", + "wordSecond": "soleggiato", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "nuageux", + "wordSecond": "nuvoloso", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "pluvieux", + "wordSecond": "piovoso", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "neigeux", + "wordSecond": "nevoso", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "venteux", + "wordSecond": "ventoso", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "brumeux", + "wordSecond": "nebbioso", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "orageux", + "wordSecond": "tempestoso", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "chaleur", + "wordSecond": "calore", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "froidure", + "wordSecond": "freddo", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "gelée", + "wordSecond": "brina", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "saison", + "wordSecond": "stagione", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "été", + "wordSecond": "estate", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "hiver", + "wordSecond": "inverno", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "printemps", + "wordSecond": "primavera", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "automne", + "wordSecond": "autunno", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "averse", + "wordSecond": "acquazzone", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "flocon", + "wordSecond": "fiocco", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "ouragan", + "wordSecond": "uragano", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "tornade", + "wordSecond": "tornado", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "éclaircie", + "wordSecond": "schiarita", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "humidité", + "wordSecond": "umidità", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "sécheresse", + "wordSecond": "siccità", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "inondation", + "wordSecond": "alluvione", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 20, + "wordFirst": "climat", + "wordSecond": "clima", + "createdAt": "2026-02-19T15:15:00.301Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_fr_ja_A1.json b/output/2026_02_19_weather_seasons_fr_ja_A1.json new file mode 100644 index 0000000..bb2350e --- /dev/null +++ b/output/2026_02_19_weather_seasons_fr_ja_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:15:17.975Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "soleil", + "wordSecond": "太陽 (たいよう, taiyou)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "nuage", + "wordSecond": "雲 (くも, kumo)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pluie", + "wordSecond": "雨 (あめ, ame)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "neige", + "wordSecond": "雪 (ゆき, yuki)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "vent", + "wordSecond": "風 (かぜ, kaze)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "brouillard", + "wordSecond": "霧 (きり, kiri)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "orage", + "wordSecond": "嵐 (あらし, arashi)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chaud", + "wordSecond": "暑い (あつい, atsui)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chaud (objets)", + "wordSecond": "熱い (あつい, atsui)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tiède", + "wordSecond": "温かい (あたたかい, atatakai)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "frais", + "wordSecond": "涼しい (すずしい, suzushii)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "froid", + "wordSecond": "寒い (さむい, samui)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "gel", + "wordSecond": "凍る (こおる, kooru)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "printemps", + "wordSecond": "春 (はる, haru)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "été", + "wordSecond": "夏 (なつ, natsu)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "automne", + "wordSecond": "秋 (あき, aki)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "hiver", + "wordSecond": "冬 (ふゆ, fuyu)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tonnerre", + "wordSecond": "雷 (かみなり, kaminari)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "éclair", + "wordSecond": "稲妻 (いなずま, inazuma)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "arc-en-ciel", + "wordSecond": "虹 (にじ, niji)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "inondation", + "wordSecond": "洪水 (こうずい, kouzui)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "sécheresse", + "wordSecond": "干ばつ (かんばつ, kanbatsu)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ciel", + "wordSecond": "空 (そら, sora)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "soleil (ensoleillé)", + "wordSecond": "晴れ (はれ, hare)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "nuageux", + "wordSecond": "曇り (くもり, kumori)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "pluvieux", + "wordSecond": "雨の (あめの, ame no)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "neigeux", + "wordSecond": "雪の (ゆきの, yuki no)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "venteux", + "wordSecond": "風の強い (かぜのつよい, kaze no tsuyoi)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "brumeux", + "wordSecond": "霧の (きりの, kiri no)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "orageux", + "wordSecond": "嵐の (あらしの, arashi no)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "chaleur", + "wordSecond": "暑さ (あつさ, atsusa)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "froid (température)", + "wordSecond": "寒さ (さむさ, samusa)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "glace", + "wordSecond": "氷 (こおり, koori)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "gelée", + "wordSecond": "霜 (しも, shimo)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tempête", + "wordSecond": "暴風 (ぼうふう, boufuu)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "éclaircie", + "wordSecond": "晴れ間 (はれま, harema)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "averse", + "wordSecond": "にわか雨 (にわかあめ, niwakaame)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "grêle", + "wordSecond": "雹 (ひょう, hyou)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "grésil", + "wordSecond": "みぞれ (みぞれ, mizore)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "rosée", + "wordSecond": "露 (つゆ, tsuyu)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "humidité", + "wordSecond": "湿気 (しっけ, shikke)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "saison", + "wordSecond": "季節 (きせつ, kisetsu)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "climat", + "wordSecond": "気候 (きこう, kikou)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "température", + "wordSecond": "温度 (おんど, ondo)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "météo", + "wordSecond": "天気 (てんき, tenki)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "prévision", + "wordSecond": "予報 (よほう, yohou)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "ouragan", + "wordSecond": "台風 (たいふう, taifuu)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tornade", + "wordSecond": "竜巻 (たつまき, tatsumaki)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tsunami", + "wordSecond": "津波 (つなみ, tsunami)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 21, + "wordFirst": "tremblement de terre", + "wordSecond": "地震 (じしん, jishin)", + "createdAt": "2026-02-19T15:15:17.975Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_fr_ko_A1.json b/output/2026_02_19_weather_seasons_fr_ko_A1.json new file mode 100644 index 0000000..c1a194f --- /dev/null +++ b/output/2026_02_19_weather_seasons_fr_ko_A1.json @@ -0,0 +1,561 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:15:46.335Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "soleil", + "wordSecond": "해 (hae)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "nuage", + "wordSecond": "구름 (gureum)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pluie", + "wordSecond": "비 (bi)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "neige", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "vent", + "wordSecond": "바람 (baram)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "brouillard", + "wordSecond": "안개 (angae)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "orage", + "wordSecond": "폭풍 (pokpung)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chaud", + "wordSecond": "덥다 (deopda)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "chaleur", + "wordSecond": "더위 (deowi)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tiède", + "wordSecond": "따뜻하다 (ttatteuthada)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "frais", + "wordSecond": "시원하다 (siwonhada)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "froid", + "wordSecond": "춥다 (chupda)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "gel", + "wordSecond": "얼음 (eoreum)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "gelée", + "wordSecond": "서리 (seori)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "printemps", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "été", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "automne", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "hiver", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "ciel", + "wordSecond": "하늘 (haneul)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "temps", + "wordSecond": "날씨 (nalssi)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "ensoleillé", + "wordSecond": "맑다 (makda)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "nuageux", + "wordSecond": "흐리다 (heurida)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "pluvieux", + "wordSecond": "비가 오다 (biga oda)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "neigeux", + "wordSecond": "눈이 오다 (nuni oda)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "venteux", + "wordSecond": "바람이 불다 (barami bulda)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "brumeux", + "wordSecond": "안개가 끼다 (angaega kkida)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "orageux", + "wordSecond": "천둥 (cheondung)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "arc-en-ciel", + "wordSecond": "무지개 (mujigae)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "inondation", + "wordSecond": "홍수 (hongsu)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "sécheresse", + "wordSecond": "가뭄 (gamum)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tempête", + "wordSecond": "폭풍우 (pokpungu)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "éclair", + "wordSecond": "번개 (beongae)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "tonnerre", + "wordSecond": "천둥 (cheondung)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "grêle", + "wordSecond": "우박 (ubak)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "glace", + "wordSecond": "얼음 (eoreum)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "givre", + "wordSecond": "서리 (seori)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "humidité", + "wordSecond": "습기 (seupgi)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 13, + "wordFirst": "saison", + "wordSecond": "계절 (gyejeol)", + "createdAt": "2026-02-19T15:15:46.335Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_fr_pl_A1.json b/output/2026_02_19_weather_seasons_fr_pl_A1.json new file mode 100644 index 0000000..a64e3d2 --- /dev/null +++ b/output/2026_02_19_weather_seasons_fr_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:15:58.273Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le soleil", + "wordSecond": "słońce", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "ensoleillé", + "wordSecond": "słoneczny", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "nuageux", + "wordSecond": "pochmurny", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le nuage", + "wordSecond": "chmura", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "pluvieux", + "wordSecond": "deszczowy", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la pluie", + "wordSecond": "deszcz", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "neigeux", + "wordSecond": "śnieżny", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la neige", + "wordSecond": "śnieg", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "venteux", + "wordSecond": "wietrzny", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le vent", + "wordSecond": "wiatr", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "brumeux", + "wordSecond": "mglisty", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le brouillard", + "wordSecond": "mgła", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "orageux", + "wordSecond": "burzowy", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'orage", + "wordSecond": "burza", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chaud", + "wordSecond": "gorący", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "chaleur", + "wordSecond": "upał", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "tiède", + "wordSecond": "ciepły", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "frais", + "wordSecond": "chłodny", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "froid", + "wordSecond": "zimny", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "gelée", + "wordSecond": "mróz", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le printemps", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'été", + "wordSecond": "lato", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'automne", + "wordSecond": "jesień", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'hiver", + "wordSecond": "zima", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le ciel", + "wordSecond": "niebo", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "clair", + "wordSecond": "jasny", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sombre", + "wordSecond": "ciemny", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "humide", + "wordSecond": "wilgotny", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "sec", + "wordSecond": "suchy", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la tempête", + "wordSecond": "sztorm", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la foudre", + "wordSecond": "piorun", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le tonnerre", + "wordSecond": "grzmot", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'éclair", + "wordSecond": "błyskawica", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'arc-en-ciel", + "wordSecond": "tęcza", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la grêle", + "wordSecond": "grad", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le gel", + "wordSecond": "szron", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la glace", + "wordSecond": "lód", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la boue", + "wordSecond": "błoto", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la flaque", + "wordSecond": "kałuża", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la sécheresse", + "wordSecond": "susza", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'inondation", + "wordSecond": "powódź", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la canicule", + "wordSecond": "fala upałów", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le verglas", + "wordSecond": "gołoledź", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la brise", + "wordSecond": "bryza", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "l'averse", + "wordSecond": "ulewa", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le crachin", + "wordSecond": "mżawka", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le givre", + "wordSecond": "szadź", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "la tempête de neige", + "wordSecond": "zamieć śnieżna", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le brouillard givrant", + "wordSecond": "szadź", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 24, + "wordFirst": "le temps", + "wordSecond": "pogoda", + "createdAt": "2026-02-19T15:15:58.273Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_fr_zh_A1.json b/output/2026_02_19_weather_seasons_fr_zh_A1.json new file mode 100644 index 0000000..60d0ebd --- /dev/null +++ b/output/2026_02_19_weather_seasons_fr_zh_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:15:31.104Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "soleil", + "wordSecond": "太阳 (taiyang)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "nuage", + "wordSecond": "云 (yun)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pluie", + "wordSecond": "雨 (yu)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "neige", + "wordSecond": "雪 (xue)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "vent", + "wordSecond": "风 (feng)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "brouillard", + "wordSecond": "雾 (wu)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "orage", + "wordSecond": "暴风雨 (baofengyu)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chaud", + "wordSecond": "热 (re)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chaud", + "wordSecond": "暖和 (nuanhuo)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "frais", + "wordSecond": "凉快 (liangkai)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "froid", + "wordSecond": "冷 (leng)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "gel", + "wordSecond": "冰冻 (bingdong)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "printemps", + "wordSecond": "春天 (chuntian)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "été", + "wordSecond": "夏天 (xiatian)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "automne", + "wordSecond": "秋天 (qiutian)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "hiver", + "wordSecond": "冬天 (dongtian)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tonnerre", + "wordSecond": "雷 (lei)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "éclair", + "wordSecond": "闪电 (shandian)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "arc-en-ciel", + "wordSecond": "彩虹 (caihong)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "inondation", + "wordSecond": "洪水 (hongshui)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sécheresse", + "wordSecond": "干旱 (ganhan)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "ciel", + "wordSecond": "天空 (tiankong)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "tempête", + "wordSecond": "风暴 (fengbao)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "température", + "wordSecond": "温度 (wendu)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "glace", + "wordSecond": "冰 (bing)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "grêle", + "wordSecond": "冰雹 (bingbao)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "brume", + "wordSecond": "薄雾 (bowu)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "averse", + "wordSecond": "阵雨 (zhenyu)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "soleil", + "wordSecond": "晴天 (qingtian)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "nuageux", + "wordSecond": "多云 (duoyun)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "pluvieux", + "wordSecond": "下雨 (xiayu)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "neigeux", + "wordSecond": "下雪 (xiaxue)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "venteux", + "wordSecond": "刮风 (guafeng)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "brumeux", + "wordSecond": "有雾 (youwu)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "orageux", + "wordSecond": "有暴风雨 (youbaofengyu)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "chaleur", + "wordSecond": "热 (re)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "froid", + "wordSecond": "寒冷 (hanleng)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "saison", + "wordSecond": "季节 (jijie)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "mois", + "wordSecond": "月 (yue)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "année", + "wordSecond": "年 (nian)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "jour", + "wordSecond": "天 (tian)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "nuit", + "wordSecond": "夜 (ye)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "matin", + "wordSecond": "早上 (zaoshang)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "soir", + "wordSecond": "晚上 (wanshang)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "été", + "wordSecond": "热天 (retian)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "hiver", + "wordSecond": "冷天 (lengtian)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "automne", + "wordSecond": "凉天 (liangtian)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "printemps", + "wordSecond": "暖天 (nuantian)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "humidité", + "wordSecond": "潮湿 (chaoshi)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 14, + "languageSecondId": 2, + "wordFirst": "sec", + "wordSecond": "干燥 (ganzao)", + "createdAt": "2026-02-19T15:15:31.104Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_it_ja_A1.json b/output/2026_02_19_weather_seasons_it_ja_A1.json new file mode 100644 index 0000000..926bd98 --- /dev/null +++ b/output/2026_02_19_weather_seasons_it_ja_A1.json @@ -0,0 +1,624 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:16:15.473Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sole", + "wordSecond": "晴れ (はれ, hare)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "soleggiato", + "wordSecond": "晴れた (はれた, hareta)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "nuvoloso", + "wordSecond": "曇り (くもり, kumori)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "nuvola", + "wordSecond": "雲 (くも, kumo)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pioggia", + "wordSecond": "雨 (あめ, ame)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "piovoso", + "wordSecond": "雨の (あめの, ame no)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "neve", + "wordSecond": "雪 (ゆき, yuki)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "nevoso", + "wordSecond": "雪の (ゆきの, yuki no)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "vento", + "wordSecond": "風 (かぜ, kaze)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ventoso", + "wordSecond": "風の強い (かぜのつよい, kaze no tsuyoi)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "nebbia", + "wordSecond": "霧 (きり, kiri)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "nebbioso", + "wordSecond": "霧の (きりの, kiri no)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tempesta", + "wordSecond": "嵐 (あらし, arashi)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tempestoso", + "wordSecond": "嵐の (あらしの, arashi no)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "caldo", + "wordSecond": "暑い (あつい, atsui)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "freddo", + "wordSecond": "寒い (さむい, samui)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fresco", + "wordSecond": "涼しい (すずしい, suzushii)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "gelido", + "wordSecond": "凍える (こごえる, kogoeru)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "primavera", + "wordSecond": "春 (はる, haru)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "estate", + "wordSecond": "夏 (なつ, natsu)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "autunno", + "wordSecond": "秋 (あき, aki)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "inverno", + "wordSecond": "冬 (ふゆ, fuyu)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tuono", + "wordSecond": "雷 (かみなり, kaminari)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "fulmine", + "wordSecond": "稲妻 (いなずま, inazuma)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "arcobaleno", + "wordSecond": "虹 (にじ, niji)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "inondazione", + "wordSecond": "洪水 (こうずい, kōzui)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "siccità", + "wordSecond": "干ばつ (かんばつ, kanbatsu)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "cielo", + "wordSecond": "空 (そら, sora)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "nuvole", + "wordSecond": "雲 (くも, kumo)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pioggia leggera", + "wordSecond": "小雨 (こさめ, kosame)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "pioggia forte", + "wordSecond": "大雨 (おおあめ, ōame)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "nevicata", + "wordSecond": "雪 (ゆき, yuki)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "ghiaccio", + "wordSecond": "氷 (こおり, kōri)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "gelo", + "wordSecond": "霜 (しも, shimo)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "luna", + "wordSecond": "月 (つき, tsuki)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "stelle", + "wordSecond": "星 (ほし, hoshi)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "umido", + "wordSecond": "湿った (しめった, shimetta)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "secco", + "wordSecond": "乾いた (かわいた, kawaita)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "giorno", + "wordSecond": "日 (ひ, hi)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "notte", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "mattina", + "wordSecond": "朝 (あさ, asa)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "sera", + "wordSecond": "夕方 (ゆうがた, yūgata)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "giornata", + "wordSecond": "一日 (いちにち, ichinichi)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "stagione", + "wordSecond": "季節 (きせつ, kisetsu)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 21, + "wordFirst": "tempo", + "wordSecond": "天気 (てんき, tenki)", + "createdAt": "2026-02-19T15:16:15.473Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_it_ko_A1.json b/output/2026_02_19_weather_seasons_it_ko_A1.json new file mode 100644 index 0000000..6a56ed2 --- /dev/null +++ b/output/2026_02_19_weather_seasons_it_ko_A1.json @@ -0,0 +1,615 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:16:43.020Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sole", + "wordSecond": "해 (hae)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "soleggiato", + "wordSecond": "맑은 (malgeun)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nuvoloso", + "wordSecond": "흐린 (heurrin)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "pioggia", + "wordSecond": "비 (bi)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "piovoso", + "wordSecond": "비 오는 (bi oneun)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "neve", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nevoso", + "wordSecond": "눈 오는 (nun oneun)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "vento", + "wordSecond": "바람 (baram)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ventoso", + "wordSecond": "바람이 부는 (barami buneun)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nebbia", + "wordSecond": "안개 (angae)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nebbioso", + "wordSecond": "안개 낀 (angae kkin)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tempesta", + "wordSecond": "폭풍 (pokpung)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "temporale", + "wordSecond": "천둥 (cheondung)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "caldo", + "wordSecond": "더운 (deoun)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "freddo", + "wordSecond": "추운 (chuun)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "gelido", + "wordSecond": "얼어붙는 (eoreobunneun)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "fresco", + "wordSecond": "시원한 (siwonhan)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "primavera", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "estate", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "autunno", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "inverno", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tuono", + "wordSecond": "천둥 (cheondung)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "fulmine", + "wordSecond": "번개 (beongae)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "arcobaleno", + "wordSecond": "무지개 (mujigae)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "inondazione", + "wordSecond": "홍수 (hongsu)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "siccità", + "wordSecond": "가뭄 (gamum)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "cielo", + "wordSecond": "하늘 (haneul)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "nube", + "wordSecond": "구름 (gureum)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "goccia", + "wordSecond": "방울 (bangul)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "ghiaccio", + "wordSecond": "얼음 (eoreum)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "gelo", + "wordSecond": "서리 (seori)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "brina", + "wordSecond": "서리 (seori)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "umido", + "wordSecond": "습한 (seupan)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "secco", + "wordSecond": "마른 (mareun)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "sereno", + "wordSecond": "맑은 (malgeun)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "buio", + "wordSecond": "어두운 (eoduun)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "luce", + "wordSecond": "빛 (bit)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "calore", + "wordSecond": "열 (yeol)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "stagione", + "wordSecond": "계절 (gyejeol)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "tempo", + "wordSecond": "날씨 (nalssi)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "clima", + "wordSecond": "기후 (gihu)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "aria", + "wordSecond": "공기 (gonggi)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "luna", + "wordSecond": "달 (dal)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 13, + "wordFirst": "stella", + "wordSecond": "별 (byeol)", + "createdAt": "2026-02-19T15:16:43.020Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_it_pl_A1.json b/output/2026_02_19_weather_seasons_it_pl_A1.json new file mode 100644 index 0000000..52f8b14 --- /dev/null +++ b/output/2026_02_19_weather_seasons_it_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:16:53.750Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sole", + "wordSecond": "słońce", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "pioggia", + "wordSecond": "deszcz", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "neve", + "wordSecond": "śnieg", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "vento", + "wordSecond": "wiatr", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "nuvoloso", + "wordSecond": "pochmurno", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "nebbia", + "wordSecond": "mgła", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tempesta", + "wordSecond": "burza", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "caldo", + "wordSecond": "gorąco", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "freddo", + "wordSecond": "zimno", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "caldo", + "wordSecond": "ciepło", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "fresco", + "wordSecond": "chłodno", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gelido", + "wordSecond": "mroźno", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "primavera", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "estate", + "wordSecond": "lato", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "autunno", + "wordSecond": "jesień", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "inverno", + "wordSecond": "zima", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tuono", + "wordSecond": "grzmot", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "fulmine", + "wordSecond": "błyskawica", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "arcobaleno", + "wordSecond": "tęcza", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "inondazione", + "wordSecond": "powódź", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "siccità", + "wordSecond": "susza", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "soleggiato", + "wordSecond": "słonecznie", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "piovoso", + "wordSecond": "deszczowo", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "nevoso", + "wordSecond": "śnieżnie", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ventoso", + "wordSecond": "wietrznie", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "tempestoso", + "wordSecond": "burzowo", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "cielo", + "wordSecond": "niebo", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "nube", + "wordSecond": "chmura", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "goccia", + "wordSecond": "kropla", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ghiaccio", + "wordSecond": "lód", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "brina", + "wordSecond": "szron", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "grandine", + "wordSecond": "grad", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "umidità", + "wordSecond": "wilgotność", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "secco", + "wordSecond": "sucho", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "bagnato", + "wordSecond": "mokro", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "luce", + "wordSecond": "światło", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "ombra", + "wordSecond": "cień", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "giorno", + "wordSecond": "dzień", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "notte", + "wordSecond": "noc", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "mattina", + "wordSecond": "rano", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "sera", + "wordSecond": "wieczór", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "stagione", + "wordSecond": "pora roku", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "temperatura", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "meteo", + "wordSecond": "pogoda", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "clima", + "wordSecond": "klimat", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "aria", + "wordSecond": "powietrze", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "nebbioso", + "wordSecond": "mglisto", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "gelo", + "wordSecond": "mróz", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "calura", + "wordSecond": "upał", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 24, + "wordFirst": "temporale", + "wordSecond": "burza z piorunami", + "createdAt": "2026-02-19T15:16:53.750Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_it_zh_A1.json b/output/2026_02_19_weather_seasons_it_zh_A1.json new file mode 100644 index 0000000..85bf3fb --- /dev/null +++ b/output/2026_02_19_weather_seasons_it_zh_A1.json @@ -0,0 +1,624 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:16:28.715Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sole", + "wordSecond": "太阳 (taiyang)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "soleggiato", + "wordSecond": "晴朗 (qinglang)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "nuvoloso", + "wordSecond": "多云 (duoyun)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pioggia", + "wordSecond": "雨 (yu)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "piovoso", + "wordSecond": "下雨 (xiayu)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "neve", + "wordSecond": "雪 (xue)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "nevoso", + "wordSecond": "下雪 (xiaxue)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "vento", + "wordSecond": "风 (feng)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ventoso", + "wordSecond": "刮风 (guafeng)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "nebbia", + "wordSecond": "雾 (wu)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "nebbioso", + "wordSecond": "有雾 (youwu)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tempesta", + "wordSecond": "风暴 (fengbao)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tempestoso", + "wordSecond": "暴风雨 (baofengyu)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "caldo", + "wordSecond": "热 (re)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fresco", + "wordSecond": "凉快 (liangkuaikuai)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "freddo", + "wordSecond": "冷 (leng)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "gelido", + "wordSecond": "冰冻 (bingdong)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "primavera", + "wordSecond": "春天 (chuntian)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "estate", + "wordSecond": "夏天 (xiatian)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "autunno", + "wordSecond": "秋天 (qiutian)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "inverno", + "wordSecond": "冬天 (dongtian)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tuono", + "wordSecond": "雷 (lei)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fulmine", + "wordSecond": "闪电 (shandian)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "arcobaleno", + "wordSecond": "彩虹 (caihong)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "inondazione", + "wordSecond": "洪水 (hongshui)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "siccità", + "wordSecond": "干旱 (ganhan)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "cielo", + "wordSecond": "天空 (tiankong)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "nube", + "wordSecond": "云 (yun)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "goccia", + "wordSecond": "雨滴 (yudi)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "fiocco", + "wordSecond": "雪花 (xuehua)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ghiaccio", + "wordSecond": "冰 (bing)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "grandine", + "wordSecond": "冰雹 (bingbao)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "umido", + "wordSecond": "潮湿 (chaoshi)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "secco", + "wordSecond": "干燥 (ganzao)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "sereno", + "wordSecond": "晴朗 (qinglang)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "coperto", + "wordSecond": "阴天 (yintian)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "pioggerella", + "wordSecond": "小雨 (xiaoyu)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "temporale", + "wordSecond": "雷雨 (leiyu)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "uragano", + "wordSecond": "飓风 (jufeng)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tifone", + "wordSecond": "台风 (taifeng)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "ombra", + "wordSecond": "阴影 (yinying)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "rugiada", + "wordSecond": "露水 (lushui)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "brina", + "wordSecond": "霜 (shuang)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "stagione", + "wordSecond": "季节 (jijie)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 20, + "languageSecondId": 2, + "wordFirst": "tempo", + "wordSecond": "天气 (tianqi)", + "createdAt": "2026-02-19T15:16:28.715Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_ja_ko_A1.json b/output/2026_02_19_weather_seasons_ja_ko_A1.json new file mode 100644 index 0000000..61e3414 --- /dev/null +++ b/output/2026_02_19_weather_seasons_ja_ko_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:17:36.486Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "晴れ (はれ, hare)", + "wordSecond": "맑음 (malgeum)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "曇り (くもり, kumori)", + "wordSecond": "흐림 (heurim)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "雨 (あめ, ame)", + "wordSecond": "비 (bi)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "雪 (ゆき, yuki)", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "風 (かぜ, kaze)", + "wordSecond": "바람 (baram)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "霧 (きり, kiri)", + "wordSecond": "안개 (angae)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "嵐 (あらし, arashi)", + "wordSecond": "폭풍 (pokpung)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "暑い (あつい, atsui)", + "wordSecond": "덥다 (deopda)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "暖かい (あたたかい, atatakai)", + "wordSecond": "따뜻하다 (ttatteutada)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "涼しい (すずしい, suzushii)", + "wordSecond": "시원하다 (siwonhada)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "寒い (さむい, samui)", + "wordSecond": "춥다 (chupda)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "凍る (こおる, kooru)", + "wordSecond": "얼다 (eolda)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "春 (はる, haru)", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "夏 (なつ, natsu)", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "秋 (あき, aki)", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "冬 (ふゆ, fuyu)", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "雷 (かみなり, kaminari)", + "wordSecond": "천둥 (cheondung)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "稲妻 (いなずま, inazuma)", + "wordSecond": "번개 (beongae)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "虹 (にじ, niji)", + "wordSecond": "무지개 (mujigae)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "洪水 (こうずい, kouzui)", + "wordSecond": "홍수 (hongsu)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "干ばつ (かんばつ, kanbatsu)", + "wordSecond": "가뭄 (gamum)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "天気 (てんき, tenki)", + "wordSecond": "날씨 (nalssi)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "季節 (きせつ, kisetsu)", + "wordSecond": "계절 (gyejeol)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "太陽 (たいよう, taiyou)", + "wordSecond": "태양 (taeyang)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "雲 (くも, kumo)", + "wordSecond": "구름 (gureum)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "雨が降る (あめがふる, ame ga furu)", + "wordSecond": "비가 오다 (biga oda)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "雪が降る (ゆきがふる, yuki ga furu)", + "wordSecond": "눈이 오다 (nuni oda)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "風が吹く (かぜがふく, kaze ga fuku)", + "wordSecond": "바람이 불다 (barami bulda)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "暑さ (あつさ, atsusa)", + "wordSecond": "더위 (deowi)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "寒さ (さむさ, samusa)", + "wordSecond": "추위 (chuwi)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "暖かさ (あたたかさ, atatakasa)", + "wordSecond": "따뜻함 (ttatteutham)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "涼しさ (すずしさ, suzushisa)", + "wordSecond": "시원함 (siwonham)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "氷 (こおり, koori)", + "wordSecond": "얼음 (eoreum)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "霜 (しも, shimo)", + "wordSecond": "서리 (seori)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "露 (つゆ, tsuyu)", + "wordSecond": "이슬 (iseul)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "台風 (たいふう, taifuu)", + "wordSecond": "태풍 (taepung)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "晴れた (はれた, hareta)", + "wordSecond": "맑은 (malgeun)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "曇った (くもった, kumotta)", + "wordSecond": "흐린 (heurim)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "雨の (あめの, ame no)", + "wordSecond": "비의 (biui)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "雪の (ゆきの, yuki no)", + "wordSecond": "눈의 (nunui)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "風の (かぜの, kaze no)", + "wordSecond": "바람의 (baramui)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "春の (はるの, haru no)", + "wordSecond": "봄의 (bomui)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "夏の (なつの, natsu no)", + "wordSecond": "여름의 (yeoreumui)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "秋の (あきの, aki no)", + "wordSecond": "가을의 (gaeului)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "冬の (ふゆの, fuyu no)", + "wordSecond": "겨울의 (gyeoului)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "雷雨 (らいう, raiu)", + "wordSecond": "뇌우 (noeu)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "にわか雨 (にわかあめ, niwakaame)", + "wordSecond": "소나기 (sonagi)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "天候 (てんこう, tenkou)", + "wordSecond": "기후 (gihu)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "気温 (きおん, kion)", + "wordSecond": "기온 (gion)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 13, + "wordFirst": "湿度 (しつど, shitsudo)", + "wordSecond": "습도 (seupdo)", + "createdAt": "2026-02-19T15:17:36.486Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_ja_pl_A1.json b/output/2026_02_19_weather_seasons_ja_pl_A1.json new file mode 100644 index 0000000..2380eab --- /dev/null +++ b/output/2026_02_19_weather_seasons_ja_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:17:53.937Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "天気 (てんき, tenki)", + "wordSecond": "pogoda", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "季節 (きせつ, kisetsu)", + "wordSecond": "pora roku", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "春 (はる, haru)", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "夏 (なつ, natsu)", + "wordSecond": "lato", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "秋 (あき, aki)", + "wordSecond": "jesień", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "冬 (ふゆ, fuyu)", + "wordSecond": "zima", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "晴れ (はれ, hare)", + "wordSecond": "słonecznie", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "曇り (くもり, kumori)", + "wordSecond": "pochmurno", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "雨 (あめ, ame)", + "wordSecond": "deszcz", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "雪 (ゆき, yuki)", + "wordSecond": "śnieg", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "風 (かぜ, kaze)", + "wordSecond": "wiatr", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "霧 (きり, kiri)", + "wordSecond": "mgła", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "嵐 (あらし, arashi)", + "wordSecond": "burza", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "暑い (あつい, atsui)", + "wordSecond": "gorąco", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "暖かい (あたたかい, atatakai)", + "wordSecond": "ciepło", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "涼しい (すずしい, suzushii)", + "wordSecond": "chłodno", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "寒い (さむい, samui)", + "wordSecond": "zimno", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "氷 (こおり, kōri)", + "wordSecond": "lód", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "雷 (かみなり, kaminari)", + "wordSecond": "grzmot", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "稲妻 (いなずま, inazuma)", + "wordSecond": "błyskawica", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "虹 (にじ, niji)", + "wordSecond": "tęcza", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "洪水 (こうずい, kōzui)", + "wordSecond": "powódź", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "干ばつ (かんばつ, kanbatsu)", + "wordSecond": "susza", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "太陽 (たいよう, taiyō)", + "wordSecond": "słońce", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "雲 (くも, kumo)", + "wordSecond": "chmura", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "雨雲 (あまぐも, amagumo)", + "wordSecond": "chmura deszczowa", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "雪雲 (ゆきぐも, yukigumo)", + "wordSecond": "chmura śnieżna", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "風雲 (ふううん, fūun)", + "wordSecond": "chmura wiatrowa", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "霧雨 (きりさめ, kirisame)", + "wordSecond": "mżawka", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "大雨 (おおあめ, ōame)", + "wordSecond": "ulewa", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "小雪 (こゆき, koyuki)", + "wordSecond": "lekki śnieg", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "大雪 (おおゆき, ōyuki)", + "wordSecond": "obfity śnieg", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "強風 (きょうふう, kyōfū)", + "wordSecond": "silny wiatr", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "微風 (びふう, bifū)", + "wordSecond": "lekki wiatr", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "濃霧 (のうむ, nōmu)", + "wordSecond": "gęsta mgła", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "雷雨 (らいう, raiu)", + "wordSecond": "burza z piorunami", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "熱帯夜 (ねったいや, nettaia)", + "wordSecond": "tropikalna noc", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "霜 (しも, shimo)", + "wordSecond": "szron", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "露 (つゆ, tsuyu)", + "wordSecond": "rosa", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "雹 (ひょう, hyō)", + "wordSecond": "grad", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "台風 (たいふう, taifū)", + "wordSecond": "tajfun", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "竜巻 (たつまき, tatsumaki)", + "wordSecond": "tornado", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "地震 (じしん, jishin)", + "wordSecond": "trzęsienie ziemi", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "津波 (つなみ, tsunami)", + "wordSecond": "tsunami", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "噴火 (ふんか, funka)", + "wordSecond": "erupcja wulkanu", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "砂嵐 (すなあらし, sunaarashi)", + "wordSecond": "burza piaskowa", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "雪崩 (なだれ, nadare)", + "wordSecond": "lawina", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "氷河 (ひょうが, hyōga)", + "wordSecond": "lodowiec", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "極光 (きょっこう, kyokkō)", + "wordSecond": "zorza polarna", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 24, + "wordFirst": "日食 (にっしょく, nisshoku)", + "wordSecond": "zaćmienie słońca", + "createdAt": "2026-02-19T15:17:53.937Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_ja_zh_A1.json b/output/2026_02_19_weather_seasons_ja_zh_A1.json new file mode 100644 index 0000000..db6da94 --- /dev/null +++ b/output/2026_02_19_weather_seasons_ja_zh_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:17:14.727Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "天気 (てんき, tenki)", + "wordSecond": "天气 (tiānqì)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "季節 (きせつ, kisetsu)", + "wordSecond": "季节 (jìjié)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "晴れ (はれ, hare)", + "wordSecond": "晴天 (qíngtiān)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "晴れた (はれた, hareta)", + "wordSecond": "晴朗 (qínglǎng)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "曇り (くもり, kumori)", + "wordSecond": "多云 (duōyún)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "曇った (くもった, kumotta)", + "wordSecond": "阴天 (yīntiān)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "雨 (あめ, ame)", + "wordSecond": "雨 (yǔ)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "雨が降る (あめがふる, ame ga furu)", + "wordSecond": "下雨 (xiàyǔ)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "雪 (ゆき, yuki)", + "wordSecond": "雪 (xuě)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "雪が降る (ゆきがふる, yuki ga furu)", + "wordSecond": "下雪 (xiàxuě)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "風 (かぜ, kaze)", + "wordSecond": "风 (fēng)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "風が強い (かぜがつよい, kaze ga tsuyoi)", + "wordSecond": "刮风 (guāfēng)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "霧 (きり, kiri)", + "wordSecond": "雾 (wù)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "霧がかかる (きりがかかる, kiri ga kakaru)", + "wordSecond": "有雾 (yǒuwù)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "嵐 (あらし, arashi)", + "wordSecond": "风暴 (fēngbào)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "雷 (かみなり, kaminari)", + "wordSecond": "雷 (léi)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "稲妻 (いなずま, inazuma)", + "wordSecond": "闪电 (shǎndiàn)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "虹 (にじ, niji)", + "wordSecond": "彩虹 (cǎihóng)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "洪水 (こうずい, kōzui)", + "wordSecond": "洪水 (hóngshuǐ)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "干ばつ (かんばつ, kanbatsu)", + "wordSecond": "干旱 (gānhàn)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "暑い (あつい, atsui)", + "wordSecond": "热 (rè)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "暖かい (あたたかい, atatakai)", + "wordSecond": "温暖 (wēnnuǎn)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "涼しい (すずしい, suzushii)", + "wordSecond": "凉爽 (liángshuǎng)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "寒い (さむい, samui)", + "wordSecond": "冷 (lěng)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "凍える (こごえる, kogoeru)", + "wordSecond": "寒冷 (hánlěng)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "春 (はる, haru)", + "wordSecond": "春天 (chūntiān)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "夏 (なつ, natsu)", + "wordSecond": "夏天 (xiàtiān)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "秋 (あき, aki)", + "wordSecond": "秋天 (qiūtiān)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "冬 (ふゆ, fuyu)", + "wordSecond": "冬天 (dōngtiān)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "太陽 (たいよう, taiyō)", + "wordSecond": "太阳 (tàiyáng)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "雲 (くも, kumo)", + "wordSecond": "云 (yún)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "空 (そら, sora)", + "wordSecond": "天空 (tiānkōng)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "温度 (おんど, ondo)", + "wordSecond": "温度 (wēndù)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "気温 (きおん, kion)", + "wordSecond": "气温 (qìwēn)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "湿度 (しつど, shitsudo)", + "wordSecond": "湿度 (shīdù)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "雨雲 (あまぐも, amagumo)", + "wordSecond": "雨云 (yǔyún)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "雷雨 (らいう, raiu)", + "wordSecond": "雷雨 (léiyǔ)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "雪だるま (ゆきだるま, yukidaruma)", + "wordSecond": "雪人 (xuěrén)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "氷 (こおり, kōri)", + "wordSecond": "冰 (bīng)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "霜 (しも, shimo)", + "wordSecond": "霜 (shuāng)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "露 (つゆ, tsuyu)", + "wordSecond": "露水 (lùshuǐ)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "台風 (たいふう, taifū)", + "wordSecond": "台风 (táifēng)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "地震 (じしん, jishin)", + "wordSecond": "地震 (dìzhèn)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "火山 (かざん, kazan)", + "wordSecond": "火山 (huǒshān)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "日差し (ひざし, hizashi)", + "wordSecond": "阳光 (yángguāng)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "月 (つき, tsuki)", + "wordSecond": "月亮 (yuèliàng)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "星 (ほし, hoshi)", + "wordSecond": "星星 (xīngxīng)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "天の川 (あまのがわ, amanogawa)", + "wordSecond": "银河 (yínhé)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "夕焼け (ゆうやけ, yūyake)", + "wordSecond": "晚霞 (wǎnxiá)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 21, + "languageSecondId": 2, + "wordFirst": "朝焼け (あさやけ, asayake)", + "wordSecond": "朝霞 (zhāoxiá)", + "createdAt": "2026-02-19T15:17:14.727Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_ko_pl_A1.json b/output/2026_02_19_weather_seasons_ko_pl_A1.json new file mode 100644 index 0000000..f82a130 --- /dev/null +++ b/output/2026_02_19_weather_seasons_ko_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:18:41.921Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "날씨 (nalssi)", + "wordSecond": "pogoda", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "계절 (gyejeol)", + "wordSecond": "pora roku", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "봄 (bom)", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "여름 (yeoreum)", + "wordSecond": "lato", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "가을 (ga-eul)", + "wordSecond": "jesień", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "겨울 (gyeoul)", + "wordSecond": "zima", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "해 (hae)", + "wordSecond": "słońce", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "구름 (gureum)", + "wordSecond": "chmura", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "비 (bi)", + "wordSecond": "deszcz", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "눈 (nun)", + "wordSecond": "śnieg", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "바람 (baram)", + "wordSecond": "wiatr", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "안개 (angae)", + "wordSecond": "mgła", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "번개 (beon-gae)", + "wordSecond": "błyskawica", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "천둥 (cheondung)", + "wordSecond": "grzmot", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "무지개 (mujigae)", + "wordSecond": "tęcza", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "더위 (deowi)", + "wordSecond": "upał", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "추위 (chuwi)", + "wordSecond": "chłód", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "더운 (deoun)", + "wordSecond": "gorący", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "따뜻한 (ttatteuthan)", + "wordSecond": "ciepły", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "시원한 (siwonhan)", + "wordSecond": "chłodny", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "추운 (chuun)", + "wordSecond": "zimny", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "매우 추운 (maeu chuun)", + "wordSecond": "mroźny", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "맑은 (malgeun)", + "wordSecond": "słoneczny", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "흐린 (heurrin)", + "wordSecond": "pochmurny", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "비오는 (bioneun)", + "wordSecond": "deszczowy", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "눈오는 (nunoneun)", + "wordSecond": "śnieżny", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "바람이 부는 (barami buneun)", + "wordSecond": "wietrzny", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "안개가 낀 (angaega kkin)", + "wordSecond": "mglisty", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "폭풍 (pokpung)", + "wordSecond": "burza", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "폭풍우 (pokpung-u)", + "wordSecond": "burza z deszczem", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "눈보라 (nunbora)", + "wordSecond": "zamieć śnieżna", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "이슬비 (iseulbi)", + "wordSecond": "mżawka", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "소나기 (sonagi)", + "wordSecond": "ulewa", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "서리 (seori)", + "wordSecond": "szron", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "얼음 (eoreum)", + "wordSecond": "lód", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "장마 (jangma)", + "wordSecond": "pora deszczowa", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "가뭄 (gamum)", + "wordSecond": "susza", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "홍수 (hongsu)", + "wordSecond": "powódź", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "습한 (seupan)", + "wordSecond": "wilgotny", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "건조한 (geonjohan)", + "wordSecond": "suchy", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "구름이 많은 (gureumi maneun)", + "wordSecond": "pochmurny", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "맑게 갠 (malge gaen)", + "wordSecond": "bezchmurny", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "따뜻한 날씨 (ttatteuthan nalssi)", + "wordSecond": "ciepła pogoda", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "추운 날씨 (chuun nalssi)", + "wordSecond": "zimna pogoda", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "햇빛 (haetbit)", + "wordSecond": "światło słoneczne", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "그늘 (geuneul)", + "wordSecond": "cień", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "온도 (ondo)", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "기온 (gion)", + "wordSecond": "temperatura powietrza", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "날씨 예보 (nalssi yebo)", + "wordSecond": "prognoza pogody", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 13, + "languageSecondId": 24, + "wordFirst": "자연 현상 (jayeon hyeonsang)", + "wordSecond": "zjawisko naturalne", + "createdAt": "2026-02-19T15:18:41.921Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_pt_de_A1.json b/output/2026_02_19_weather_seasons_pt_de_A1.json new file mode 100644 index 0000000..7213805 --- /dev/null +++ b/output/2026_02_19_weather_seasons_pt_de_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:12:15.381Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "sol", + "wordSecond": "Sonne", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nuvem", + "wordSecond": "Wolke", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chuva", + "wordSecond": "Regen", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "neve", + "wordSecond": "Schnee", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "vento", + "wordSecond": "Wind", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "névoa", + "wordSecond": "Nebel", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tempestade", + "wordSecond": "Sturm", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ensolarado", + "wordSecond": "sonnig", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nublado", + "wordSecond": "bewölkt", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "chuvoso", + "wordSecond": "regnerisch", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nevando", + "wordSecond": "schneiend", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "ventoso", + "wordSecond": "windig", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nebuloso", + "wordSecond": "neblig", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "tempestuoso", + "wordSecond": "stürmisch", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "quente", + "wordSecond": "heiß", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "morno", + "wordSecond": "warm", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "fresco", + "wordSecond": "kühl", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "frio", + "wordSecond": "kalt", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "congelante", + "wordSecond": "eiskalt", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "temperatura", + "wordSecond": "Temperatur", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "verão", + "wordSecond": "Sommer", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "outono", + "wordSecond": "Herbst", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "inverno", + "wordSecond": "Winter", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "primavera", + "wordSecond": "Frühling", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "trovão", + "wordSecond": "Donner", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "relâmpago", + "wordSecond": "Blitz", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "arco-íris", + "wordSecond": "Regenbogen", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "inundação", + "wordSecond": "Flut", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "seca", + "wordSecond": "Dürre", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "céu", + "wordSecond": "Himmel", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "dia", + "wordSecond": "Tag", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "noite", + "wordSecond": "Nacht", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "gelo", + "wordSecond": "Eis", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "granizo", + "wordSecond": "Hagel", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "orvalho", + "wordSecond": "Tau", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "geada", + "wordSecond": "Frost", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "clima", + "wordSecond": "Wetter", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "estação", + "wordSecond": "Jahreszeit", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "calor", + "wordSecond": "Hitze", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "frio", + "wordSecond": "Kälte", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "úmido", + "wordSecond": "feucht", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "seco", + "wordSecond": "trocken", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "lua", + "wordSecond": "Mond", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "estrela", + "wordSecond": "Stern", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nublado", + "wordSecond": "wolkig", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "garoa", + "wordSecond": "Nieselregen", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "nevoeiro", + "wordSecond": "Dunst", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "raio", + "wordSecond": "Strahl", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "claro", + "wordSecond": "klar", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 15, + "wordFirst": "escuro", + "wordSecond": "dunkel", + "createdAt": "2026-02-19T15:12:15.381Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_pt_fr_A1.json b/output/2026_02_19_weather_seasons_pt_fr_A1.json new file mode 100644 index 0000000..7f1b0c3 --- /dev/null +++ b/output/2026_02_19_weather_seasons_pt_fr_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:12:25.524Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "sol", + "wordSecond": "soleil", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "nuvem", + "wordSecond": "nuage", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chuva", + "wordSecond": "pluie", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "neve", + "wordSecond": "neige", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "vento", + "wordSecond": "vent", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "névoa", + "wordSecond": "brouillard", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tempestade", + "wordSecond": "tempête", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ensolarado", + "wordSecond": "ensoleillé", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "nublado", + "wordSecond": "nuageux", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chuvoso", + "wordSecond": "pluvieux", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "nevoso", + "wordSecond": "neigeux", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ventoso", + "wordSecond": "venteux", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "tempestuoso", + "wordSecond": "orageux", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "quente", + "wordSecond": "chaud", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "morno", + "wordSecond": "tiède", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "fresco", + "wordSecond": "frais", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "frio", + "wordSecond": "froid", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "gelado", + "wordSecond": "gelé", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "temperatura", + "wordSecond": "température", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "calor", + "wordSecond": "chaleur", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "frio", + "wordSecond": "froid", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "verão", + "wordSecond": "été", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "outono", + "wordSecond": "automne", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "inverno", + "wordSecond": "hiver", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "primavera", + "wordSecond": "printemps", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "céu", + "wordSecond": "ciel", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "arco-íris", + "wordSecond": "arc-en-ciel", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "trovão", + "wordSecond": "tonnerre", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "relâmpago", + "wordSecond": "éclair", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "raio", + "wordSecond": "foudre", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "granizo", + "wordSecond": "grêle", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "geada", + "wordSecond": "gelée", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "umidade", + "wordSecond": "humidité", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "seco", + "wordSecond": "sec", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "úmido", + "wordSecond": "humide", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "clima", + "wordSecond": "temps", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estação", + "wordSecond": "saison", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "dia", + "wordSecond": "jour", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "noite", + "wordSecond": "nuit", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "amanhecer", + "wordSecond": "aube", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "anoitecer", + "wordSecond": "crépuscule", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "lua", + "wordSecond": "lune", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "estrela", + "wordSecond": "étoile", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "nublado", + "wordSecond": "couvert", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ensolarado", + "wordSecond": "ensoleillé", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chuviscando", + "wordSecond": "bruine", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "garoando", + "wordSecond": "crachin", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "nevando", + "wordSecond": "neigeant", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "chovendo", + "wordSecond": "pleuvant", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 14, + "wordFirst": "ventando", + "wordSecond": "ventant", + "createdAt": "2026-02-19T15:12:25.524Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_pt_it_A1.json b/output/2026_02_19_weather_seasons_pt_it_A1.json new file mode 100644 index 0000000..19cd1fd --- /dev/null +++ b/output/2026_02_19_weather_seasons_pt_it_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:12:35.661Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "sol", + "wordSecond": "sole", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nuvem", + "wordSecond": "nuvola", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chuva", + "wordSecond": "pioggia", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "neve", + "wordSecond": "neve", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vento", + "wordSecond": "vento", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "névoa", + "wordSecond": "nebbia", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tempestade", + "wordSecond": "tempesta", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "quente", + "wordSecond": "caldo", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "morno", + "wordSecond": "tiepido", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "frio", + "wordSecond": "freddo", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gelado", + "wordSecond": "gelato", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "verão", + "wordSecond": "estate", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "inverno", + "wordSecond": "inverno", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "primavera", + "wordSecond": "primavera", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "outono", + "wordSecond": "autunno", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ensolarado", + "wordSecond": "soleggiato", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nublado", + "wordSecond": "nuvoloso", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chuvoso", + "wordSecond": "piovoso", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nevando", + "wordSecond": "nevicando", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "ventando", + "wordSecond": "ventoso", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nebuloso", + "wordSecond": "nebbioso", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tempestuoso", + "wordSecond": "tempestoso", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "céu", + "wordSecond": "cielo", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "arco-íris", + "wordSecond": "arcobaleno", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "trovão", + "wordSecond": "tuono", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "relâmpago", + "wordSecond": "lampo", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "granizo", + "wordSecond": "grandine", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "geada", + "wordSecond": "brina", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "calor", + "wordSecond": "calore", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "fresco", + "wordSecond": "fresco", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "gelo", + "wordSecond": "ghiaccio", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "dia", + "wordSecond": "giorno", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "noite", + "wordSecond": "notte", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "amanhecer", + "wordSecond": "alba", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "anoitecer", + "wordSecond": "tramonto", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estrela", + "wordSecond": "stella", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "lua", + "wordSecond": "luna", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "nublado", + "wordSecond": "coperto", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "claro", + "wordSecond": "sereno", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "úmido", + "wordSecond": "umido", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "seco", + "wordSecond": "secco", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "inundação", + "wordSecond": "inondazione", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "seca", + "wordSecond": "siccità", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "tempo", + "wordSecond": "tempo", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "estação", + "wordSecond": "stagione", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "frio", + "wordSecond": "freddo", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "calor", + "wordSecond": "caldo", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "vento", + "wordSecond": "aria", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "raio", + "wordSecond": "fulmine", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 20, + "wordFirst": "chuvisco", + "wordSecond": "pioggerella", + "createdAt": "2026-02-19T15:12:35.661Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_pt_ja_A1.json b/output/2026_02_19_weather_seasons_pt_ja_A1.json new file mode 100644 index 0000000..d7fa03e --- /dev/null +++ b/output/2026_02_19_weather_seasons_pt_ja_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:12:53.271Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sol", + "wordSecond": "晴れ (はれ, hare)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "nublado", + "wordSecond": "曇り (くもり, kumori)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "chuva", + "wordSecond": "雨 (あめ, ame)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "neve", + "wordSecond": "雪 (ゆき, yuki)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "vento", + "wordSecond": "風 (かぜ, kaze)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "nevoeiro", + "wordSecond": "霧 (きり, kiri)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "tempestade", + "wordSecond": "嵐 (あらし, arashi)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "quente", + "wordSecond": "暑い (あつい, atsui)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "morno", + "wordSecond": "暖かい (あたたかい, atatakai)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "fresco", + "wordSecond": "涼しい (すずしい, suzushii)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "frio", + "wordSecond": "寒い (さむい, samui)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "congelante", + "wordSecond": "凍える (こごえる, kogoeru)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "primavera", + "wordSecond": "春 (はる, haru)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "verão", + "wordSecond": "夏 (なつ, natsu)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "outono", + "wordSecond": "秋 (あき, aki)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "inverno", + "wordSecond": "冬 (ふゆ, fuyu)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "trovão", + "wordSecond": "雷 (かみなり, kaminari)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "relâmpago", + "wordSecond": "稲妻 (いなずま, inazuma)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "arco-íris", + "wordSecond": "虹 (にじ, niji)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "inundação", + "wordSecond": "洪水 (こうずい, kōzui)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "seca", + "wordSecond": "干ばつ (かんばつ, kanbatsu)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "céu", + "wordSecond": "空 (そら, sora)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "nuvem", + "wordSecond": "雲 (くも, kumo)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "raio de sol", + "wordSecond": "日光 (にっこう, nikkō)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "sombra", + "wordSecond": "日陰 (ひかげ, hikage)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "orvalho", + "wordSecond": "露 (つゆ, tsuyu)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "geada", + "wordSecond": "霜 (しも, shimo)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "gelo", + "wordSecond": "氷 (こおり, kōri)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "calor", + "wordSecond": "熱さ (あつさ, atsusa)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "frescor", + "wordSecond": "涼しさ (すずしさ, suzushisa)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "frio (temperatura)", + "wordSecond": "寒さ (さむさ, samusa)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "dia", + "wordSecond": "日 (ひ, hi)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "noite", + "wordSecond": "夜 (よる, yoru)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "amanhecer", + "wordSecond": "夜明け (よあけ, yoake)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "anoitecer", + "wordSecond": "夕暮れ (ゆうぐれ, yūgure)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "lua", + "wordSecond": "月 (つき, tsuki)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "estrela", + "wordSecond": "星 (ほし, hoshi)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "vento forte", + "wordSecond": "強風 (きょうふう, kyōfū)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "brisa", + "wordSecond": "そよ風 (そよかぜ, soyokaze)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "chuvisco", + "wordSecond": "小雨 (こさめ, kosame)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "aguaceiro", + "wordSecond": "にわか雨 (にわかあめ, niwakaame)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "neblina", + "wordSecond": "もや (moya)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "clima", + "wordSecond": "天気 (てんき, tenki)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "temperatura", + "wordSecond": "温度 (おんど, ondo)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "umidade", + "wordSecond": "湿度 (しつど, shitsudo)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "estação", + "wordSecond": "季節 (きせつ, kisetsu)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "pôr do sol", + "wordSecond": "夕日 (ゆうひ, yūhi)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "nascer do sol", + "wordSecond": "日の出 (ひので, hinode)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "ar", + "wordSecond": "空気 (くうき, kūki)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 21, + "wordFirst": "temporal", + "wordSecond": "暴風雨 (ぼうふうう, bōfūu)", + "createdAt": "2026-02-19T15:12:53.271Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_pt_ko_A1.json b/output/2026_02_19_weather_seasons_pt_ko_A1.json new file mode 100644 index 0000000..142f17c --- /dev/null +++ b/output/2026_02_19_weather_seasons_pt_ko_A1.json @@ -0,0 +1,624 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:13:21.680Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "sol", + "wordSecond": "해 (hae)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "nuvem", + "wordSecond": "구름 (gureum)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "chuva", + "wordSecond": "비 (bi)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "neve", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "vento", + "wordSecond": "바람 (baram)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "névoa", + "wordSecond": "안개 (angae)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tempestade", + "wordSecond": "폭풍 (pokpung)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "quente", + "wordSecond": "더운 (deoun)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "morno", + "wordSecond": "따뜻한 (ttatteuthan)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "frio", + "wordSecond": "추운 (chuun)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "gelado", + "wordSecond": "얼음 (eoreum)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ensolarado", + "wordSecond": "맑은 (malgeun)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "nublado", + "wordSecond": "흐린 (heurrin)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "chuvoso", + "wordSecond": "비 오는 (bi oneun)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "nevando", + "wordSecond": "눈 오는 (nun oneun)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ventando", + "wordSecond": "바람 부는 (baram buneun)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "neblina", + "wordSecond": "안개 (angae)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "trovão", + "wordSecond": "천둥 (cheondung)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "relâmpago", + "wordSecond": "번개 (beongae)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "arco-íris", + "wordSecond": "무지개 (mujigae)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "inundação", + "wordSecond": "홍수 (hongsu)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "seca", + "wordSecond": "가뭄 (gamum)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "primavera", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "verão", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "outono", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "inverno", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tempo", + "wordSecond": "날씨 (nalssi)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "céu", + "wordSecond": "하늘 (haneul)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "calor", + "wordSecond": "더위 (deowi)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "gelo", + "wordSecond": "얼음 (eoreum)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "orvalho", + "wordSecond": "이슬 (iseul)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "geada", + "wordSecond": "서리 (seori)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "granizo", + "wordSecond": "우박 (ubak)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "chuvisco", + "wordSecond": "이슬비 (iseulbi)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "aguaceiro", + "wordSecond": "소나기 (sonagi)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "raio", + "wordSecond": "번개 (beongae)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "trovoada", + "wordSecond": "천둥 (cheondung)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "tempestade de neve", + "wordSecond": "눈보라 (nunbora)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "vento forte", + "wordSecond": "강풍 (gangpung)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "fresco", + "wordSecond": "시원한 (siwonhan)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "úmido", + "wordSecond": "습한 (seuphan)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "seco", + "wordSecond": "건조한 (geonjohan)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "clima", + "wordSecond": "기후 (gihu)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "estação", + "wordSecond": "계절 (gyejeol)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 13, + "wordFirst": "ano", + "wordSecond": "년 (nyeon)", + "createdAt": "2026-02-19T15:13:21.680Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_pt_pl_A1.json b/output/2026_02_19_weather_seasons_pt_pl_A1.json new file mode 100644 index 0000000..3555663 --- /dev/null +++ b/output/2026_02_19_weather_seasons_pt_pl_A1.json @@ -0,0 +1,633 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:13:32.430Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "sol", + "wordSecond": "słońce", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "nublado", + "wordSecond": "pochmurno", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "chuva", + "wordSecond": "deszcz", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "neve", + "wordSecond": "śnieg", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "vento", + "wordSecond": "wiatr", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "nevoeiro", + "wordSecond": "mgła", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tempestade", + "wordSecond": "burza", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ensolarado", + "wordSecond": "słonecznie", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "quente", + "wordSecond": "gorąco", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "morno", + "wordSecond": "ciepło", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "frio", + "wordSecond": "zimno", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "fresco", + "wordSecond": "chłodno", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "congelante", + "wordSecond": "mroźno", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "verão", + "wordSecond": "lato", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "inverno", + "wordSecond": "zima", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "primavera", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "outono", + "wordSecond": "jesień", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "trovão", + "wordSecond": "grzmot", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "relâmpago", + "wordSecond": "błyskawica", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "arco-íris", + "wordSecond": "tęcza", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "inundação", + "wordSecond": "powódź", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "seca", + "wordSecond": "susza", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "céu", + "wordSecond": "niebo", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "nuvem", + "wordSecond": "chmura", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "gelo", + "wordSecond": "lód", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "geada", + "wordSecond": "szron", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "granizo", + "wordSecond": "grad", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "orvalho", + "wordSecond": "rosa", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "calor", + "wordSecond": "upał", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tempo", + "wordSecond": "pogoda", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "estação", + "wordSecond": "pora roku", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "dia", + "wordSecond": "dzień", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "noite", + "wordSecond": "noc", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "amanhecer", + "wordSecond": "świt", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "anoitecer", + "wordSecond": "zmierzch", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "clima", + "wordSecond": "klimat", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "umidade", + "wordSecond": "wilgotność", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "seco", + "wordSecond": "sucho", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "úmido", + "wordSecond": "wilgotno", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "tempestuoso", + "wordSecond": "burzliwie", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "chuvoso", + "wordSecond": "deszczowo", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "nevoso", + "wordSecond": "śnieżnie", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "ventoso", + "wordSecond": "wietrznie", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "claro", + "wordSecond": "jasno", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "escuro", + "wordSecond": "ciemno", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 24, + "wordFirst": "calmo", + "wordSecond": "spokojnie", + "createdAt": "2026-02-19T15:13:32.430Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_pt_zh_A1.json b/output/2026_02_19_weather_seasons_pt_zh_A1.json new file mode 100644 index 0000000..6c9bb04 --- /dev/null +++ b/output/2026_02_19_weather_seasons_pt_zh_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:13:06.382Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "sol", + "wordSecond": "太阳 (taiyang)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "nublado", + "wordSecond": "多云 (duoyun)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "chuva", + "wordSecond": "雨 (yu)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "neve", + "wordSecond": "雪 (xue)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "vento", + "wordSecond": "风 (feng)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "nevoeiro", + "wordSecond": "雾 (wu)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tempestade", + "wordSecond": "暴风雨 (baofengyu)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "quente", + "wordSecond": "热 (re)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "morno", + "wordSecond": "温暖 (wennuan)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "fresco", + "wordSecond": "凉爽 (liangshuang)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "frio", + "wordSecond": "冷 (leng)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "congelante", + "wordSecond": "冰冻 (bingdong)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "primavera", + "wordSecond": "春天 (chuntian)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "verão", + "wordSecond": "夏天 (xiatian)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "outono", + "wordSecond": "秋天 (qiutian)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "inverno", + "wordSecond": "冬天 (dongtian)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "trovão", + "wordSecond": "雷 (lei)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "relâmpago", + "wordSecond": "闪电 (shandian)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "arco-íris", + "wordSecond": "彩虹 (caihong)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "inundação", + "wordSecond": "洪水 (hongshui)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "seca", + "wordSecond": "干旱 (ganhan)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "céu", + "wordSecond": "天空 (tiankong)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "nuvem", + "wordSecond": "云 (yun)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "chuvisco", + "wordSecond": "小雨 (xiaoyu)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "granizo", + "wordSecond": "冰雹 (bingbao)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "geada", + "wordSecond": "霜 (shuang)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "gelo", + "wordSecond": "冰 (bing)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "calor", + "wordSecond": "热 (re)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "frescor", + "wordSecond": "凉快 (liangkua)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "frio", + "wordSecond": "寒冷 (hanleng)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "ensolarado", + "wordSecond": "晴朗 (qinglang)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "úmido", + "wordSecond": "潮湿 (chaoshi)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "seco", + "wordSecond": "干燥 (ganzao)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "clima", + "wordSecond": "天气 (tianqi)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "temperatura", + "wordSecond": "温度 (wendu)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "estação", + "wordSecond": "季节 (jijie)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "dia", + "wordSecond": "天 (tian)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "noite", + "wordSecond": "晚上 (wanshang)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "amanhecer", + "wordSecond": "早晨 (zaochen)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "anoitecer", + "wordSecond": "傍晚 (bangwan)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "lua", + "wordSecond": "月亮 (yueliang)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "estrela", + "wordSecond": "星星 (xingxing)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "orvalho", + "wordSecond": "露水 (lushui)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "neblina", + "wordSecond": "薄雾 (bowu)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "furacão", + "wordSecond": "飓风 (jufeng)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "tornado", + "wordSecond": "龙卷风 (longjuanfeng)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "chuva forte", + "wordSecond": "大雨 (dayu)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "neve fraca", + "wordSecond": "小雪 (xiaoxue)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "vento forte", + "wordSecond": "大风 (dafeng)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 7, + "languageSecondId": 2, + "wordFirst": "calmo", + "wordSecond": "平静 (pingjing)", + "createdAt": "2026-02-19T15:13:06.382Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_zh_ko_A1.json b/output/2026_02_19_weather_seasons_zh_ko_A1.json new file mode 100644 index 0000000..8f2948f --- /dev/null +++ b/output/2026_02_19_weather_seasons_zh_ko_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:18:12.459Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "天气 (tiānqì)", + "wordSecond": "날씨 (nalssi)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "季节 (jìjié)", + "wordSecond": "계절 (gyejeol)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "春天 (chūntiān)", + "wordSecond": "봄 (bom)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "夏天 (xiàtiān)", + "wordSecond": "여름 (yeoreum)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "秋天 (qiūtiān)", + "wordSecond": "가을 (gaeul)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "冬天 (dōngtiān)", + "wordSecond": "겨울 (gyeoul)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "太阳 (tàiyáng)", + "wordSecond": "해 (hae)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "晴天 (qíngtiān)", + "wordSecond": "맑은 날 (malgeun nal)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "阳光 (yángguāng)", + "wordSecond": "햇빛 (haetbit)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "云 (yún)", + "wordSecond": "구름 (gureum)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "多云 (duōyún)", + "wordSecond": "흐린 (heurim)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "阴天 (yīntiān)", + "wordSecond": "흐린 날 (heurim nal)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "雨 (yǔ)", + "wordSecond": "비 (bi)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "下雨 (xiàyǔ)", + "wordSecond": "비가 오다 (biga oda)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "雨伞 (yǔsǎn)", + "wordSecond": "우산 (usan)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "雪 (xuě)", + "wordSecond": "눈 (nun)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "下雪 (xiàxuě)", + "wordSecond": "눈이 오다 (nuni oda)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "风 (fēng)", + "wordSecond": "바람 (baram)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "刮风 (guāfēng)", + "wordSecond": "바람이 불다 (barami bulda)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "雾 (wù)", + "wordSecond": "안개 (angae)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "有雾 (yǒuwù)", + "wordSecond": "안개가 끼다 (angaega kkida)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "风暴 (fēngbào)", + "wordSecond": "폭풍 (pokpung)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "雷 (léi)", + "wordSecond": "천둥 (cheondung)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "闪电 (shǎndiàn)", + "wordSecond": "번개 (beongae)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "热 (rè)", + "wordSecond": "덥다 (deopda)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "暖和 (nuǎnhuo)", + "wordSecond": "따뜻하다 (ttatteuthada)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "凉快 (liángkuai)", + "wordSecond": "시원하다 (siwonhada)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "冷 (lěng)", + "wordSecond": "춥다 (chupda)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "寒冷 (hánlěng)", + "wordSecond": "추운 (chuun)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "冰 (bīng)", + "wordSecond": "얼음 (eoreum)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "冰雹 (bīngbáo)", + "wordSecond": "우박 (ubak)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "霜 (shuāng)", + "wordSecond": "서리 (seori)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "露水 (lùshui)", + "wordSecond": "이슬 (iseul)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "彩虹 (cǎihóng)", + "wordSecond": "무지개 (mujigae)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "洪水 (hóngshuǐ)", + "wordSecond": "홍수 (hongsu)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "干旱 (gānhàn)", + "wordSecond": "가뭄 (gamum)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "潮湿 (cháoshī)", + "wordSecond": "습한 (seupan)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "干燥 (gānzào)", + "wordSecond": "건조한 (geonjohan)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "温度 (wēndù)", + "wordSecond": "온도 (ondo)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "天气预报 (tiānqì yùbào)", + "wordSecond": "일기 예보 (ilgi yebo)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "气候 (qìhòu)", + "wordSecond": "기후 (gihu)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "天空 (tiānkōng)", + "wordSecond": "하늘 (haneul)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "空气 (kōngqì)", + "wordSecond": "공기 (gonggi)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "温暖 (wēnnuǎn)", + "wordSecond": "따뜻한 (ttatteuthan)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "凉爽 (liángshuǎng)", + "wordSecond": "선선한 (seonseonhan)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "炎热 (yánrè)", + "wordSecond": "무더운 (mudeoun)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "寒冷 (hánlěng)", + "wordSecond": "추운 (chuun)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "结冰 (jiébīng)", + "wordSecond": "얼다 (eolda)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "融化 (rónghuà)", + "wordSecond": "녹다 (nokda)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 13, + "wordFirst": "微风 (wēifēng)", + "wordSecond": "산들바람 (sandeulbaram)", + "createdAt": "2026-02-19T15:18:12.459Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/2026_02_19_weather_seasons_zh_pl_A1.json b/output/2026_02_19_weather_seasons_zh_pl_A1.json new file mode 100644 index 0000000..bc43ea8 --- /dev/null +++ b/output/2026_02_19_weather_seasons_zh_pl_A1.json @@ -0,0 +1,669 @@ +{ + "type": "Category", + "exportDate": "2026-02-19T15:18:26.330Z", + "metadata": { + "itemCount": 50, + "categoryCount": 1, + "exportScope": "Category: Weather & Seasons" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "Weather & Seasons" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "晴天 (qingtian)", + "wordSecond": "słonecznie", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "多云 (duoyun)", + "wordSecond": "pochmurnie", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "下雨 (xiayu)", + "wordSecond": "deszcz", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "雪 (xue)", + "wordSecond": "śnieg", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100004, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "风 (feng)", + "wordSecond": "wiatr", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100005, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "雾 (wu)", + "wordSecond": "mgła", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100006, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "风暴 (fengbao)", + "wordSecond": "burza", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100007, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "热 (re)", + "wordSecond": "gorąco", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100008, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "温暖 (wennuan)", + "wordSecond": "ciepło", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100009, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "凉爽 (liangshuang)", + "wordSecond": "chłodno", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100010, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "冷 (leng)", + "wordSecond": "zimno", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100011, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "冰冻 (bingdong)", + "wordSecond": "mróz", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100012, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "春天 (chuntian)", + "wordSecond": "wiosna", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100013, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "夏天 (xiatian)", + "wordSecond": "lato", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100014, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "秋天 (qiutian)", + "wordSecond": "jesień", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100015, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "冬天 (dongtian)", + "wordSecond": "zima", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100016, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "雷 (lei)", + "wordSecond": "grzmot", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100017, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "闪电 (shandian)", + "wordSecond": "błyskawica", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100018, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "彩虹 (caihong)", + "wordSecond": "tęcza", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100019, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "洪水 (hongshui)", + "wordSecond": "powódź", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100020, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "干旱 (ganhan)", + "wordSecond": "susza", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100021, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "天气 (tianqi)", + "wordSecond": "pogoda", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100022, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "季节 (jijie)", + "wordSecond": "pora roku", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100023, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "太阳 (taiyang)", + "wordSecond": "słońce", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100024, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "云 (yun)", + "wordSecond": "chmura", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100025, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "雨 (yu)", + "wordSecond": "deszcz", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100026, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "冰 (bing)", + "wordSecond": "lód", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100027, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "霜 (shuang)", + "wordSecond": "szron", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100028, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "冰雹 (bingbao)", + "wordSecond": "grad", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100029, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "潮湿 (chaoshi)", + "wordSecond": "wilgotno", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100030, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "干燥 (ganzao)", + "wordSecond": "sucho", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100031, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "微风 (weifeng)", + "wordSecond": "wietrzyk", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100032, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "强风 (qiangfeng)", + "wordSecond": "silny wiatr", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100033, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "暴风雨 (baofengyu)", + "wordSecond": "ulewa", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100034, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "暴风雪 (baofengxue)", + "wordSecond": "zamieć śnieżna", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100035, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "温度 (wendu)", + "wordSecond": "temperatura", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100036, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "炎热 (yanre)", + "wordSecond": "upał", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100037, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "凉爽的 (liangshuang de)", + "wordSecond": "chłodny", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100038, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "寒冷的 (hanleng de)", + "wordSecond": "mroźny", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100039, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "晴朗的 (qinglang de)", + "wordSecond": "bezchmurny", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100040, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "阴天 (yintian)", + "wordSecond": "pochmurny dzień", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100041, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "毛毛雨 (maomaoyu)", + "wordSecond": "mżawka", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100042, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "阵雨 (zhenyu)", + "wordSecond": "przelotny deszcz", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100043, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "雪天 (xuetian)", + "wordSecond": "śnieżny dzień", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100044, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "有雾的 (youwu de)", + "wordSecond": "mglisty", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100045, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "雷雨 (leiyu)", + "wordSecond": "burza z piorunami", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100046, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "阳光 (yangguang)", + "wordSecond": "światło słoneczne", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100047, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "气候 (qihou)", + "wordSecond": "klimat", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100048, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "天气预报 (tianqi yubao)", + "wordSecond": "prognoza pogody", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + }, + { + "id": 100049, + "languageFirstId": 2, + "languageSecondId": 24, + "wordFirst": "自然现象 (ziran xianxiang)", + "wordSecond": "zjawisko naturalne", + "createdAt": "2026-02-19T15:18:26.330Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + }, + { + "vocabularyItemId": 100004, + "stage": "NEW" + }, + { + "vocabularyItemId": 100005, + "stage": "NEW" + }, + { + "vocabularyItemId": 100006, + "stage": "NEW" + }, + { + "vocabularyItemId": 100007, + "stage": "NEW" + }, + { + "vocabularyItemId": 100008, + "stage": "NEW" + }, + { + "vocabularyItemId": 100009, + "stage": "NEW" + }, + { + "vocabularyItemId": 100010, + "stage": "NEW" + }, + { + "vocabularyItemId": 100011, + "stage": "NEW" + }, + { + "vocabularyItemId": 100012, + "stage": "NEW" + }, + { + "vocabularyItemId": 100013, + "stage": "NEW" + }, + { + "vocabularyItemId": 100014, + "stage": "NEW" + }, + { + "vocabularyItemId": 100015, + "stage": "NEW" + }, + { + "vocabularyItemId": 100016, + "stage": "NEW" + }, + { + "vocabularyItemId": 100017, + "stage": "NEW" + }, + { + "vocabularyItemId": 100018, + "stage": "NEW" + }, + { + "vocabularyItemId": 100019, + "stage": "NEW" + }, + { + "vocabularyItemId": 100020, + "stage": "NEW" + }, + { + "vocabularyItemId": 100021, + "stage": "NEW" + }, + { + "vocabularyItemId": 100022, + "stage": "NEW" + }, + { + "vocabularyItemId": 100023, + "stage": "NEW" + }, + { + "vocabularyItemId": 100024, + "stage": "NEW" + }, + { + "vocabularyItemId": 100025, + "stage": "NEW" + }, + { + "vocabularyItemId": 100026, + "stage": "NEW" + }, + { + "vocabularyItemId": 100027, + "stage": "NEW" + }, + { + "vocabularyItemId": 100028, + "stage": "NEW" + }, + { + "vocabularyItemId": 100029, + "stage": "NEW" + }, + { + "vocabularyItemId": 100030, + "stage": "NEW" + }, + { + "vocabularyItemId": 100031, + "stage": "NEW" + }, + { + "vocabularyItemId": 100032, + "stage": "NEW" + }, + { + "vocabularyItemId": 100033, + "stage": "NEW" + }, + { + "vocabularyItemId": 100034, + "stage": "NEW" + }, + { + "vocabularyItemId": 100035, + "stage": "NEW" + }, + { + "vocabularyItemId": 100036, + "stage": "NEW" + }, + { + "vocabularyItemId": 100037, + "stage": "NEW" + }, + { + "vocabularyItemId": 100038, + "stage": "NEW" + }, + { + "vocabularyItemId": 100039, + "stage": "NEW" + }, + { + "vocabularyItemId": 100040, + "stage": "NEW" + }, + { + "vocabularyItemId": 100041, + "stage": "NEW" + }, + { + "vocabularyItemId": 100042, + "stage": "NEW" + }, + { + "vocabularyItemId": 100043, + "stage": "NEW" + }, + { + "vocabularyItemId": 100044, + "stage": "NEW" + }, + { + "vocabularyItemId": 100045, + "stage": "NEW" + }, + { + "vocabularyItemId": 100046, + "stage": "NEW" + }, + { + "vocabularyItemId": 100047, + "stage": "NEW" + }, + { + "vocabularyItemId": 100048, + "stage": "NEW" + }, + { + "vocabularyItemId": 100049, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/output/vocab_manifest.json b/output/vocab_manifest.json new file mode 100644 index 0000000..adbe914 --- /dev/null +++ b/output/vocab_manifest.json @@ -0,0 +1,13040 @@ +{ + "manifest_version": "1.0", + "updated_at": "2026-02-19T16:14:44Z", + "lists": [ + { + "id": "2026_02_19_adjectives_beginners_en_es_A1", + "name": "Adjectives - Beginners", + "description": "The most useful everyday adjectives for describing people, objects, and situations.", + "filename": "2026_02_19_adjectives_beginners_en_es_A1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Adjectives - Beginners", + "item_count": 83, + "level": "A1", + "emoji": "✨", + "version": 1, + "size_bytes": 25233, + "checksum_sha256": "834F68F47BCA96E62A8E48619045E5E8CFA005E65F9AB5EB95123F022CC5257D", + "created_at": "2026-02-19T15:46:44Z", + "updated_at": "2026-02-19T15:46:44Z" + }, + { + "id": "2026_02_19_adjectives_beginners_en_pt_A1", + "name": "Adjectives - Beginners", + "description": "The most useful everyday adjectives for describing people, objects, and situations.", + "filename": "2026_02_19_adjectives_beginners_en_pt_A1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Adjectives - Beginners", + "item_count": 83, + "level": "A1", + "emoji": "✨", + "version": 1, + "size_bytes": 25178, + "checksum_sha256": "9415F44294E1944812C66F462664391D32C2303972DB00D17B4DB6F984380F4B", + "created_at": "2026-02-19T15:46:58Z", + "updated_at": "2026-02-19T15:46:58Z" + }, + { + "id": "2026_02_19_adjectives_beginners_es_pt_A1", + "name": "Adjectives - Beginners", + "description": "The most useful everyday adjectives for describing people, objects, and situations.", + "filename": "2026_02_19_adjectives_beginners_es_pt_A1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Adjectives - Beginners", + "item_count": 83, + "level": "A1", + "emoji": "✨", + "version": 1, + "size_bytes": 25260, + "checksum_sha256": "2A1B2F302B91810FA085F3E557C9DFED5FFA553965F607E66495C5479334945A", + "created_at": "2026-02-19T15:47:13Z", + "updated_at": "2026-02-19T15:47:13Z" + }, + { + "id": "2026_02_19_animals_wildlife_de_fr_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_de_fr_A1.json", + "language_ids": [ + 15, + 14 + ], + "category": "Animals & Wildlife", + "item_count": 84, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25777, + "checksum_sha256": "432D7E9E09CC4AD85D8B4EEF8AB7CCA5377F44D950F3B2AD9D0E146DC2E925AD", + "created_at": "2026-02-19T13:25:22Z", + "updated_at": "2026-02-19T13:25:22Z" + }, + { + "id": "2026_02_19_animals_wildlife_de_it_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_de_it_A1.json", + "language_ids": [ + 15, + 20 + ], + "category": "Animals & Wildlife", + "item_count": 82, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25197, + "checksum_sha256": "4CD074254E7E3CA1BCEABCD3D2C7C2D4EAB7DB996EF7358C05E6F691B27A6B0B", + "created_at": "2026-02-19T13:25:37Z", + "updated_at": "2026-02-19T13:25:37Z" + }, + { + "id": "2026_02_19_animals_wildlife_de_ja_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_de_ja_A1.json", + "language_ids": [ + 15, + 21 + ], + "category": "Animals & Wildlife", + "item_count": 85, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 27475, + "checksum_sha256": "AD936C2D8CCD60B547E56BA123CDFB1D82027C8C7A088810213649B3B92F3F09", + "created_at": "2026-02-19T13:26:05Z", + "updated_at": "2026-02-19T13:26:05Z" + }, + { + "id": "2026_02_19_animals_wildlife_de_ko_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_de_ko_A1.json", + "language_ids": [ + 15, + 13 + ], + "category": "Animals & Wildlife", + "item_count": 83, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26425, + "checksum_sha256": "541881C1AB9BEC6DED30564780A4D99C0F4E1F9B8FF5B2FD40CA5F56A977F577", + "created_at": "2026-02-19T13:26:51Z", + "updated_at": "2026-02-19T13:26:51Z" + }, + { + "id": "2026_02_19_animals_wildlife_de_pl_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_de_pl_A1.json", + "language_ids": [ + 15, + 24 + ], + "category": "Animals & Wildlife", + "item_count": 84, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25755, + "checksum_sha256": "8E1015176C02099F36E38CBB8FBB97B8AA419B6ABD882AD201ABE773C7BD2FFC", + "created_at": "2026-02-19T13:27:08Z", + "updated_at": "2026-02-19T13:27:08Z" + }, + { + "id": "2026_02_19_animals_wildlife_de_zh_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_de_zh_A1.json", + "language_ids": [ + 15, + 2 + ], + "category": "Animals & Wildlife", + "item_count": 81, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25512, + "checksum_sha256": "BB97BC1D3D1FADD6DBBBE3D586E9D639803DED7B9AB3A55FA25488830E6F28D5", + "created_at": "2026-02-19T13:26:27Z", + "updated_at": "2026-02-19T13:26:27Z" + }, + { + "id": "2026_02_19_animals_wildlife_en_de_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_en_de_A1.json", + "language_ids": [ + 1, + 15 + ], + "category": "Animals & Wildlife", + "item_count": 83, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25345, + "checksum_sha256": "E624A0436AE0F291E4675A86B443F05D09A772563E172D7BFFA8CB3121732DCB", + "created_at": "2026-02-19T13:14:40Z", + "updated_at": "2026-02-19T13:14:40Z" + }, + { + "id": "2026_02_19_animals_wildlife_en_es_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_en_es_A1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Animals & Wildlife", + "item_count": 83, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25242, + "checksum_sha256": "386755235441CCD229163E200857C035ED60ACC9F86885A3C49AC9B7B8B470C0", + "created_at": "2026-02-19T13:14:08Z", + "updated_at": "2026-02-19T13:14:08Z" + }, + { + "id": "2026_02_19_animals_wildlife_en_fr_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_en_fr_A1.json", + "language_ids": [ + 1, + 14 + ], + "category": "Animals & Wildlife", + "item_count": 84, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25672, + "checksum_sha256": "86A0F8EF5828C8E7BD1E0D7A1B94AF22C987926E5AB10594873CA85B348808FE", + "created_at": "2026-02-19T13:14:56Z", + "updated_at": "2026-02-19T13:14:56Z" + }, + { + "id": "2026_02_19_animals_wildlife_en_it_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_en_it_A1.json", + "language_ids": [ + 1, + 20 + ], + "category": "Animals & Wildlife", + "item_count": 83, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25410, + "checksum_sha256": "FE55C00CDE8439B78827F739614711FBAB13C19FA688B97EF1B5DD5F1B4B03AE", + "created_at": "2026-02-19T13:15:11Z", + "updated_at": "2026-02-19T13:15:11Z" + }, + { + "id": "2026_02_19_animals_wildlife_en_ja_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_en_ja_A1.json", + "language_ids": [ + 1, + 21 + ], + "category": "Animals & Wildlife", + "item_count": 82, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26611, + "checksum_sha256": "430B430703538579219ECFF78E17B37AC8567AEC303327FA6EEAD50A2D51E1CF", + "created_at": "2026-02-19T13:15:38Z", + "updated_at": "2026-02-19T13:15:38Z" + }, + { + "id": "2026_02_19_animals_wildlife_en_ko_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_en_ko_A1.json", + "language_ids": [ + 1, + 13 + ], + "category": "Animals & Wildlife", + "item_count": 82, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25916, + "checksum_sha256": "138AF3D49B3F8652D24D0E9FB263C793F88E0565C3394986CB700549BF617046", + "created_at": "2026-02-19T13:16:25Z", + "updated_at": "2026-02-19T13:16:25Z" + }, + { + "id": "2026_02_19_animals_wildlife_en_pl_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_en_pl_A1.json", + "language_ids": [ + 1, + 24 + ], + "category": "Animals & Wildlife", + "item_count": 84, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25641, + "checksum_sha256": "BBB5326FCCA181E6CA0B5E8DB9A09E99C376EA5A2E75F55E855B6E1003624DDA", + "created_at": "2026-02-19T13:16:41Z", + "updated_at": "2026-02-19T13:16:41Z" + }, + { + "id": "2026_02_19_animals_wildlife_en_pt_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_en_pt_A1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Animals & Wildlife", + "item_count": 85, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25937, + "checksum_sha256": "F0456E2F7F7AC302AAB186AC66506AC619EF0098ECB56F3B118CD29869CB33E1", + "created_at": "2026-02-19T13:14:24Z", + "updated_at": "2026-02-19T13:14:24Z" + }, + { + "id": "2026_02_19_animals_wildlife_en_zh_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_en_zh_A1.json", + "language_ids": [ + 1, + 2 + ], + "category": "Animals & Wildlife", + "item_count": 86, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 27028, + "checksum_sha256": "DB0F4CF799B59EBC554BB0C1A24B17E86CB8E7BD5070654AAE5D67BCF910BEAD", + "created_at": "2026-02-19T13:16:01Z", + "updated_at": "2026-02-19T13:16:01Z" + }, + { + "id": "2026_02_19_animals_wildlife_es_de_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_es_de_A1.json", + "language_ids": [ + 3, + 15 + ], + "category": "Animals & Wildlife", + "item_count": 83, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26030, + "checksum_sha256": "3FC7DC167CD240DE1E67611CB476BC9AF7EE411E85C9CFE020257151D5F68C85", + "created_at": "2026-02-19T13:17:17Z", + "updated_at": "2026-02-19T13:17:17Z" + }, + { + "id": "2026_02_19_animals_wildlife_es_fr_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_es_fr_A1.json", + "language_ids": [ + 3, + 14 + ], + "category": "Animals & Wildlife", + "item_count": 82, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25185, + "checksum_sha256": "FC25B3FD09ED65C84FD5104173AB03C61179D4EEF23E75311A60E71B68E815A5", + "created_at": "2026-02-19T13:17:33Z", + "updated_at": "2026-02-19T13:17:33Z" + }, + { + "id": "2026_02_19_animals_wildlife_es_it_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_es_it_A1.json", + "language_ids": [ + 3, + 20 + ], + "category": "Animals & Wildlife", + "item_count": 81, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 24800, + "checksum_sha256": "2C6A32880BFBD2798CDD9571131E62BB357A233D4D95163733FE530CC341EB4B", + "created_at": "2026-02-19T13:17:50Z", + "updated_at": "2026-02-19T13:17:50Z" + }, + { + "id": "2026_02_19_animals_wildlife_es_ja_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_es_ja_A1.json", + "language_ids": [ + 3, + 21 + ], + "category": "Animals & Wildlife", + "item_count": 82, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26810, + "checksum_sha256": "8F8DBC640488C7A9244F7426617C82AF5C7C18E65F140B7F964B4E22ED0AABB0", + "created_at": "2026-02-19T13:18:18Z", + "updated_at": "2026-02-19T13:18:18Z" + }, + { + "id": "2026_02_19_animals_wildlife_es_ko_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_es_ko_A1.json", + "language_ids": [ + 3, + 13 + ], + "category": "Animals & Wildlife", + "item_count": 82, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25931, + "checksum_sha256": "9E3460F305086A33D0C6BAA8BEC1900E08A0973DF2B6F9C38CD2F8C958B9B576", + "created_at": "2026-02-19T15:56:49Z", + "updated_at": "2026-02-19T15:56:49Z" + }, + { + "id": "2026_02_19_animals_wildlife_es_pl_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_es_pl_A1.json", + "language_ids": [ + 3, + 24 + ], + "category": "Animals & Wildlife", + "item_count": 82, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25075, + "checksum_sha256": "6A2176BE94CF21BEE5BB04687FA1E4491645372CC1B00982528C9A948A15DD5A", + "created_at": "2026-02-19T13:22:42Z", + "updated_at": "2026-02-19T13:22:42Z" + }, + { + "id": "2026_02_19_animals_wildlife_es_pt_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_es_pt_A1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Animals & Wildlife", + "item_count": 83, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25386, + "checksum_sha256": "5A199EFD729D9DE69085573FD5E54A008CA2756AC14140C1DEC97B402C5F47FE", + "created_at": "2026-02-19T13:16:58Z", + "updated_at": "2026-02-19T13:16:58Z" + }, + { + "id": "2026_02_19_animals_wildlife_es_zh_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_es_zh_A1.json", + "language_ids": [ + 3, + 2 + ], + "category": "Animals & Wildlife", + "item_count": 83, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26148, + "checksum_sha256": "F305C4F975CE7296AF789239827946CD55961B3BFE4D92A553072DD3916F8CD5", + "created_at": "2026-02-19T13:18:42Z", + "updated_at": "2026-02-19T13:18:42Z" + }, + { + "id": "2026_02_19_animals_wildlife_fr_it_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_fr_it_A1.json", + "language_ids": [ + 14, + 20 + ], + "category": "Animals & Wildlife", + "item_count": 84, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25848, + "checksum_sha256": "CED7011991B19EADF4EC0F9159C5743CE304FED377CD15BA5A0CF84D379EB407", + "created_at": "2026-02-19T13:27:25Z", + "updated_at": "2026-02-19T13:27:25Z" + }, + { + "id": "2026_02_19_animals_wildlife_fr_ja_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_fr_ja_A1.json", + "language_ids": [ + 14, + 21 + ], + "category": "Animals & Wildlife", + "item_count": 80, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25646, + "checksum_sha256": "B5C37553D6F513106D80313E9D6F17068695C13154EF00C85DA17A8C716FBDC6", + "created_at": "2026-02-19T13:27:47Z", + "updated_at": "2026-02-19T13:27:47Z" + }, + { + "id": "2026_02_19_animals_wildlife_fr_ko_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_fr_ko_A1.json", + "language_ids": [ + 14, + 13 + ], + "category": "Animals & Wildlife", + "item_count": 84, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26639, + "checksum_sha256": "DBD99EFD46BD1B13CB4843F5F72798C7A4E7F7780F485F2A4F8A67923FAE2D3C", + "created_at": "2026-02-19T13:28:33Z", + "updated_at": "2026-02-19T13:28:33Z" + }, + { + "id": "2026_02_19_animals_wildlife_fr_pl_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_fr_pl_A1.json", + "language_ids": [ + 14, + 24 + ], + "category": "Animals & Wildlife", + "item_count": 85, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26133, + "checksum_sha256": "C50AE88BAB95896DB3B203F2B9CA23DD78BCFEF449CD9E15BEF61ED7FC6683D8", + "created_at": "2026-02-19T13:28:50Z", + "updated_at": "2026-02-19T13:28:50Z" + }, + { + "id": "2026_02_19_animals_wildlife_fr_zh_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_fr_zh_A1.json", + "language_ids": [ + 14, + 2 + ], + "category": "Animals & Wildlife", + "item_count": 83, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26137, + "checksum_sha256": "9A992B8438C305781EFD5F0D6D09D096C5A7F18E5E415C1EB811DBB903439AEE", + "created_at": "2026-02-19T13:28:09Z", + "updated_at": "2026-02-19T13:28:09Z" + }, + { + "id": "2026_02_19_animals_wildlife_it_ja_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_it_ja_A1.json", + "language_ids": [ + 20, + 21 + ], + "category": "Animals & Wildlife", + "item_count": 82, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26808, + "checksum_sha256": "E69108DE3E08698FD13DC4E6BA4CBC9AEEA21C79323CF6A2E5D9F3FAFE1E6051", + "created_at": "2026-02-19T13:30:30Z", + "updated_at": "2026-02-19T13:30:30Z" + }, + { + "id": "2026_02_19_animals_wildlife_it_ko_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_it_ko_A1.json", + "language_ids": [ + 20, + 13 + ], + "category": "Animals & Wildlife", + "item_count": 84, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26682, + "checksum_sha256": "98672ED29675D83547146A5A129E7A285A9EB69E79C8D5CF2F24883F143AB80E", + "created_at": "2026-02-19T13:31:17Z", + "updated_at": "2026-02-19T13:31:17Z" + }, + { + "id": "2026_02_19_animals_wildlife_it_pl_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_it_pl_A1.json", + "language_ids": [ + 20, + 24 + ], + "category": "Animals & Wildlife", + "item_count": 90, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 27752, + "checksum_sha256": "9A5A8527ECC9DC2E5DA69E6C8803847FF183F0A81C30EC384DC46E5EB61EF8B2", + "created_at": "2026-02-19T13:31:36Z", + "updated_at": "2026-02-19T13:31:36Z" + }, + { + "id": "2026_02_19_animals_wildlife_it_zh_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_it_zh_A1.json", + "language_ids": [ + 20, + 2 + ], + "category": "Animals & Wildlife", + "item_count": 81, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25588, + "checksum_sha256": "CB2264379EB5253D3F709A279B359B6FDFD6A99048BF45882E7E4BB9498A3AF9", + "created_at": "2026-02-19T13:30:52Z", + "updated_at": "2026-02-19T13:30:52Z" + }, + { + "id": "2026_02_19_animals_wildlife_ja_ko_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_ja_ko_A1.json", + "language_ids": [ + 21, + 13 + ], + "category": "Animals & Wildlife", + "item_count": 81, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 27367, + "checksum_sha256": "E5D035764D460F49DA13B6FC3FF20D8D7F0C75FB6322151B939059EB3D74D470", + "created_at": "2026-02-19T13:32:44Z", + "updated_at": "2026-02-19T13:32:44Z" + }, + { + "id": "2026_02_19_animals_wildlife_ja_pl_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_ja_pl_A1.json", + "language_ids": [ + 21, + 24 + ], + "category": "Animals & Wildlife", + "item_count": 83, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26915, + "checksum_sha256": "B8234CCD2A678F15544439B3E8B3635C22DEDF228BEEEACB052EDB9C67F102E3", + "created_at": "2026-02-19T13:33:09Z", + "updated_at": "2026-02-19T13:33:09Z" + }, + { + "id": "2026_02_19_animals_wildlife_ja_zh_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_ja_zh_A1.json", + "language_ids": [ + 21, + 2 + ], + "category": "Animals & Wildlife", + "item_count": 84, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 28255, + "checksum_sha256": "8B00C053F62DF9435A8053468817D4A9EF4ADE6486FEAF4B895F3866957CEA0A", + "created_at": "2026-02-19T13:32:10Z", + "updated_at": "2026-02-19T13:32:10Z" + }, + { + "id": "2026_02_19_animals_wildlife_ko_pl_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_ko_pl_A1.json", + "language_ids": [ + 13, + 24 + ], + "category": "Animals & Wildlife", + "item_count": 84, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26686, + "checksum_sha256": "F980F5FB2ACBA8925CA9C676FBBD187C4EA3D72FE71A31EE801C839D1C43315C", + "created_at": "2026-02-19T13:34:21Z", + "updated_at": "2026-02-19T13:34:21Z" + }, + { + "id": "2026_02_19_animals_wildlife_pt_de_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_pt_de_A1.json", + "language_ids": [ + 7, + 15 + ], + "category": "Animals & Wildlife", + "item_count": 82, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25135, + "checksum_sha256": "DA8530305ECAE1D338D74594D5DE921EB5627E65648BE4C153DC758CF5B49634", + "created_at": "2026-02-19T13:22:58Z", + "updated_at": "2026-02-19T13:22:58Z" + }, + { + "id": "2026_02_19_animals_wildlife_pt_fr_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_pt_fr_A1.json", + "language_ids": [ + 7, + 14 + ], + "category": "Animals & Wildlife", + "item_count": 85, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26085, + "checksum_sha256": "8089C1FFD268FE4EC4E0C154EF707819C66A3BAF845AB3D8B29EC8B6C109B34B", + "created_at": "2026-02-19T13:23:15Z", + "updated_at": "2026-02-19T13:23:15Z" + }, + { + "id": "2026_02_19_animals_wildlife_pt_it_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_pt_it_A1.json", + "language_ids": [ + 7, + 20 + ], + "category": "Animals & Wildlife", + "item_count": 85, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26117, + "checksum_sha256": "54C61BAFB8350F29D0747E33BF04B603EAAA20A9B42A6E099BA658267AE62101", + "created_at": "2026-02-19T13:23:32Z", + "updated_at": "2026-02-19T13:23:32Z" + }, + { + "id": "2026_02_19_animals_wildlife_pt_ja_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_pt_ja_A1.json", + "language_ids": [ + 7, + 21 + ], + "category": "Animals & Wildlife", + "item_count": 83, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 27235, + "checksum_sha256": "A6AA59233EAA68875DF5E2298FF5FFA0D649F0612FECC4F7100A3D560AB37334", + "created_at": "2026-02-19T13:24:01Z", + "updated_at": "2026-02-19T13:24:01Z" + }, + { + "id": "2026_02_19_animals_wildlife_pt_ko_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_pt_ko_A1.json", + "language_ids": [ + 7, + 13 + ], + "category": "Animals & Wildlife", + "item_count": 83, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26317, + "checksum_sha256": "58C6F25E14A79CFD416C969DDDBA2CCE83C0F181938219A34806847D2698D5AE", + "created_at": "2026-02-19T13:24:49Z", + "updated_at": "2026-02-19T13:24:49Z" + }, + { + "id": "2026_02_19_animals_wildlife_pt_pl_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_pt_pl_A1.json", + "language_ids": [ + 7, + 24 + ], + "category": "Animals & Wildlife", + "item_count": 83, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25407, + "checksum_sha256": "A386A9B7FA49F33EF0C9E93954D9D53224EEEA0E351A62922EC5D331083756D0", + "created_at": "2026-02-19T13:25:05Z", + "updated_at": "2026-02-19T13:25:05Z" + }, + { + "id": "2026_02_19_animals_wildlife_pt_zh_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_pt_zh_A1.json", + "language_ids": [ + 7, + 2 + ], + "category": "Animals & Wildlife", + "item_count": 81, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 25524, + "checksum_sha256": "4A155983B96EFD751D4EB565727308A5B46A09C218CA50F17DCFAB7CB213CCB2", + "created_at": "2026-02-19T13:24:24Z", + "updated_at": "2026-02-19T13:24:24Z" + }, + { + "id": "2026_02_19_animals_wildlife_zh_ko_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_zh_ko_A1.json", + "language_ids": [ + 2, + 13 + ], + "category": "Animals & Wildlife", + "item_count": 82, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26468, + "checksum_sha256": "01022E1491DCA4809025CAC2889718C4614B7FDB69E98D502B983B79DAA58487", + "created_at": "2026-02-19T13:33:36Z", + "updated_at": "2026-02-19T13:33:36Z" + }, + { + "id": "2026_02_19_animals_wildlife_zh_pl_A1", + "name": "Animals & Wildlife", + "description": "Common animals from pets and farm animals to wild and exotic species — beloved vocabulary for all ages.", + "filename": "2026_02_19_animals_wildlife_zh_pl_A1.json", + "language_ids": [ + 2, + 24 + ], + "category": "Animals & Wildlife", + "item_count": 83, + "level": "A1", + "emoji": "🐾", + "version": 1, + "size_bytes": 26185, + "checksum_sha256": "AE0F1BE1E7478E202F37FD87D210F7AD9C100873641F1B68B7D382FA1D8CE3A3", + "created_at": "2026-02-19T13:33:58Z", + "updated_at": "2026-02-19T13:33:58Z" + }, + { + "id": "2026_02_19_arts_culture_en_es_B1", + "name": "Arts & Culture", + "description": "Vocabulary for art forms, cultural expressions, music, cinema, and creativity.", + "filename": "2026_02_19_arts_culture_en_es_B1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Arts & Culture", + "item_count": 92, + "level": "B1", + "emoji": "🎭", + "version": 1, + "size_bytes": 28112, + "checksum_sha256": "6C0C33C7203FBF3EC34E987E34FA0D2042133C739F70237B23ED6E51A187F6BA", + "created_at": "2026-02-19T16:02:58Z", + "updated_at": "2026-02-19T16:02:58Z" + }, + { + "id": "2026_02_19_arts_culture_en_pt_B1", + "name": "Arts & Culture", + "description": "Vocabulary for art forms, cultural expressions, music, cinema, and creativity.", + "filename": "2026_02_19_arts_culture_en_pt_B1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Arts & Culture", + "item_count": 73, + "level": "B1", + "emoji": "🎭", + "version": 1, + "size_bytes": 22352, + "checksum_sha256": "E6163978F9B710123ABB5D93DA935D5C08F1D1F81DEB32E13263D1257E3A1CED", + "created_at": "2026-02-19T16:13:14Z", + "updated_at": "2026-02-19T16:13:14Z" + }, + { + "id": "2026_02_19_arts_culture_es_pt_B1", + "name": "Arts & Culture", + "description": "Vocabulary for art forms, cultural expressions, music, cinema, and creativity.", + "filename": "2026_02_19_arts_culture_es_pt_B1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Arts & Culture", + "item_count": 76, + "level": "B1", + "emoji": "🎭", + "version": 1, + "size_bytes": 23360, + "checksum_sha256": "E7541973FCC834CB032A03F97C207302F26B1AFB87C405213E59408AA77540B4", + "created_at": "2026-02-19T16:13:29Z", + "updated_at": "2026-02-19T16:13:29Z" + }, + { + "id": "2026_02_19_body_parts_health_de_fr_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_de_fr_A2.json", + "language_ids": [ + 15, + 14 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 21879, + "checksum_sha256": "D8557A8B6A9FFBD6BE85232BC46C898FE5E29DD559F8005F320BCB88783ACCD4", + "created_at": "2026-02-19T14:07:25Z", + "updated_at": "2026-02-19T14:07:25Z" + }, + { + "id": "2026_02_19_body_parts_health_de_it_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_de_it_A2.json", + "language_ids": [ + 15, + 20 + ], + "category": "Body Parts & Health", + "item_count": 70, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 21607, + "checksum_sha256": "1CBDC7EB97D32BB37DAFFE6C7634CFD43742577EFFCAFB4822CFB5B91E099272", + "created_at": "2026-02-19T14:07:39Z", + "updated_at": "2026-02-19T14:07:39Z" + }, + { + "id": "2026_02_19_body_parts_health_de_ja_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_de_ja_A2.json", + "language_ids": [ + 15, + 21 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 23073, + "checksum_sha256": "4D796D6EF6A786ABE786DFDDC4F62C22520C73DD97857D76FEB500FFC59EAFD7", + "created_at": "2026-02-19T14:08:01Z", + "updated_at": "2026-02-19T14:08:01Z" + }, + { + "id": "2026_02_19_body_parts_health_de_ko_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_de_ko_A2.json", + "language_ids": [ + 15, + 13 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22434, + "checksum_sha256": "443AE45A854449C8E3E850FA1BF0AF57556613AC2616B7610A5508CC29E1BDC0", + "created_at": "2026-02-19T14:08:39Z", + "updated_at": "2026-02-19T14:08:39Z" + }, + { + "id": "2026_02_19_body_parts_health_de_pl_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_de_pl_A2.json", + "language_ids": [ + 15, + 24 + ], + "category": "Body Parts & Health", + "item_count": 72, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22211, + "checksum_sha256": "8D960DA79AB326D8FBD3743D6901A5A92346FAEB63063536AA4850F1F80CBE31", + "created_at": "2026-02-19T14:08:53Z", + "updated_at": "2026-02-19T14:08:53Z" + }, + { + "id": "2026_02_19_body_parts_health_de_zh_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_de_zh_A2.json", + "language_ids": [ + 15, + 2 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22295, + "checksum_sha256": "8ACE63279AF91C7D0A3D67D9A141EBD44E6EA28F7C2D85782F4BEECA93DA7132", + "created_at": "2026-02-19T14:08:19Z", + "updated_at": "2026-02-19T14:08:19Z" + }, + { + "id": "2026_02_19_body_parts_health_en_de_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_en_de_A2.json", + "language_ids": [ + 1, + 15 + ], + "category": "Body Parts & Health", + "item_count": 70, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 21371, + "checksum_sha256": "40327DA4F3649756998CB71A86E8534CE4B33E746BC21190FD29F59207898CB5", + "created_at": "2026-02-19T14:01:21Z", + "updated_at": "2026-02-19T14:01:21Z" + }, + { + "id": "2026_02_19_body_parts_health_en_es_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_en_es_A2.json", + "language_ids": [ + 1, + 3 + ], + "category": "Body Parts & Health", + "item_count": 70, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 21361, + "checksum_sha256": "DF6083392E4F0FB33CCABCCAE75155D9A0FA5D53CED6EB0CF62A497833FBF118", + "created_at": "2026-02-19T14:00:55Z", + "updated_at": "2026-02-19T14:00:55Z" + }, + { + "id": "2026_02_19_body_parts_health_en_fr_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_en_fr_A2.json", + "language_ids": [ + 1, + 14 + ], + "category": "Body Parts & Health", + "item_count": 72, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22009, + "checksum_sha256": "C13017CCD5EEDBC337B84E2383C568973D24C1FB2F52CDC0F1CE6665002B1F2E", + "created_at": "2026-02-19T14:01:33Z", + "updated_at": "2026-02-19T14:01:33Z" + }, + { + "id": "2026_02_19_body_parts_health_en_it_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_en_it_A2.json", + "language_ids": [ + 1, + 20 + ], + "category": "Body Parts & Health", + "item_count": 70, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 21410, + "checksum_sha256": "CD79C609CA0F98EE0C844CEE886F8D0C4C68CA9268D4DA79CD6AEBC83C87D24F", + "created_at": "2026-02-19T14:01:45Z", + "updated_at": "2026-02-19T14:01:45Z" + }, + { + "id": "2026_02_19_body_parts_health_en_ja_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_en_ja_A2.json", + "language_ids": [ + 1, + 21 + ], + "category": "Body Parts & Health", + "item_count": 74, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 23880, + "checksum_sha256": "25014CAE74D17E9A2A3A8BA5E98BB748CC2A3EC2751B5A830F2B511CE0B6C3EC", + "created_at": "2026-02-19T14:02:07Z", + "updated_at": "2026-02-19T14:02:07Z" + }, + { + "id": "2026_02_19_body_parts_health_en_ko_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_en_ko_A2.json", + "language_ids": [ + 1, + 13 + ], + "category": "Body Parts & Health", + "item_count": 72, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22569, + "checksum_sha256": "20DB2512624BD7A9E4CF64B8E359B306AA1A23E6C7BB500965FD63A46D666AB2", + "created_at": "2026-02-19T14:02:42Z", + "updated_at": "2026-02-19T14:02:42Z" + }, + { + "id": "2026_02_19_body_parts_health_en_pl_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_en_pl_A2.json", + "language_ids": [ + 1, + 24 + ], + "category": "Body Parts & Health", + "item_count": 74, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22636, + "checksum_sha256": "9114D000F3B402D30AAEA8345D5017F0DECB2DE99075D4A7F6508D602B560DCC", + "created_at": "2026-02-19T14:02:56Z", + "updated_at": "2026-02-19T14:02:56Z" + }, + { + "id": "2026_02_19_body_parts_health_en_pt_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_en_pt_A2.json", + "language_ids": [ + 1, + 7 + ], + "category": "Body Parts & Health", + "item_count": 74, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22581, + "checksum_sha256": "EB4AB7535B95066FC46E1638C832E2EC6A5D604D70EBD9662AA656F3D348DA0A", + "created_at": "2026-02-19T14:01:08Z", + "updated_at": "2026-02-19T14:01:08Z" + }, + { + "id": "2026_02_19_body_parts_health_en_zh_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_en_zh_A2.json", + "language_ids": [ + 1, + 2 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22187, + "checksum_sha256": "71C91287B16CA9D1A224BA6B4C2663004B0D548D8EE49DBEA8A88B0511A42B9D", + "created_at": "2026-02-19T14:02:24Z", + "updated_at": "2026-02-19T14:02:24Z" + }, + { + "id": "2026_02_19_body_parts_health_es_de_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_es_de_A2.json", + "language_ids": [ + 3, + 15 + ], + "category": "Body Parts & Health", + "item_count": 74, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22774, + "checksum_sha256": "FA4C7B76E313DED025FEFC59618F8E9A75305FFE0E19F41036E59DFAF4BFFD00", + "created_at": "2026-02-19T14:03:26Z", + "updated_at": "2026-02-19T14:03:26Z" + }, + { + "id": "2026_02_19_body_parts_health_es_fr_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_es_fr_A2.json", + "language_ids": [ + 3, + 14 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 21832, + "checksum_sha256": "AF28DAFA69A4C550338AFAAC5120808D7DF8082781CB249642FF3DBDE6CDFDF4", + "created_at": "2026-02-19T14:03:39Z", + "updated_at": "2026-02-19T14:03:39Z" + }, + { + "id": "2026_02_19_body_parts_health_es_it_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_es_it_A2.json", + "language_ids": [ + 3, + 20 + ], + "category": "Body Parts & Health", + "item_count": 80, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 24522, + "checksum_sha256": "FE54D204CA8F5998F524562D64E0B918F4E1D33527B8D9619C7AF2D9A86F031A", + "created_at": "2026-02-19T14:03:55Z", + "updated_at": "2026-02-19T14:03:55Z" + }, + { + "id": "2026_02_19_body_parts_health_es_ja_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_es_ja_A2.json", + "language_ids": [ + 3, + 21 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 23074, + "checksum_sha256": "AEE0A9F8FCC4D80F244F76BA2D8548E3442233AD28D5FF443A0D50E6AA1353F1", + "created_at": "2026-02-19T14:04:17Z", + "updated_at": "2026-02-19T14:04:17Z" + }, + { + "id": "2026_02_19_body_parts_health_es_ko_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_es_ko_A2.json", + "language_ids": [ + 3, + 13 + ], + "category": "Body Parts & Health", + "item_count": 70, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22088, + "checksum_sha256": "3BD8FEE9BC4A2480A2DC66DA0F5692A643483E645CE4F1119E4EA1291B0E4971", + "created_at": "2026-02-19T14:04:56Z", + "updated_at": "2026-02-19T14:04:56Z" + }, + { + "id": "2026_02_19_body_parts_health_es_pl_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_es_pl_A2.json", + "language_ids": [ + 3, + 24 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 21880, + "checksum_sha256": "CAA7A1E6539C10EAFF8D76AE9B7C06983D4FBF670C53B4322B51C633FC051D53", + "created_at": "2026-02-19T14:05:11Z", + "updated_at": "2026-02-19T14:05:11Z" + }, + { + "id": "2026_02_19_body_parts_health_es_pt_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_es_pt_A2.json", + "language_ids": [ + 3, + 7 + ], + "category": "Body Parts & Health", + "item_count": 74, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22746, + "checksum_sha256": "9F7DBE33771C962427B9196AF3D125614447FE31826B1DA06068543A05FC142E", + "created_at": "2026-02-19T14:03:11Z", + "updated_at": "2026-02-19T14:03:11Z" + }, + { + "id": "2026_02_19_body_parts_health_es_zh_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_es_zh_A2.json", + "language_ids": [ + 3, + 2 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22399, + "checksum_sha256": "A6A9D07825D615BF0687035105B88714AFFAF1A69006321FEAD03253FFF4B97E", + "created_at": "2026-02-19T14:04:36Z", + "updated_at": "2026-02-19T14:04:36Z" + }, + { + "id": "2026_02_19_body_parts_health_fr_it_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_fr_it_A2.json", + "language_ids": [ + 14, + 20 + ], + "category": "Body Parts & Health", + "item_count": 76, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 23368, + "checksum_sha256": "5906AF9470F63400829C4AC5646F692384899D6CB110591904A0A50407CC5CD6", + "created_at": "2026-02-19T14:09:08Z", + "updated_at": "2026-02-19T14:09:08Z" + }, + { + "id": "2026_02_19_body_parts_health_fr_ja_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_fr_ja_A2.json", + "language_ids": [ + 14, + 21 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 23075, + "checksum_sha256": "B4C5B05D4606C457A3053AFCAE6923C51B398A19DBE1CAA813EBA731F9C9EB0E", + "created_at": "2026-02-19T14:09:30Z", + "updated_at": "2026-02-19T14:09:30Z" + }, + { + "id": "2026_02_19_body_parts_health_fr_ko_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_fr_ko_A2.json", + "language_ids": [ + 14, + 13 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22463, + "checksum_sha256": "E69096C9BAD91CA57DCFD40691ADB6007AE948FD8E2607094E04D56B81B21456", + "created_at": "2026-02-19T14:10:12Z", + "updated_at": "2026-02-19T14:10:12Z" + }, + { + "id": "2026_02_19_body_parts_health_fr_pl_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_fr_pl_A2.json", + "language_ids": [ + 14, + 24 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 21861, + "checksum_sha256": "C4197663B2FA071536C49433146C0B4490BAF8E7C9CA5B692169FC25937CAB3D", + "created_at": "2026-02-19T14:10:26Z", + "updated_at": "2026-02-19T14:10:26Z" + }, + { + "id": "2026_02_19_body_parts_health_fr_zh_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_fr_zh_A2.json", + "language_ids": [ + 14, + 2 + ], + "category": "Body Parts & Health", + "item_count": 78, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 24656, + "checksum_sha256": "0E07636A7EC70E49DB1DDE05BC19A2AE518992E447665C0FDCD9C28ABC2F031F", + "created_at": "2026-02-19T14:09:51Z", + "updated_at": "2026-02-19T14:09:51Z" + }, + { + "id": "2026_02_19_body_parts_health_it_ja_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_it_ja_A2.json", + "language_ids": [ + 20, + 21 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 23163, + "checksum_sha256": "F9B3CFC718A630522859DDE09CDE2777B7E80009D999EDF16EF5DB3A29FC6547", + "created_at": "2026-02-19T14:10:50Z", + "updated_at": "2026-02-19T14:10:50Z" + }, + { + "id": "2026_02_19_body_parts_health_it_ko_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_it_ko_A2.json", + "language_ids": [ + 20, + 13 + ], + "category": "Body Parts & Health", + "item_count": 70, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22230, + "checksum_sha256": "3D0B56E8DBA20628F8CD048A42FF9F5ECF7008F2D5AA8F63FB7ABC9469B66D81", + "created_at": "2026-02-19T14:11:29Z", + "updated_at": "2026-02-19T14:11:29Z" + }, + { + "id": "2026_02_19_body_parts_health_it_pl_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_it_pl_A2.json", + "language_ids": [ + 20, + 24 + ], + "category": "Body Parts & Health", + "item_count": 74, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22816, + "checksum_sha256": "0725D9E1364D1F830C842A8B8F119F144A04812C1DC1F5C72FE79F20B8E85583", + "created_at": "2026-02-19T14:11:44Z", + "updated_at": "2026-02-19T14:11:44Z" + }, + { + "id": "2026_02_19_body_parts_health_it_zh_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_it_zh_A2.json", + "language_ids": [ + 20, + 2 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22371, + "checksum_sha256": "5F034C0C6E9DC5C02B84B86675A6BE1348889F0C7F0B7AEC21259FF20473394D", + "created_at": "2026-02-19T14:11:08Z", + "updated_at": "2026-02-19T14:11:08Z" + }, + { + "id": "2026_02_19_body_parts_health_ja_ko_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_ja_ko_A2.json", + "language_ids": [ + 21, + 13 + ], + "category": "Body Parts & Health", + "item_count": 75, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 24953, + "checksum_sha256": "D758345DE6E53927386B0714BBE8EF7D9BE3A8C756BE53D378A0E205523FD30A", + "created_at": "2026-02-19T14:12:40Z", + "updated_at": "2026-02-19T14:12:40Z" + }, + { + "id": "2026_02_19_body_parts_health_ja_pl_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_ja_pl_A2.json", + "language_ids": [ + 21, + 24 + ], + "category": "Body Parts & Health", + "item_count": 73, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 23864, + "checksum_sha256": "6BB1BC4CA67E27AEDC8A970D6BB0CDEB090504FBEC2F522317A1E2809A68A23A", + "created_at": "2026-02-19T14:13:04Z", + "updated_at": "2026-02-19T14:13:04Z" + }, + { + "id": "2026_02_19_body_parts_health_ja_zh_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_ja_zh_A2.json", + "language_ids": [ + 21, + 2 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 23638, + "checksum_sha256": "406D2A37D56762CC9772FDC616ADCFBFF1D0729783370120BBC6C3D0DB50F232", + "created_at": "2026-02-19T14:12:12Z", + "updated_at": "2026-02-19T14:12:12Z" + }, + { + "id": "2026_02_19_body_parts_health_ko_pl_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_ko_pl_A2.json", + "language_ids": [ + 13, + 24 + ], + "category": "Body Parts & Health", + "item_count": 70, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22128, + "checksum_sha256": "BE1B7257207E818E5DEA7CCAA5F73480A75BF9006A9D68A37F5158B6C198A6BE", + "created_at": "2026-02-19T14:14:04Z", + "updated_at": "2026-02-19T14:14:04Z" + }, + { + "id": "2026_02_19_body_parts_health_pt_de_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_pt_de_A2.json", + "language_ids": [ + 7, + 15 + ], + "category": "Body Parts & Health", + "item_count": 70, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 21502, + "checksum_sha256": "4C9722E03D0184BF4CF645646C7D967A03D30E7F0F370055B991E9AFDC679B92", + "created_at": "2026-02-19T14:05:25Z", + "updated_at": "2026-02-19T14:05:25Z" + }, + { + "id": "2026_02_19_body_parts_health_pt_fr_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_pt_fr_A2.json", + "language_ids": [ + 7, + 14 + ], + "category": "Body Parts & Health", + "item_count": 75, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 23004, + "checksum_sha256": "F947CCD289F895A153321843A9472BA98DD5CB3B5E06C98605FCF6E5B6E60656", + "created_at": "2026-02-19T14:05:39Z", + "updated_at": "2026-02-19T14:05:39Z" + }, + { + "id": "2026_02_19_body_parts_health_pt_it_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_pt_it_A2.json", + "language_ids": [ + 7, + 20 + ], + "category": "Body Parts & Health", + "item_count": 76, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 23314, + "checksum_sha256": "BBA6AD612016A711A72DF77D1E15273DF26BAE52F429A283D9C63EB2BFC27DC4", + "created_at": "2026-02-19T14:05:54Z", + "updated_at": "2026-02-19T14:05:54Z" + }, + { + "id": "2026_02_19_body_parts_health_pt_ja_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_pt_ja_A2.json", + "language_ids": [ + 7, + 21 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 23110, + "checksum_sha256": "19DAABD216FBA3F2EC152F1FBE7CE8A36B767C2541EFFF27014EC208065CD50A", + "created_at": "2026-02-19T14:06:16Z", + "updated_at": "2026-02-19T14:06:16Z" + }, + { + "id": "2026_02_19_body_parts_health_pt_ko_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_pt_ko_A2.json", + "language_ids": [ + 7, + 13 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22393, + "checksum_sha256": "7AF111845681FF4E14F5676DAC760E12445CA4C601FF1C3BA5FE7DDC5CE22BAB", + "created_at": "2026-02-19T14:06:55Z", + "updated_at": "2026-02-19T14:06:55Z" + }, + { + "id": "2026_02_19_body_parts_health_pt_pl_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_pt_pl_A2.json", + "language_ids": [ + 7, + 24 + ], + "category": "Body Parts & Health", + "item_count": 77, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 23703, + "checksum_sha256": "B6A361D7C89C76AD5F5CB9D54043566B64670292B41B9EE444A134FC260F623B", + "created_at": "2026-02-19T14:07:11Z", + "updated_at": "2026-02-19T14:07:11Z" + }, + { + "id": "2026_02_19_body_parts_health_pt_zh_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_pt_zh_A2.json", + "language_ids": [ + 7, + 2 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22403, + "checksum_sha256": "B8F5E2766DA962BB663FB55F2F342D19BF7B4A476FC727C463FBC294F0C87C14", + "created_at": "2026-02-19T14:06:36Z", + "updated_at": "2026-02-19T14:06:36Z" + }, + { + "id": "2026_02_19_body_parts_health_zh_ko_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_zh_ko_A2.json", + "language_ids": [ + 2, + 13 + ], + "category": "Body Parts & Health", + "item_count": 78, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 25119, + "checksum_sha256": "13E6B350032BFA7EF7ABE4502710F920FB0FE8ADA2522215BB4659CF4873791B", + "created_at": "2026-02-19T14:13:28Z", + "updated_at": "2026-02-19T14:13:28Z" + }, + { + "id": "2026_02_19_body_parts_health_zh_pl_A2", + "name": "Body Parts & Health", + "description": "Vocabulary for the human body, basic health, and physical well-being.", + "filename": "2026_02_19_body_parts_health_zh_pl_A2.json", + "language_ids": [ + 2, + 24 + ], + "category": "Body Parts & Health", + "item_count": 71, + "level": "A2", + "emoji": "🫀", + "version": 1, + "size_bytes": 22398, + "checksum_sha256": "FF47352ECE5246377ACEB922291733B4BC4BF444C9CEB9925444EC9E349DC780", + "created_at": "2026-02-19T14:13:46Z", + "updated_at": "2026-02-19T14:13:46Z" + }, + { + "id": "2026_02_19_business_office_de_fr_B2", + "name": "Business & Office", + "description": "Professional vocabulary for business meetings, email, contracts, and office life.", + "filename": "2026_02_19_business_office_de_fr_B2.json", + "language_ids": [ + 15, + 14 + ], + "category": "Business & Office", + "item_count": 84, + "level": "B2", + "emoji": "💼", + "version": 1, + "size_bytes": 27006, + "checksum_sha256": "E42774799773A3230170B432C01FE75AB637A513CF7536810834C84D7507BE7F", + "created_at": "2026-02-19T15:26:07Z", + "updated_at": "2026-02-19T15:26:07Z" + }, + { + "id": "2026_02_19_business_office_de_it_B2", + "name": "Business & Office", + "description": "Professional vocabulary for business meetings, email, contracts, and office life.", + "filename": "2026_02_19_business_office_de_it_B2.json", + "language_ids": [ + 15, + 20 + ], + "category": "Business & Office", + "item_count": 83, + "level": "B2", + "emoji": "💼", + "version": 1, + "size_bytes": 26149, + "checksum_sha256": "F897F3C7A66581F599732ACEAEB21A0D6302DBE37983CC84CCC5952900773107", + "created_at": "2026-02-19T15:26:25Z", + "updated_at": "2026-02-19T15:26:25Z" + }, + { + "id": "2026_02_19_business_office_en_de_B2", + "name": "Business & Office", + "description": "Professional vocabulary for business meetings, email, contracts, and office life.", + "filename": "2026_02_19_business_office_en_de_B2.json", + "language_ids": [ + 1, + 15 + ], + "category": "Business & Office", + "item_count": 85, + "level": "B2", + "emoji": "💼", + "version": 1, + "size_bytes": 26518, + "checksum_sha256": "340270980C724AD3DC21D740891E0C931A29C7B6BEEE78415343C370B1BA72AC", + "created_at": "2026-02-19T15:23:17Z", + "updated_at": "2026-02-19T15:23:17Z" + }, + { + "id": "2026_02_19_business_office_en_es_B2", + "name": "Business & Office", + "description": "Professional vocabulary for business meetings, email, contracts, and office life.", + "filename": "2026_02_19_business_office_en_es_B2.json", + "language_ids": [ + 1, + 3 + ], + "category": "Business & Office", + "item_count": 85, + "level": "B2", + "emoji": "💼", + "version": 1, + "size_bytes": 26427, + "checksum_sha256": "27C7FD1C9F778A655E88E73BC3C37873BFFD6D1057FC9A57E39AF8FB00E7C021", + "created_at": "2026-02-19T15:22:44Z", + "updated_at": "2026-02-19T15:22:44Z" + }, + { + "id": "2026_02_19_business_office_en_fr_B2", + "name": "Business & Office", + "description": "Professional vocabulary for business meetings, email, contracts, and office life.", + "filename": "2026_02_19_business_office_en_fr_B2.json", + "language_ids": [ + 1, + 14 + ], + "category": "Business & Office", + "item_count": 86, + "level": "B2", + "emoji": "💼", + "version": 1, + "size_bytes": 26989, + "checksum_sha256": "B30A3E14380C702EA68A36D4EB94942BC18C58DE339614A0C96801DBA163F71C", + "created_at": "2026-02-19T15:23:34Z", + "updated_at": "2026-02-19T15:23:34Z" + }, + { + "id": "2026_02_19_business_office_en_it_B2", + "name": "Business & Office", + "description": "Professional vocabulary for business meetings, email, contracts, and office life.", + "filename": "2026_02_19_business_office_en_it_B2.json", + "language_ids": [ + 1, + 20 + ], + "category": "Business & Office", + "item_count": 84, + "level": "B2", + "emoji": "💼", + "version": 1, + "size_bytes": 26204, + "checksum_sha256": "44DD6D0D5E01AE49EA1EE36BD019AD19B956B41E69B6096233FAE83ACE031A5C", + "created_at": "2026-02-19T15:23:50Z", + "updated_at": "2026-02-19T15:23:50Z" + }, + { + "id": "2026_02_19_business_office_en_pt_B2", + "name": "Business & Office", + "description": "Professional vocabulary for business meetings, email, contracts, and office life.", + "filename": "2026_02_19_business_office_en_pt_B2.json", + "language_ids": [ + 1, + 7 + ], + "category": "Business & Office", + "item_count": 85, + "level": "B2", + "emoji": "💼", + "version": 1, + "size_bytes": 26334, + "checksum_sha256": "FD2A10FE85CFF261092ECC8B013AC16998BD357AB1A02604FCF3BC3F0E1E3C90", + "created_at": "2026-02-19T15:23:01Z", + "updated_at": "2026-02-19T15:23:01Z" + }, + { + "id": "2026_02_19_business_office_es_de_B2", + "name": "Business & Office", + "description": "Professional vocabulary for business meetings, email, contracts, and office life.", + "filename": "2026_02_19_business_office_es_de_B2.json", + "language_ids": [ + 3, + 15 + ], + "category": "Business & Office", + "item_count": 85, + "level": "B2", + "emoji": "💼", + "version": 1, + "size_bytes": 26562, + "checksum_sha256": "FCB3089AE38B53B8D04276732426C9E44EDB5B7D3C8BD53219A62F86FB878F22", + "created_at": "2026-02-19T15:24:23Z", + "updated_at": "2026-02-19T15:24:23Z" + }, + { + "id": "2026_02_19_business_office_es_fr_B2", + "name": "Business & Office", + "description": "Professional vocabulary for business meetings, email, contracts, and office life.", + "filename": "2026_02_19_business_office_es_fr_B2.json", + "language_ids": [ + 3, + 14 + ], + "category": "Business & Office", + "item_count": 83, + "level": "B2", + "emoji": "💼", + "version": 1, + "size_bytes": 25782, + "checksum_sha256": "3D5F8782FAEBEB508DE5265481BA46D443983FA71AAF529DBCC2010CEB91BDB9", + "created_at": "2026-02-19T15:24:39Z", + "updated_at": "2026-02-19T15:24:39Z" + }, + { + "id": "2026_02_19_business_office_es_it_B2", + "name": "Business & Office", + "description": "Professional vocabulary for business meetings, email, contracts, and office life.", + "filename": "2026_02_19_business_office_es_it_B2.json", + "language_ids": [ + 3, + 20 + ], + "category": "Business & Office", + "item_count": 84, + "level": "B2", + "emoji": "💼", + "version": 1, + "size_bytes": 26331, + "checksum_sha256": "8A6B2A90B972F4B65AA2F97E3F46ADB9205520944EEF1AA2B8D9D0D758767AB9", + "created_at": "2026-02-19T15:24:57Z", + "updated_at": "2026-02-19T15:24:57Z" + }, + { + "id": "2026_02_19_business_office_es_pt_B2", + "name": "Business & Office", + "description": "Professional vocabulary for business meetings, email, contracts, and office life.", + "filename": "2026_02_19_business_office_es_pt_B2.json", + "language_ids": [ + 3, + 7 + ], + "category": "Business & Office", + "item_count": 86, + "level": "B2", + "emoji": "💼", + "version": 1, + "size_bytes": 26694, + "checksum_sha256": "16D2AE68D294E38DD604F246B09925D4B7F86B0DCDAAE2E5E54647669EF431D6", + "created_at": "2026-02-19T15:24:06Z", + "updated_at": "2026-02-19T15:24:06Z" + }, + { + "id": "2026_02_19_business_office_fr_it_B2", + "name": "Business & Office", + "description": "Professional vocabulary for business meetings, email, contracts, and office life.", + "filename": "2026_02_19_business_office_fr_it_B2.json", + "language_ids": [ + 14, + 20 + ], + "category": "Business & Office", + "item_count": 83, + "level": "B2", + "emoji": "💼", + "version": 1, + "size_bytes": 25980, + "checksum_sha256": "9850E16F23D508C2899000C7A9DEC5E782610D2D8AD3CAF8EC84322863D70C45", + "created_at": "2026-02-19T15:26:41Z", + "updated_at": "2026-02-19T15:26:41Z" + }, + { + "id": "2026_02_19_business_office_pt_de_B2", + "name": "Business & Office", + "description": "Professional vocabulary for business meetings, email, contracts, and office life.", + "filename": "2026_02_19_business_office_pt_de_B2.json", + "language_ids": [ + 7, + 15 + ], + "category": "Business & Office", + "item_count": 83, + "level": "B2", + "emoji": "💼", + "version": 1, + "size_bytes": 25874, + "checksum_sha256": "FF88C2966851545A4C4120BFD1F5654DC6B640CB71CAC9A08A4445D3B8AB9A41", + "created_at": "2026-02-19T15:25:14Z", + "updated_at": "2026-02-19T15:25:14Z" + }, + { + "id": "2026_02_19_business_office_pt_fr_B2", + "name": "Business & Office", + "description": "Professional vocabulary for business meetings, email, contracts, and office life.", + "filename": "2026_02_19_business_office_pt_fr_B2.json", + "language_ids": [ + 7, + 14 + ], + "category": "Business & Office", + "item_count": 84, + "level": "B2", + "emoji": "💼", + "version": 1, + "size_bytes": 26211, + "checksum_sha256": "3B41D80F97C8EAFA037BD668F3BC5127DFA2F5C5AFE0F0D66E06B7406002DED9", + "created_at": "2026-02-19T15:25:30Z", + "updated_at": "2026-02-19T15:25:30Z" + }, + { + "id": "2026_02_19_business_office_pt_it_B2", + "name": "Business & Office", + "description": "Professional vocabulary for business meetings, email, contracts, and office life.", + "filename": "2026_02_19_business_office_pt_it_B2.json", + "language_ids": [ + 7, + 20 + ], + "category": "Business & Office", + "item_count": 85, + "level": "B2", + "emoji": "💼", + "version": 1, + "size_bytes": 26573, + "checksum_sha256": "C2FDB44B0BEE4B48A221DED40E13104429E8A53E85C735D2369452894BFB1705", + "created_at": "2026-02-19T15:25:47Z", + "updated_at": "2026-02-19T15:25:47Z" + }, + { + "id": "2026_02_19_clothing_fashion_de_fr_A2", + "name": "Clothing & Fashion", + "description": "Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire.", + "filename": "2026_02_19_clothing_fashion_de_fr_A2.json", + "language_ids": [ + 15, + 14 + ], + "category": "Clothing & Fashion", + "item_count": 60, + "level": "A2", + "emoji": "👗", + "version": 1, + "size_bytes": 18952, + "checksum_sha256": "0C38D31FBB8FFEB5792C268FF4FC284A0F29BE45F36646FB728F00AED6885E26", + "created_at": "2026-02-19T15:29:19Z", + "updated_at": "2026-02-19T15:29:19Z" + }, + { + "id": "2026_02_19_clothing_fashion_de_it_A2", + "name": "Clothing & Fashion", + "description": "Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire.", + "filename": "2026_02_19_clothing_fashion_de_it_A2.json", + "language_ids": [ + 15, + 20 + ], + "category": "Clothing & Fashion", + "item_count": 61, + "level": "A2", + "emoji": "👗", + "version": 1, + "size_bytes": 19325, + "checksum_sha256": "48FFE4B4B369FA3612CB5FE4A3AC8F0D6866F8F38DCBE7D682DFDC4BDDD2BEAE", + "created_at": "2026-02-19T15:29:33Z", + "updated_at": "2026-02-19T15:29:33Z" + }, + { + "id": "2026_02_19_clothing_fashion_en_de_A2", + "name": "Clothing & Fashion", + "description": "Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire.", + "filename": "2026_02_19_clothing_fashion_en_de_A2.json", + "language_ids": [ + 1, + 15 + ], + "category": "Clothing & Fashion", + "item_count": 60, + "level": "A2", + "emoji": "👗", + "version": 1, + "size_bytes": 18458, + "checksum_sha256": "0B198E4D88A8B5C24E9F8B3BF653FABB5F597D8DD544B5E69411834C74BD04B5", + "created_at": "2026-02-19T15:27:15Z", + "updated_at": "2026-02-19T15:27:15Z" + }, + { + "id": "2026_02_19_clothing_fashion_en_es_A2", + "name": "Clothing & Fashion", + "description": "Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire.", + "filename": "2026_02_19_clothing_fashion_en_es_A2.json", + "language_ids": [ + 1, + 3 + ], + "category": "Clothing & Fashion", + "item_count": 59, + "level": "A2", + "emoji": "👗", + "version": 1, + "size_bytes": 18098, + "checksum_sha256": "A84A04EA7E7CA6C0CC80A04FCDBED4412036139512316265F9E39034E917F80B", + "created_at": "2026-02-19T15:26:52Z", + "updated_at": "2026-02-19T15:26:52Z" + }, + { + "id": "2026_02_19_clothing_fashion_en_fr_A2", + "name": "Clothing & Fashion", + "description": "Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire.", + "filename": "2026_02_19_clothing_fashion_en_fr_A2.json", + "language_ids": [ + 1, + 14 + ], + "category": "Clothing & Fashion", + "item_count": 60, + "level": "A2", + "emoji": "👗", + "version": 1, + "size_bytes": 18486, + "checksum_sha256": "938F91121DFD034020F48F5755E37063243F929F3BC28A66000A80BFBEDA560D", + "created_at": "2026-02-19T15:27:26Z", + "updated_at": "2026-02-19T15:27:26Z" + }, + { + "id": "2026_02_19_clothing_fashion_en_it_A2", + "name": "Clothing & Fashion", + "description": "Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire.", + "filename": "2026_02_19_clothing_fashion_en_it_A2.json", + "language_ids": [ + 1, + 20 + ], + "category": "Clothing & Fashion", + "item_count": 60, + "level": "A2", + "emoji": "👗", + "version": 1, + "size_bytes": 18538, + "checksum_sha256": "5C235D9655FBA686211EEECD3E99F37E0D83CEEBD7CE1AEABA3C07D739DA82E4", + "created_at": "2026-02-19T15:27:38Z", + "updated_at": "2026-02-19T15:27:38Z" + }, + { + "id": "2026_02_19_clothing_fashion_en_pt_A2", + "name": "Clothing & Fashion", + "description": "Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire.", + "filename": "2026_02_19_clothing_fashion_en_pt_A2.json", + "language_ids": [ + 1, + 7 + ], + "category": "Clothing & Fashion", + "item_count": 60, + "level": "A2", + "emoji": "👗", + "version": 1, + "size_bytes": 18421, + "checksum_sha256": "269CC4F70B3F087B1EE4C532A690BB30620B49A46AA59868E22AE6C5F1D5C7ED", + "created_at": "2026-02-19T15:27:04Z", + "updated_at": "2026-02-19T15:27:04Z" + }, + { + "id": "2026_02_19_clothing_fashion_es_de_A2", + "name": "Clothing & Fashion", + "description": "Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire.", + "filename": "2026_02_19_clothing_fashion_es_de_A2.json", + "language_ids": [ + 3, + 15 + ], + "category": "Clothing & Fashion", + "item_count": 60, + "level": "A2", + "emoji": "👗", + "version": 1, + "size_bytes": 18509, + "checksum_sha256": "6145C29AAB65EEC3A5A3E18FA415347678BEF21BC0F74035AF3ACCFE40F39E24", + "created_at": "2026-02-19T15:28:02Z", + "updated_at": "2026-02-19T15:28:02Z" + }, + { + "id": "2026_02_19_clothing_fashion_es_fr_A2", + "name": "Clothing & Fashion", + "description": "Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire.", + "filename": "2026_02_19_clothing_fashion_es_fr_A2.json", + "language_ids": [ + 3, + 14 + ], + "category": "Clothing & Fashion", + "item_count": 60, + "level": "A2", + "emoji": "👗", + "version": 1, + "size_bytes": 18575, + "checksum_sha256": "029E44A3F92C173FF02570B0199735884F99D38BFE31FEFF60BE8D04036379B0", + "created_at": "2026-02-19T15:28:15Z", + "updated_at": "2026-02-19T15:28:15Z" + }, + { + "id": "2026_02_19_clothing_fashion_es_it_A2", + "name": "Clothing & Fashion", + "description": "Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire.", + "filename": "2026_02_19_clothing_fashion_es_it_A2.json", + "language_ids": [ + 3, + 20 + ], + "category": "Clothing & Fashion", + "item_count": 60, + "level": "A2", + "emoji": "👗", + "version": 1, + "size_bytes": 18554, + "checksum_sha256": "2EA03C7BB3D6BBBCEDE3BC734C3C080CFD905520254CD208662ADAA749ECB247", + "created_at": "2026-02-19T15:28:27Z", + "updated_at": "2026-02-19T15:28:27Z" + }, + { + "id": "2026_02_19_clothing_fashion_es_pt_A2", + "name": "Clothing & Fashion", + "description": "Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire.", + "filename": "2026_02_19_clothing_fashion_es_pt_A2.json", + "language_ids": [ + 3, + 7 + ], + "category": "Clothing & Fashion", + "item_count": 60, + "level": "A2", + "emoji": "👗", + "version": 1, + "size_bytes": 18426, + "checksum_sha256": "671280023120969E2F97E30406593F7ECB910CBC8EB341931B4C81B3A443CB8C", + "created_at": "2026-02-19T15:27:50Z", + "updated_at": "2026-02-19T15:27:50Z" + }, + { + "id": "2026_02_19_clothing_fashion_fr_it_A2", + "name": "Clothing & Fashion", + "description": "Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire.", + "filename": "2026_02_19_clothing_fashion_fr_it_A2.json", + "language_ids": [ + 14, + 20 + ], + "category": "Clothing & Fashion", + "item_count": 60, + "level": "A2", + "emoji": "👗", + "version": 1, + "size_bytes": 18892, + "checksum_sha256": "578A60817559F55F9FDB60D4C34DCD1CB6A2B78B0EBBF8BBCE7D3A23D0442073", + "created_at": "2026-02-19T15:29:47Z", + "updated_at": "2026-02-19T15:29:47Z" + }, + { + "id": "2026_02_19_clothing_fashion_pt_de_A2", + "name": "Clothing & Fashion", + "description": "Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire.", + "filename": "2026_02_19_clothing_fashion_pt_de_A2.json", + "language_ids": [ + 7, + 15 + ], + "category": "Clothing & Fashion", + "item_count": 60, + "level": "A2", + "emoji": "👗", + "version": 1, + "size_bytes": 18543, + "checksum_sha256": "277AE4D29F7F6DB751F168A7258B31D1CF1AD6687134F647A5A711FC78F6BEF7", + "created_at": "2026-02-19T15:28:40Z", + "updated_at": "2026-02-19T15:28:40Z" + }, + { + "id": "2026_02_19_clothing_fashion_pt_fr_A2", + "name": "Clothing & Fashion", + "description": "Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire.", + "filename": "2026_02_19_clothing_fashion_pt_fr_A2.json", + "language_ids": [ + 7, + 14 + ], + "category": "Clothing & Fashion", + "item_count": 60, + "level": "A2", + "emoji": "👗", + "version": 1, + "size_bytes": 18522, + "checksum_sha256": "0F3E7DF1CBA596F74CDA663F6663C186CC9B138A31D55E92112634A367802999", + "created_at": "2026-02-19T15:28:53Z", + "updated_at": "2026-02-19T15:28:53Z" + }, + { + "id": "2026_02_19_clothing_fashion_pt_it_A2", + "name": "Clothing & Fashion", + "description": "Vocabulary for clothing, accessories, and fashion — from everyday wear to formal attire.", + "filename": "2026_02_19_clothing_fashion_pt_it_A2.json", + "language_ids": [ + 7, + 20 + ], + "category": "Clothing & Fashion", + "item_count": 60, + "level": "A2", + "emoji": "👗", + "version": 1, + "size_bytes": 18484, + "checksum_sha256": "1693F692E55EA33AD2AB66EE792454ACBB2BD7D2E850E678934E728C381F1BC5", + "created_at": "2026-02-19T15:29:05Z", + "updated_at": "2026-02-19T15:29:05Z" + }, + { + "id": "2026_02_19_colors_shapes_de_fr_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_de_fr_A1.json", + "language_ids": [ + 15, + 14 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15420, + "checksum_sha256": "F96F64A6AEAE4493689A2F2D9B75B1B5A4262B8FFDDA2237E634D8021A23380E", + "created_at": "2026-02-19T13:08:48Z", + "updated_at": "2026-02-19T13:08:48Z" + }, + { + "id": "2026_02_19_colors_shapes_de_it_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_de_it_A1.json", + "language_ids": [ + 15, + 20 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15505, + "checksum_sha256": "96903543B6EAF8168C5608CA6E2A8FC741AAEA38843DE12F0A1C42B5DA1A13DA", + "created_at": "2026-02-19T13:08:58Z", + "updated_at": "2026-02-19T13:08:58Z" + }, + { + "id": "2026_02_19_colors_shapes_de_ja_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_de_ja_A1.json", + "language_ids": [ + 15, + 21 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16559, + "checksum_sha256": "FE3D6E587263FAB5F706F63F84097E3986C617AF46BB1943055ED320BBC13F15", + "created_at": "2026-02-19T13:09:16Z", + "updated_at": "2026-02-19T13:09:16Z" + }, + { + "id": "2026_02_19_colors_shapes_de_ko_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_de_ko_A1.json", + "language_ids": [ + 15, + 13 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16247, + "checksum_sha256": "7397D69C1530FFE50189EB568643CCD4597FB9A636E06ADDE7875C2830C33DCA", + "created_at": "2026-02-19T13:09:48Z", + "updated_at": "2026-02-19T13:09:48Z" + }, + { + "id": "2026_02_19_colors_shapes_de_pl_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_de_pl_A1.json", + "language_ids": [ + 15, + 24 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15578, + "checksum_sha256": "B93F2E7A228C55C0DC7E9EFC10A9D7DC46D3FF4BE2C532C1DFED200A091911AD", + "created_at": "2026-02-19T13:09:59Z", + "updated_at": "2026-02-19T13:09:59Z" + }, + { + "id": "2026_02_19_colors_shapes_de_zh_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_de_zh_A1.json", + "language_ids": [ + 15, + 2 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16162, + "checksum_sha256": "B239947FAB787D7C67B2E5230604B79E79E5B0C3201B6655D5E9007498486194", + "created_at": "2026-02-19T13:09:31Z", + "updated_at": "2026-02-19T13:09:31Z" + }, + { + "id": "2026_02_19_colors_shapes_en_de_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_en_de_A1.json", + "language_ids": [ + 1, + 15 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15327, + "checksum_sha256": "698351C2213A121F50424B4414305F6BF422EC473AF5AA19F2D44D633250FA3C", + "created_at": "2026-02-19T13:04:19Z", + "updated_at": "2026-02-19T13:04:19Z" + }, + { + "id": "2026_02_19_colors_shapes_en_es_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_en_es_A1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15353, + "checksum_sha256": "62DD62A1E54101E369BD57E9C684A98926A6F836FB4AAD19C447833ADF8C8566", + "created_at": "2026-02-19T13:04:01Z", + "updated_at": "2026-02-19T13:04:01Z" + }, + { + "id": "2026_02_19_colors_shapes_en_fr_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_en_fr_A1.json", + "language_ids": [ + 1, + 14 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15464, + "checksum_sha256": "DD12D121D3DE2E7FC22B00720BF786793B59ED3F02C6FCE434EAF78475ECC825", + "created_at": "2026-02-19T13:04:28Z", + "updated_at": "2026-02-19T13:04:28Z" + }, + { + "id": "2026_02_19_colors_shapes_en_it_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_en_it_A1.json", + "language_ids": [ + 1, + 20 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15403, + "checksum_sha256": "FCE90988A59405EEEE25E1D5C1D255ECA85797C7AAA60405829F9CD3652F9E08", + "created_at": "2026-02-19T13:04:38Z", + "updated_at": "2026-02-19T13:04:38Z" + }, + { + "id": "2026_02_19_colors_shapes_en_ja_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_en_ja_A1.json", + "language_ids": [ + 1, + 21 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16495, + "checksum_sha256": "3E8648773A20674B60DF1B76214B2652FE7010B6BFAA4D7EEF987C5C302E62A9", + "created_at": "2026-02-19T13:04:53Z", + "updated_at": "2026-02-19T13:04:53Z" + }, + { + "id": "2026_02_19_colors_shapes_en_ko_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_en_ko_A1.json", + "language_ids": [ + 1, + 13 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15954, + "checksum_sha256": "30F75E1C5A7ECE0B1D03F0E88085C2C0F181FDEA23457C7F6BC237C8ECB833FC", + "created_at": "2026-02-19T13:05:20Z", + "updated_at": "2026-02-19T13:05:20Z" + }, + { + "id": "2026_02_19_colors_shapes_en_pl_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_en_pl_A1.json", + "language_ids": [ + 1, + 24 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15436, + "checksum_sha256": "1AE6637DC9FD1403005AD94BB840CFB8870751759D5590CB23508C542CD3A2B1", + "created_at": "2026-02-19T13:05:30Z", + "updated_at": "2026-02-19T13:05:30Z" + }, + { + "id": "2026_02_19_colors_shapes_en_pt_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_en_pt_A1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15397, + "checksum_sha256": "FEF6A659BE342F531D6AE91A0A0F5C3CA08B94C6D028AC53135D0C6019EADC8B", + "created_at": "2026-02-19T13:04:10Z", + "updated_at": "2026-02-19T13:04:10Z" + }, + { + "id": "2026_02_19_colors_shapes_en_zh_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_en_zh_A1.json", + "language_ids": [ + 1, + 2 + ], + "category": "Colors & Shapes", + "item_count": 51, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16107, + "checksum_sha256": "A0AC74AD9DCF7F32465B303011A62A7DF3582B49FEE2B7F636A0EBB167CC7032", + "created_at": "2026-02-19T13:05:06Z", + "updated_at": "2026-02-19T13:05:06Z" + }, + { + "id": "2026_02_19_colors_shapes_es_de_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_es_de_A1.json", + "language_ids": [ + 3, + 15 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15502, + "checksum_sha256": "CFA22CE47D82EC6C5237940C4ACD1CDAB8D0EC761ECD5C7E648BCB51221FDA08", + "created_at": "2026-02-19T13:05:50Z", + "updated_at": "2026-02-19T13:05:50Z" + }, + { + "id": "2026_02_19_colors_shapes_es_fr_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_es_fr_A1.json", + "language_ids": [ + 3, + 14 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15400, + "checksum_sha256": "1F2E896611868CC9C694277DE78D084E8896D1FFF4570D33B27CB0FBD14AB7B5", + "created_at": "2026-02-19T13:05:59Z", + "updated_at": "2026-02-19T13:05:59Z" + }, + { + "id": "2026_02_19_colors_shapes_es_it_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_es_it_A1.json", + "language_ids": [ + 3, + 20 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15385, + "checksum_sha256": "E2491F33DDA25BAF3B2E7E2293FA405BBDA473C97E9EBAE61ABC79DD3E76222C", + "created_at": "2026-02-19T13:06:09Z", + "updated_at": "2026-02-19T13:06:09Z" + }, + { + "id": "2026_02_19_colors_shapes_es_ja_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_es_ja_A1.json", + "language_ids": [ + 3, + 21 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16894, + "checksum_sha256": "8F4A0EBD1FEB91810099EDD106A189AB6CB80AE041DD84AC05537B4A94F0ABC8", + "created_at": "2026-02-19T13:06:27Z", + "updated_at": "2026-02-19T13:06:27Z" + }, + { + "id": "2026_02_19_colors_shapes_es_ko_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_es_ko_A1.json", + "language_ids": [ + 3, + 13 + ], + "category": "Colors & Shapes", + "item_count": 51, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16666, + "checksum_sha256": "4271CB9D2F15EDD0263524413C14E678A12F4099DC3B9BEDEC0D626601281678", + "created_at": "2026-02-19T13:07:01Z", + "updated_at": "2026-02-19T13:07:01Z" + }, + { + "id": "2026_02_19_colors_shapes_es_pl_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_es_pl_A1.json", + "language_ids": [ + 3, + 24 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15606, + "checksum_sha256": "43A4A1D30C2F24F1D35CFBCCD3ACE198F76B275528BFEB477F5A8934C9A94C8B", + "created_at": "2026-02-19T13:07:12Z", + "updated_at": "2026-02-19T13:07:12Z" + }, + { + "id": "2026_02_19_colors_shapes_es_pt_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_es_pt_A1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15472, + "checksum_sha256": "6FC585F56DD3B676B313DE9CEE034DCFF1AC56DCA1C78636844027B14781561F", + "created_at": "2026-02-19T13:05:40Z", + "updated_at": "2026-02-19T13:05:40Z" + }, + { + "id": "2026_02_19_colors_shapes_es_zh_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_es_zh_A1.json", + "language_ids": [ + 3, + 2 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16367, + "checksum_sha256": "FB2B737E3F3F46FD767656EC6CDCB1D5969329B64789812A50A26060EDADE429", + "created_at": "2026-02-19T13:06:44Z", + "updated_at": "2026-02-19T13:06:44Z" + }, + { + "id": "2026_02_19_colors_shapes_fr_it_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_fr_it_A1.json", + "language_ids": [ + 14, + 20 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15429, + "checksum_sha256": "B813369900BA6AB07DF43D3DF012BD234F5620327B4B82A39C16FE0668E82C2E", + "created_at": "2026-02-19T13:10:08Z", + "updated_at": "2026-02-19T13:10:08Z" + }, + { + "id": "2026_02_19_colors_shapes_fr_ja_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_fr_ja_A1.json", + "language_ids": [ + 14, + 21 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16797, + "checksum_sha256": "CE41C8F794DABF681DC5143420975EBF57D177158C8F4DE8A9CA751A9CD40341", + "created_at": "2026-02-19T13:10:26Z", + "updated_at": "2026-02-19T13:10:26Z" + }, + { + "id": "2026_02_19_colors_shapes_fr_ko_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_fr_ko_A1.json", + "language_ids": [ + 14, + 13 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16194, + "checksum_sha256": "A50F7CB7D89A01F54CAA3967474E06741FBDC2F0924C3A8A4FFF80BDB56A6260", + "created_at": "2026-02-19T13:10:57Z", + "updated_at": "2026-02-19T13:10:57Z" + }, + { + "id": "2026_02_19_colors_shapes_fr_pl_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_fr_pl_A1.json", + "language_ids": [ + 14, + 24 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15497, + "checksum_sha256": "DA699D152251689476CA51EEDAEEA56BB673C1442E95C8F84500C8A25514125D", + "created_at": "2026-02-19T13:11:07Z", + "updated_at": "2026-02-19T13:11:07Z" + }, + { + "id": "2026_02_19_colors_shapes_fr_zh_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_fr_zh_A1.json", + "language_ids": [ + 14, + 2 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16005, + "checksum_sha256": "E8EC407B7BABE4056F1766347BE4751CD3370E4A85680B8D502705F2F86C020F", + "created_at": "2026-02-19T13:10:41Z", + "updated_at": "2026-02-19T13:10:41Z" + }, + { + "id": "2026_02_19_colors_shapes_it_ja_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_it_ja_A1.json", + "language_ids": [ + 20, + 21 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16495, + "checksum_sha256": "80745B8ADC57C7EC180FC082E2418103472ED9DA030489F5C3A6802F41079EC9", + "created_at": "2026-02-19T13:11:23Z", + "updated_at": "2026-02-19T13:11:23Z" + }, + { + "id": "2026_02_19_colors_shapes_it_ko_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_it_ko_A1.json", + "language_ids": [ + 20, + 13 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15897, + "checksum_sha256": "902BF2C9FBB78C1CB39C6A5DBBE1F652C1FE63DCB6BDD73FD6DE6C470B9F3D82", + "created_at": "2026-02-19T13:11:51Z", + "updated_at": "2026-02-19T13:11:51Z" + }, + { + "id": "2026_02_19_colors_shapes_it_pl_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_it_pl_A1.json", + "language_ids": [ + 20, + 24 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15500, + "checksum_sha256": "1B6D6C20081E2833610B77C1E98E9CC909A4C2820473406C0815978DCE6B213C", + "created_at": "2026-02-19T13:12:02Z", + "updated_at": "2026-02-19T13:12:02Z" + }, + { + "id": "2026_02_19_colors_shapes_it_zh_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_it_zh_A1.json", + "language_ids": [ + 20, + 2 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15888, + "checksum_sha256": "F4EEBF205BE5F5F003D656C9F77A8799EC9C3CB26A9023517B8EB8322AFCBA46", + "created_at": "2026-02-19T13:11:37Z", + "updated_at": "2026-02-19T13:11:37Z" + }, + { + "id": "2026_02_19_colors_shapes_ja_ko_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_ja_ko_A1.json", + "language_ids": [ + 21, + 13 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 17012, + "checksum_sha256": "E48ED2FAEE83B2FCF20BAEC1CDE34159848D8AAC6D307EC24438AA969B9A48CC", + "created_at": "2026-02-19T13:12:43Z", + "updated_at": "2026-02-19T13:12:43Z" + }, + { + "id": "2026_02_19_colors_shapes_ja_pl_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_ja_pl_A1.json", + "language_ids": [ + 21, + 24 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16469, + "checksum_sha256": "0F8E62E9D69CBBC410CBDD84682EF81C178557CD047F210B370DA374EB087BB2", + "created_at": "2026-02-19T13:13:00Z", + "updated_at": "2026-02-19T13:13:00Z" + }, + { + "id": "2026_02_19_colors_shapes_ja_zh_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_ja_zh_A1.json", + "language_ids": [ + 21, + 2 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16947, + "checksum_sha256": "C05EC90BFD6147876B2E1666AC496D15EE92611EBF60A3E4516188AA90486100", + "created_at": "2026-02-19T13:12:21Z", + "updated_at": "2026-02-19T13:12:21Z" + }, + { + "id": "2026_02_19_colors_shapes_ko_pl_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_ko_pl_A1.json", + "language_ids": [ + 13, + 24 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16243, + "checksum_sha256": "5A0BACCBC0419BA82A02EB4A4410B7E09E83698AEF7C8C01E18746C9F195067E", + "created_at": "2026-02-19T13:13:52Z", + "updated_at": "2026-02-19T13:13:52Z" + }, + { + "id": "2026_02_19_colors_shapes_pt_de_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_pt_de_A1.json", + "language_ids": [ + 7, + 15 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15442, + "checksum_sha256": "486DA7D85FFB432C86ACAB2AB2ADF12292DA74F730D28F42BFEAC4FF8A05AFCF", + "created_at": "2026-02-19T13:07:22Z", + "updated_at": "2026-02-19T13:07:22Z" + }, + { + "id": "2026_02_19_colors_shapes_pt_fr_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_pt_fr_A1.json", + "language_ids": [ + 7, + 14 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15439, + "checksum_sha256": "553B2429862421433B113FCFE87B1061658B73CB998683760E8A733C29024DE4", + "created_at": "2026-02-19T13:07:31Z", + "updated_at": "2026-02-19T13:07:31Z" + }, + { + "id": "2026_02_19_colors_shapes_pt_it_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_pt_it_A1.json", + "language_ids": [ + 7, + 20 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15440, + "checksum_sha256": "BD253844361BCF69A04C6BCD8E54F9B2C796C67A9465604AB46B23CEE6890BCB", + "created_at": "2026-02-19T13:07:41Z", + "updated_at": "2026-02-19T13:07:41Z" + }, + { + "id": "2026_02_19_colors_shapes_pt_ja_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_pt_ja_A1.json", + "language_ids": [ + 7, + 21 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16535, + "checksum_sha256": "CFDC4F764A35DFCA7C60246226D069E6DFD2F8A0845E35B0083A3571A7ED84D9", + "created_at": "2026-02-19T13:07:58Z", + "updated_at": "2026-02-19T13:07:58Z" + }, + { + "id": "2026_02_19_colors_shapes_pt_ko_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_pt_ko_A1.json", + "language_ids": [ + 7, + 13 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16021, + "checksum_sha256": "A10699255C261689115F1768E9EB4E9734934620850327E1C5788989AABE2699", + "created_at": "2026-02-19T13:08:28Z", + "updated_at": "2026-02-19T13:08:28Z" + }, + { + "id": "2026_02_19_colors_shapes_pt_pl_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_pt_pl_A1.json", + "language_ids": [ + 7, + 24 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15483, + "checksum_sha256": "16F3869194FE94EC3BDAB90EEBCF83E3F06D49635A67D5D71B43ABDB895643F7", + "created_at": "2026-02-19T13:08:39Z", + "updated_at": "2026-02-19T13:08:39Z" + }, + { + "id": "2026_02_19_colors_shapes_pt_zh_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_pt_zh_A1.json", + "language_ids": [ + 7, + 2 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 15887, + "checksum_sha256": "62CAE54DE390D58DC4AC4F45154AB7B699194E656645BFE67F4FDAA2108C5B3A", + "created_at": "2026-02-19T13:08:13Z", + "updated_at": "2026-02-19T13:08:13Z" + }, + { + "id": "2026_02_19_colors_shapes_zh_ko_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_zh_ko_A1.json", + "language_ids": [ + 2, + 13 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16737, + "checksum_sha256": "8FC7012FEAAD4492B1A65674C436948E90570D66D9775F7635948BBF39A66A7A", + "created_at": "2026-02-19T13:13:20Z", + "updated_at": "2026-02-19T13:13:20Z" + }, + { + "id": "2026_02_19_colors_shapes_zh_pl_A1", + "name": "Colors & Shapes", + "description": "Basic colors, shades, and geometric shapes — fundamental vocabulary for describing the world around you.", + "filename": "2026_02_19_colors_shapes_zh_pl_A1.json", + "language_ids": [ + 2, + 24 + ], + "category": "Colors & Shapes", + "item_count": 50, + "level": "A1", + "emoji": "🎨", + "version": 1, + "size_bytes": 16139, + "checksum_sha256": "704BF472974CDF061CDAF96F6D7DC7C08A1F336CD69E0B8AE356A1F0922B7F18", + "created_at": "2026-02-19T13:13:36Z", + "updated_at": "2026-02-19T13:13:36Z" + }, + { + "id": "2026_02_19_daily_routines_de_fr_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_de_fr_A2.json", + "language_ids": [ + 15, + 14 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18929, + "checksum_sha256": "B5D10DB0253B3F853DDB06CEFED5952C8295664439A6EC8C023AD435A72C7147", + "created_at": "2026-02-19T14:48:15Z", + "updated_at": "2026-02-19T14:48:15Z" + }, + { + "id": "2026_02_19_daily_routines_de_it_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_de_it_A2.json", + "language_ids": [ + 15, + 20 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18802, + "checksum_sha256": "B5FCEAE4789ABE855DBF51811336D96CCB01D4EFD10C3A83255BA133CA24A6D0", + "created_at": "2026-02-19T14:48:28Z", + "updated_at": "2026-02-19T14:48:28Z" + }, + { + "id": "2026_02_19_daily_routines_de_ja_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_de_ja_A2.json", + "language_ids": [ + 15, + 21 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 20423, + "checksum_sha256": "492C35FFFB9203844355AF8B330CB3224D89792EC1EB5FFC7CEDA0A4C0F01FAC", + "created_at": "2026-02-19T14:48:51Z", + "updated_at": "2026-02-19T14:48:51Z" + }, + { + "id": "2026_02_19_daily_routines_de_ko_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_de_ko_A2.json", + "language_ids": [ + 15, + 13 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19548, + "checksum_sha256": "0190D6870B8CA9E27C077072451C7FCC43952E631E524BBAA62C839677D016EA", + "created_at": "2026-02-19T14:49:28Z", + "updated_at": "2026-02-19T14:49:28Z" + }, + { + "id": "2026_02_19_daily_routines_de_pl_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_de_pl_A2.json", + "language_ids": [ + 15, + 24 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19095, + "checksum_sha256": "BFB97F528C082A537D07D6166F4CF33A349E28DF83443A1B79E39FBA40159244", + "created_at": "2026-02-19T14:49:43Z", + "updated_at": "2026-02-19T14:49:43Z" + }, + { + "id": "2026_02_19_daily_routines_de_zh_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_de_zh_A2.json", + "language_ids": [ + 15, + 2 + ], + "category": "Daily Routines", + "item_count": 61, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19626, + "checksum_sha256": "FD3E46D58EDA24B74E1A925C013BC9931F55608C2E8CCEEDD4BF712E8DCD3999", + "created_at": "2026-02-19T14:49:08Z", + "updated_at": "2026-02-19T14:49:08Z" + }, + { + "id": "2026_02_19_daily_routines_en_de_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_en_de_A2.json", + "language_ids": [ + 1, + 15 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18679, + "checksum_sha256": "2ECEFCDFD3703959E78B0776169B5D67C7861C68403D64025954324A7DF090C6", + "created_at": "2026-02-19T14:42:24Z", + "updated_at": "2026-02-19T14:42:24Z" + }, + { + "id": "2026_02_19_daily_routines_en_es_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_en_es_A2.json", + "language_ids": [ + 1, + 3 + ], + "category": "Daily Routines", + "item_count": 59, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18424, + "checksum_sha256": "742370EE7CFEC19E341FE27F43009343396434623B07EAAEA5FDEA4EC57460B7", + "created_at": "2026-02-19T14:42:00Z", + "updated_at": "2026-02-19T14:42:00Z" + }, + { + "id": "2026_02_19_daily_routines_en_fr_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_en_fr_A2.json", + "language_ids": [ + 1, + 14 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18925, + "checksum_sha256": "0A9D61B2C39A82FC748360C3423CB4018B5D3BF5C80BDF6430B9D3041098D326", + "created_at": "2026-02-19T14:42:37Z", + "updated_at": "2026-02-19T14:42:37Z" + }, + { + "id": "2026_02_19_daily_routines_en_it_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_en_it_A2.json", + "language_ids": [ + 1, + 20 + ], + "category": "Daily Routines", + "item_count": 59, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18590, + "checksum_sha256": "82A8FAE5A7308E538A786FFA7941CF7516757E28E494EA7CAB8B2546EA619361", + "created_at": "2026-02-19T14:42:49Z", + "updated_at": "2026-02-19T14:42:49Z" + }, + { + "id": "2026_02_19_daily_routines_en_ja_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_en_ja_A2.json", + "language_ids": [ + 1, + 21 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 20284, + "checksum_sha256": "8D4C96B13FC06151D4CCBAFE5F923E11FDE46026DF74B217FB9E6B06EB81C3DA", + "created_at": "2026-02-19T14:43:11Z", + "updated_at": "2026-02-19T14:43:11Z" + }, + { + "id": "2026_02_19_daily_routines_en_ko_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_en_ko_A2.json", + "language_ids": [ + 1, + 13 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19338, + "checksum_sha256": "EB2CF43F821EA0A4200ABD70ECB1B080F4B731153D0852436776B6E870B5453E", + "created_at": "2026-02-19T14:43:44Z", + "updated_at": "2026-02-19T14:43:44Z" + }, + { + "id": "2026_02_19_daily_routines_en_pl_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_en_pl_A2.json", + "language_ids": [ + 1, + 24 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18992, + "checksum_sha256": "2E8AF4ADB5F2F696D10007F9B36F0B1A27A1F7972738E0767ACEB5E6407EA975", + "created_at": "2026-02-19T14:43:58Z", + "updated_at": "2026-02-19T14:43:58Z" + }, + { + "id": "2026_02_19_daily_routines_en_pt_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_en_pt_A2.json", + "language_ids": [ + 1, + 7 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18779, + "checksum_sha256": "1C99F6E87F3D34EB962AE1925D33383C8755953038F51A990A2C00F319D17372", + "created_at": "2026-02-19T14:42:12Z", + "updated_at": "2026-02-19T14:42:12Z" + }, + { + "id": "2026_02_19_daily_routines_en_zh_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_en_zh_A2.json", + "language_ids": [ + 1, + 2 + ], + "category": "Daily Routines", + "item_count": 59, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18848, + "checksum_sha256": "2110A41BB7A0BF6A9AE34B8EA473A8710BA0F305989CF1EA64BADF3E4DD5B538", + "created_at": "2026-02-19T14:43:27Z", + "updated_at": "2026-02-19T14:43:27Z" + }, + { + "id": "2026_02_19_daily_routines_es_de_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_es_de_A2.json", + "language_ids": [ + 3, + 15 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18875, + "checksum_sha256": "0FBDD28AB9AF605951CAF939018DF35DDBE9111119EA48165350388F847CA24D", + "created_at": "2026-02-19T14:44:24Z", + "updated_at": "2026-02-19T14:44:24Z" + }, + { + "id": "2026_02_19_daily_routines_es_fr_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_es_fr_A2.json", + "language_ids": [ + 3, + 14 + ], + "category": "Daily Routines", + "item_count": 59, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18555, + "checksum_sha256": "9E84D38CCEDA79B4B62E0425ADE28E46F0F20C8AFC7534646C50F9038F432269", + "created_at": "2026-02-19T14:44:38Z", + "updated_at": "2026-02-19T14:44:38Z" + }, + { + "id": "2026_02_19_daily_routines_es_it_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_es_it_A2.json", + "language_ids": [ + 3, + 20 + ], + "category": "Daily Routines", + "item_count": 59, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18488, + "checksum_sha256": "F9694B90C7394787E0429C8FD73A2D10E6795FF36D54AD919E371A029EDC5B46", + "created_at": "2026-02-19T14:44:51Z", + "updated_at": "2026-02-19T14:44:51Z" + }, + { + "id": "2026_02_19_daily_routines_es_ja_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_es_ja_A2.json", + "language_ids": [ + 3, + 21 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 20513, + "checksum_sha256": "0EEC8AD5E53EE61C266C7CD29E661C6F62A9145B866EA335F7D6E31975B3DBBC", + "created_at": "2026-02-19T14:45:15Z", + "updated_at": "2026-02-19T14:45:15Z" + }, + { + "id": "2026_02_19_daily_routines_es_ko_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_es_ko_A2.json", + "language_ids": [ + 3, + 13 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19610, + "checksum_sha256": "0E6EA7A5669D5A82E96C030D524A17D6DCCBA572FB8B27AD11A08ABCEBDC97EF", + "created_at": "2026-02-19T14:45:52Z", + "updated_at": "2026-02-19T14:45:52Z" + }, + { + "id": "2026_02_19_daily_routines_es_pl_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_es_pl_A2.json", + "language_ids": [ + 3, + 24 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18877, + "checksum_sha256": "149946367B9A72EBE64E270E012DAEE6EA84CE14A85A227E9418A22547DAAB8E", + "created_at": "2026-02-19T14:46:06Z", + "updated_at": "2026-02-19T14:46:06Z" + }, + { + "id": "2026_02_19_daily_routines_es_pt_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_es_pt_A2.json", + "language_ids": [ + 3, + 7 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18614, + "checksum_sha256": "2E88A80014DC0D480E102ABD43E8B83AFD16132561C23D2744739272FAD7C152", + "created_at": "2026-02-19T14:44:11Z", + "updated_at": "2026-02-19T14:44:11Z" + }, + { + "id": "2026_02_19_daily_routines_es_zh_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_es_zh_A2.json", + "language_ids": [ + 3, + 2 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19367, + "checksum_sha256": "C7AF67F8FDC2076A5C68859E10BEB8FE4BD1BE69DE51C4A7B69039F02D2E8DD7", + "created_at": "2026-02-19T14:45:32Z", + "updated_at": "2026-02-19T14:45:32Z" + }, + { + "id": "2026_02_19_daily_routines_fr_it_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_fr_it_A2.json", + "language_ids": [ + 14, + 20 + ], + "category": "Daily Routines", + "item_count": 59, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18756, + "checksum_sha256": "289DB1D659838BC85B32641208E54DE1509B4E48A8D0D0DD77ADA0080E54ED23", + "created_at": "2026-02-19T14:49:57Z", + "updated_at": "2026-02-19T14:49:57Z" + }, + { + "id": "2026_02_19_daily_routines_fr_ja_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_fr_ja_A2.json", + "language_ids": [ + 14, + 21 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 20644, + "checksum_sha256": "FDD0549F1D2C59DE592B6CC47786B029079489E51C825D9AF6D130D1EA052A8C", + "created_at": "2026-02-19T14:50:22Z", + "updated_at": "2026-02-19T14:50:22Z" + }, + { + "id": "2026_02_19_daily_routines_fr_ko_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_fr_ko_A2.json", + "language_ids": [ + 14, + 13 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19760, + "checksum_sha256": "DAA9FD6222CB66825CA73AA66096EAA78F27C8F12713B0E88EC40E0979B78965", + "created_at": "2026-02-19T14:51:00Z", + "updated_at": "2026-02-19T14:51:00Z" + }, + { + "id": "2026_02_19_daily_routines_fr_pl_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_fr_pl_A2.json", + "language_ids": [ + 14, + 24 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19043, + "checksum_sha256": "AD13EDC7E7F7D7DC150454B2658A855B5EFB5E16D346BC8DC8D2BDB868C178D8", + "created_at": "2026-02-19T14:51:15Z", + "updated_at": "2026-02-19T14:51:15Z" + }, + { + "id": "2026_02_19_daily_routines_fr_zh_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_fr_zh_A2.json", + "language_ids": [ + 14, + 2 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19325, + "checksum_sha256": "1C80DC498629EC7D188ADE00B77D13D767271B962DB752B18D685E20ED31BC3D", + "created_at": "2026-02-19T14:50:39Z", + "updated_at": "2026-02-19T14:50:39Z" + }, + { + "id": "2026_02_19_daily_routines_it_ja_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_it_ja_A2.json", + "language_ids": [ + 20, + 21 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 20319, + "checksum_sha256": "E4587213651F570D91E302CEBEE42D54A4CCC4FC0856357ABC826B6F2170BF83", + "created_at": "2026-02-19T14:51:38Z", + "updated_at": "2026-02-19T14:51:38Z" + }, + { + "id": "2026_02_19_daily_routines_it_ko_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_it_ko_A2.json", + "language_ids": [ + 20, + 13 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19541, + "checksum_sha256": "148F5A5E18C09D37A57D7E0FF0D34FDC2879194E371F7223A540685E8CF62711", + "created_at": "2026-02-19T14:52:16Z", + "updated_at": "2026-02-19T14:52:16Z" + }, + { + "id": "2026_02_19_daily_routines_it_pl_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_it_pl_A2.json", + "language_ids": [ + 20, + 24 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18899, + "checksum_sha256": "FDF6C8D766CF1C35ED1AF86C85F19959E1E767A5BEC68D419FAC72A1597C57A6", + "created_at": "2026-02-19T14:52:29Z", + "updated_at": "2026-02-19T14:52:29Z" + }, + { + "id": "2026_02_19_daily_routines_it_zh_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_it_zh_A2.json", + "language_ids": [ + 20, + 2 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19378, + "checksum_sha256": "ED09B6252E48974B264C18EE10454FC2D7722476E58623165F1E3CE66D825F7B", + "created_at": "2026-02-19T14:51:56Z", + "updated_at": "2026-02-19T14:51:56Z" + }, + { + "id": "2026_02_19_daily_routines_ja_ko_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_ja_ko_A2.json", + "language_ids": [ + 21, + 13 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 21540, + "checksum_sha256": "0DF796E020F036A1772DAE73F25CCBE2D36312FD7E1FB063B283FB959BB50202", + "created_at": "2026-02-19T14:53:32Z", + "updated_at": "2026-02-19T14:53:32Z" + }, + { + "id": "2026_02_19_daily_routines_ja_pl_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_ja_pl_A2.json", + "language_ids": [ + 21, + 24 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 21216, + "checksum_sha256": "1F0C7E3341AF8F68AEAE9BECEE86D044D369CC46032BF03A4C5B866D32F73822", + "created_at": "2026-02-19T14:54:00Z", + "updated_at": "2026-02-19T14:54:00Z" + }, + { + "id": "2026_02_19_daily_routines_ja_zh_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_ja_zh_A2.json", + "language_ids": [ + 21, + 2 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 21558, + "checksum_sha256": "C2508BBF76A3D0DDDC8FD0EFBA2D8644D1CF411F18BEA5E6ECB01BD47E36CA22", + "created_at": "2026-02-19T14:53:00Z", + "updated_at": "2026-02-19T14:53:00Z" + }, + { + "id": "2026_02_19_daily_routines_ko_pl_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_ko_pl_A2.json", + "language_ids": [ + 13, + 24 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19617, + "checksum_sha256": "2B6F7A1474BA0B45A5AB88D6D7D9E6869991211DD6C8FC0DDC7345AF8B39DB36", + "created_at": "2026-02-19T14:54:57Z", + "updated_at": "2026-02-19T14:54:57Z" + }, + { + "id": "2026_02_19_daily_routines_pt_de_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_pt_de_A2.json", + "language_ids": [ + 7, + 15 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18860, + "checksum_sha256": "F045F1BC5839044B0AF7B818611F234BDA4C65C32E66290632FB479DE420E6DE", + "created_at": "2026-02-19T14:46:20Z", + "updated_at": "2026-02-19T14:46:20Z" + }, + { + "id": "2026_02_19_daily_routines_pt_fr_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_pt_fr_A2.json", + "language_ids": [ + 7, + 14 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18918, + "checksum_sha256": "04B2FBA52C65220B435C0CCD51E4346B17BC23F473CDD69C7EE420556C2E4D08", + "created_at": "2026-02-19T14:46:33Z", + "updated_at": "2026-02-19T14:46:33Z" + }, + { + "id": "2026_02_19_daily_routines_pt_it_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_pt_it_A2.json", + "language_ids": [ + 7, + 20 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 18758, + "checksum_sha256": "C494FCC4C48029AAE43F52610233D00455B05C4C058DA800BD34666FFE80BAD2", + "created_at": "2026-02-19T14:46:47Z", + "updated_at": "2026-02-19T14:46:47Z" + }, + { + "id": "2026_02_19_daily_routines_pt_ja_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_pt_ja_A2.json", + "language_ids": [ + 7, + 21 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 20218, + "checksum_sha256": "F72D3C1014597D15A2CC76F9ED6C16AB3A8707D4A996B36AB209322F5E9BED67", + "created_at": "2026-02-19T14:47:10Z", + "updated_at": "2026-02-19T14:47:10Z" + }, + { + "id": "2026_02_19_daily_routines_pt_ko_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_pt_ko_A2.json", + "language_ids": [ + 7, + 13 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19298, + "checksum_sha256": "4D28172CB9B4F02FB479E864AC5A61AC886A83338A8A1906D480385B8E9CEA68", + "created_at": "2026-02-19T14:47:47Z", + "updated_at": "2026-02-19T14:47:47Z" + }, + { + "id": "2026_02_19_daily_routines_pt_pl_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_pt_pl_A2.json", + "language_ids": [ + 7, + 24 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19122, + "checksum_sha256": "1F0E87908E637F50CB0FD9F62946E502B53A66C3404EEAC086F439F2EE02AEB9", + "created_at": "2026-02-19T14:48:02Z", + "updated_at": "2026-02-19T14:48:02Z" + }, + { + "id": "2026_02_19_daily_routines_pt_zh_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_pt_zh_A2.json", + "language_ids": [ + 7, + 2 + ], + "category": "Daily Routines", + "item_count": 61, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19604, + "checksum_sha256": "C886C5BA992AD7AF3B14436B1A91AB58EF462A288208450769DA216F02E377A2", + "created_at": "2026-02-19T14:47:28Z", + "updated_at": "2026-02-19T14:47:28Z" + }, + { + "id": "2026_02_19_daily_routines_zh_ko_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_zh_ko_A2.json", + "language_ids": [ + 2, + 13 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 20035, + "checksum_sha256": "1B4551A919414853628FB383ED99DD0C56181F7092FC886E74D15F847844A299", + "created_at": "2026-02-19T14:54:22Z", + "updated_at": "2026-02-19T14:54:22Z" + }, + { + "id": "2026_02_19_daily_routines_zh_pl_A2", + "name": "Daily Routines", + "description": "Verbs and vocabulary describing everyday morning, daytime, and evening routines.", + "filename": "2026_02_19_daily_routines_zh_pl_A2.json", + "language_ids": [ + 2, + 24 + ], + "category": "Daily Routines", + "item_count": 60, + "level": "A2", + "emoji": "⏰", + "version": 1, + "size_bytes": 19322, + "checksum_sha256": "EC8A24912224B0D029F32F0CDD9E22186B230FD3A46B2607CE9062DB63D2067C", + "created_at": "2026-02-19T14:54:38Z", + "updated_at": "2026-02-19T14:54:38Z" + }, + { + "id": "2026_02_19_education_school_de_fr_B1", + "name": "Education & School", + "description": "Vocabulary for school life, academic subjects, and the learning process.", + "filename": "2026_02_19_education_school_de_fr_B1.json", + "language_ids": [ + 15, + 14 + ], + "category": "Education & School", + "item_count": 73, + "level": "B1", + "emoji": "📚", + "version": 1, + "size_bytes": 23129, + "checksum_sha256": "4D7F632E08F2EE749EE25975B01333A915E9625957EFA511A7D659B166E818C5", + "created_at": "2026-02-19T15:39:55Z", + "updated_at": "2026-02-19T15:39:55Z" + }, + { + "id": "2026_02_19_education_school_de_it_B1", + "name": "Education & School", + "description": "Vocabulary for school life, academic subjects, and the learning process.", + "filename": "2026_02_19_education_school_de_it_B1.json", + "language_ids": [ + 15, + 20 + ], + "category": "Education & School", + "item_count": 76, + "level": "B1", + "emoji": "📚", + "version": 1, + "size_bytes": 23631, + "checksum_sha256": "25806A10865E042066A16C589B5EF1747B696700DD1F88EB22A7FDD40F413115", + "created_at": "2026-02-19T15:40:10Z", + "updated_at": "2026-02-19T15:40:10Z" + }, + { + "id": "2026_02_19_education_school_en_de_B1", + "name": "Education & School", + "description": "Vocabulary for school life, academic subjects, and the learning process.", + "filename": "2026_02_19_education_school_en_de_B1.json", + "language_ids": [ + 1, + 15 + ], + "category": "Education & School", + "item_count": 81, + "level": "B1", + "emoji": "📚", + "version": 1, + "size_bytes": 25033, + "checksum_sha256": "EF2447F0C80EF33CCC7F31C59305287071D6600B0147386011383CD52B945ACF", + "created_at": "2026-02-19T15:37:29Z", + "updated_at": "2026-02-19T15:37:29Z" + }, + { + "id": "2026_02_19_education_school_en_es_B1", + "name": "Education & School", + "description": "Vocabulary for school life, academic subjects, and the learning process.", + "filename": "2026_02_19_education_school_en_es_B1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Education & School", + "item_count": 80, + "level": "B1", + "emoji": "📚", + "version": 1, + "size_bytes": 24613, + "checksum_sha256": "9E095287BC9330D9690551256591F0C5556E4187972520D6B4D24C9D5A795DED", + "created_at": "2026-02-19T15:37:01Z", + "updated_at": "2026-02-19T15:37:01Z" + }, + { + "id": "2026_02_19_education_school_en_fr_B1", + "name": "Education & School", + "description": "Vocabulary for school life, academic subjects, and the learning process.", + "filename": "2026_02_19_education_school_en_fr_B1.json", + "language_ids": [ + 1, + 14 + ], + "category": "Education & School", + "item_count": 78, + "level": "B1", + "emoji": "📚", + "version": 1, + "size_bytes": 24158, + "checksum_sha256": "F5C50305E6997FF73285B851032E37531CA7B8DBC25C9884EE321AD48EF7CD9A", + "created_at": "2026-02-19T15:37:43Z", + "updated_at": "2026-02-19T15:37:43Z" + }, + { + "id": "2026_02_19_education_school_en_it_B1", + "name": "Education & School", + "description": "Vocabulary for school life, academic subjects, and the learning process.", + "filename": "2026_02_19_education_school_en_it_B1.json", + "language_ids": [ + 1, + 20 + ], + "category": "Education & School", + "item_count": 75, + "level": "B1", + "emoji": "📚", + "version": 1, + "size_bytes": 23175, + "checksum_sha256": "9E63B270BFB0CA2BB3BB5E8226F2D8D08809EFC005659A5BCA5F911F2B2076FC", + "created_at": "2026-02-19T15:37:56Z", + "updated_at": "2026-02-19T15:37:56Z" + }, + { + "id": "2026_02_19_education_school_en_pt_B1", + "name": "Education & School", + "description": "Vocabulary for school life, academic subjects, and the learning process.", + "filename": "2026_02_19_education_school_en_pt_B1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Education & School", + "item_count": 76, + "level": "B1", + "emoji": "📚", + "version": 1, + "size_bytes": 23432, + "checksum_sha256": "C63F309133E3CFCE199FB7215C698E85BE093484651C6B0169BC4B048A065B02", + "created_at": "2026-02-19T15:37:15Z", + "updated_at": "2026-02-19T15:37:15Z" + }, + { + "id": "2026_02_19_education_school_es_de_B1", + "name": "Education & School", + "description": "Vocabulary for school life, academic subjects, and the learning process.", + "filename": "2026_02_19_education_school_es_de_B1.json", + "language_ids": [ + 3, + 15 + ], + "category": "Education & School", + "item_count": 72, + "level": "B1", + "emoji": "📚", + "version": 1, + "size_bytes": 22336, + "checksum_sha256": "113B1A29A31C86548C214AFBA536D10B358E3795F60B077030D95D12E768E670", + "created_at": "2026-02-19T15:38:26Z", + "updated_at": "2026-02-19T15:38:26Z" + }, + { + "id": "2026_02_19_education_school_es_fr_B1", + "name": "Education & School", + "description": "Vocabulary for school life, academic subjects, and the learning process.", + "filename": "2026_02_19_education_school_es_fr_B1.json", + "language_ids": [ + 3, + 14 + ], + "category": "Education & School", + "item_count": 73, + "level": "B1", + "emoji": "📚", + "version": 1, + "size_bytes": 22635, + "checksum_sha256": "F99421C792F6FC8363BD644AD3E07EEAD55E1526C33525BEA7BFFD3D7250B1AE", + "created_at": "2026-02-19T15:38:40Z", + "updated_at": "2026-02-19T15:38:40Z" + }, + { + "id": "2026_02_19_education_school_es_it_B1", + "name": "Education & School", + "description": "Vocabulary for school life, academic subjects, and the learning process.", + "filename": "2026_02_19_education_school_es_it_B1.json", + "language_ids": [ + 3, + 20 + ], + "category": "Education & School", + "item_count": 85, + "level": "B1", + "emoji": "📚", + "version": 1, + "size_bytes": 26250, + "checksum_sha256": "BFB2C7777D6698DF3365E07C27A41E49C244A21D4B8E117640BF0B9D91EE0ECE", + "created_at": "2026-02-19T15:38:56Z", + "updated_at": "2026-02-19T15:38:56Z" + }, + { + "id": "2026_02_19_education_school_es_pt_B1", + "name": "Education & School", + "description": "Vocabulary for school life, academic subjects, and the learning process.", + "filename": "2026_02_19_education_school_es_pt_B1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Education & School", + "item_count": 77, + "level": "B1", + "emoji": "📚", + "version": 1, + "size_bytes": 23769, + "checksum_sha256": "71DC70A367379EB90A756CF5E6FE2B925436D499C7CB6626C617E798BA831C4A", + "created_at": "2026-02-19T15:38:11Z", + "updated_at": "2026-02-19T15:38:11Z" + }, + { + "id": "2026_02_19_education_school_fr_it_B1", + "name": "Education & School", + "description": "Vocabulary for school life, academic subjects, and the learning process.", + "filename": "2026_02_19_education_school_fr_it_B1.json", + "language_ids": [ + 14, + 20 + ], + "category": "Education & School", + "item_count": 73, + "level": "B1", + "emoji": "📚", + "version": 1, + "size_bytes": 22710, + "checksum_sha256": "A322FBFF23D60A231607705EFD44DD9D9877BCD000B16D65EFA7721FA255D533", + "created_at": "2026-02-19T15:40:24Z", + "updated_at": "2026-02-19T15:40:24Z" + }, + { + "id": "2026_02_19_education_school_pt_de_B1", + "name": "Education & School", + "description": "Vocabulary for school life, academic subjects, and the learning process.", + "filename": "2026_02_19_education_school_pt_de_B1.json", + "language_ids": [ + 7, + 15 + ], + "category": "Education & School", + "item_count": 73, + "level": "B1", + "emoji": "📚", + "version": 1, + "size_bytes": 22743, + "checksum_sha256": "6458EFCCE4BBE774550A62AD28C9AFD7225381AD0CE5622785D03DBAF64445B7", + "created_at": "2026-02-19T15:39:11Z", + "updated_at": "2026-02-19T15:39:11Z" + }, + { + "id": "2026_02_19_education_school_pt_fr_B1", + "name": "Education & School", + "description": "Vocabulary for school life, academic subjects, and the learning process.", + "filename": "2026_02_19_education_school_pt_fr_B1.json", + "language_ids": [ + 7, + 14 + ], + "category": "Education & School", + "item_count": 73, + "level": "B1", + "emoji": "📚", + "version": 1, + "size_bytes": 22702, + "checksum_sha256": "3B11A69A91C3E7D71066DB33108386D5500BE58220097DB24A97E82B4E018B9B", + "created_at": "2026-02-19T15:39:25Z", + "updated_at": "2026-02-19T15:39:25Z" + }, + { + "id": "2026_02_19_education_school_pt_it_B1", + "name": "Education & School", + "description": "Vocabulary for school life, academic subjects, and the learning process.", + "filename": "2026_02_19_education_school_pt_it_B1.json", + "language_ids": [ + 7, + 20 + ], + "category": "Education & School", + "item_count": 76, + "level": "B1", + "emoji": "📚", + "version": 1, + "size_bytes": 23523, + "checksum_sha256": "77E42EB9D63AF2600AC5BA4C010C48468134C66630CEF8A6D6B0382359CEE2F3", + "created_at": "2026-02-19T15:39:40Z", + "updated_at": "2026-02-19T15:39:40Z" + }, + { + "id": "2026_02_19_emotions_feelings_de_fr_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_de_fr_A2.json", + "language_ids": [ + 15, + 14 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18800, + "checksum_sha256": "DCFDF9865621952DCCC5887102C21693D1A9DBA1F028F30AF56BEFE1E69C26AC", + "created_at": "2026-02-19T15:02:12Z", + "updated_at": "2026-02-19T15:02:12Z" + }, + { + "id": "2026_02_19_emotions_feelings_de_it_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_de_it_A2.json", + "language_ids": [ + 15, + 20 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18773, + "checksum_sha256": "CA2C726249F017C961AC2877E76D1851E3FDAC834C4ACF98C6AA7A12AE45CEAF", + "created_at": "2026-02-19T15:02:26Z", + "updated_at": "2026-02-19T15:02:26Z" + }, + { + "id": "2026_02_19_emotions_feelings_de_ja_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_de_ja_A2.json", + "language_ids": [ + 15, + 21 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 20883, + "checksum_sha256": "44AED4D2BCBA4E05D3061B0DDADCA836746ADF0B42EBF3C4A1D0DD81B691A4FF", + "created_at": "2026-02-19T15:02:51Z", + "updated_at": "2026-02-19T15:02:51Z" + }, + { + "id": "2026_02_19_emotions_feelings_de_ko_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_de_ko_A2.json", + "language_ids": [ + 15, + 13 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 19681, + "checksum_sha256": "AA6EAC247F8F79764CFC4BF0F939E236337E28BF76D30ED46396F221627E4FC3", + "created_at": "2026-02-19T15:03:29Z", + "updated_at": "2026-02-19T15:03:29Z" + }, + { + "id": "2026_02_19_emotions_feelings_de_pl_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_de_pl_A2.json", + "language_ids": [ + 15, + 24 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18830, + "checksum_sha256": "4F634E3F4BC82B92FA8E66B52332D502BC59D6FFF78EFD16113862151FF01222", + "created_at": "2026-02-19T15:03:43Z", + "updated_at": "2026-02-19T15:03:43Z" + }, + { + "id": "2026_02_19_emotions_feelings_de_zh_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_de_zh_A2.json", + "language_ids": [ + 15, + 2 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 19112, + "checksum_sha256": "6239FABFCCDB3F485F62D3FBEBBA74ABC4F38C4D71070FD8328B7E3E35012487", + "created_at": "2026-02-19T15:03:07Z", + "updated_at": "2026-02-19T15:03:07Z" + }, + { + "id": "2026_02_19_emotions_feelings_en_de_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_en_de_A2.json", + "language_ids": [ + 1, + 15 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18696, + "checksum_sha256": "DD570776E85AE05F7C6D689B5D85FD6BE462E136AD9CBD3AF3A7F97D0C041FB1", + "created_at": "2026-02-19T14:55:34Z", + "updated_at": "2026-02-19T14:55:34Z" + }, + { + "id": "2026_02_19_emotions_feelings_en_es_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_en_es_A2.json", + "language_ids": [ + 1, + 3 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18578, + "checksum_sha256": "18897DC74C897F1B0869669B2138578CF2236BC1F1BEDB2959CDB5B0C579B00E", + "created_at": "2026-02-19T14:55:09Z", + "updated_at": "2026-02-19T14:55:09Z" + }, + { + "id": "2026_02_19_emotions_feelings_en_fr_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_en_fr_A2.json", + "language_ids": [ + 1, + 14 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18558, + "checksum_sha256": "E4410FCF16E1B75972A67EA8BA3F2C62744E4F16F229E6F087C6DE29CA97853C", + "created_at": "2026-02-19T14:55:45Z", + "updated_at": "2026-02-19T14:55:45Z" + }, + { + "id": "2026_02_19_emotions_feelings_en_it_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_en_it_A2.json", + "language_ids": [ + 1, + 20 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18616, + "checksum_sha256": "AC5612FE64D3FC011F27F105B9165DA244573C384F45E748D2E53CD0D340FB6C", + "created_at": "2026-02-19T14:55:57Z", + "updated_at": "2026-02-19T14:55:57Z" + }, + { + "id": "2026_02_19_emotions_feelings_en_ja_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_en_ja_A2.json", + "language_ids": [ + 1, + 21 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 20890, + "checksum_sha256": "251AC7EA542AA938616CB2556E992A523A834C0A93AA8EED29DE5E8704B95F6E", + "created_at": "2026-02-19T14:56:23Z", + "updated_at": "2026-02-19T14:56:23Z" + }, + { + "id": "2026_02_19_emotions_feelings_en_ko_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_en_ko_A2.json", + "language_ids": [ + 1, + 13 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 19592, + "checksum_sha256": "31C4B3FDA94039F1042299E8AB8E796E4C9A6D8C5BADDA7DED86728D523D8DFC", + "created_at": "2026-02-19T14:56:58Z", + "updated_at": "2026-02-19T14:56:58Z" + }, + { + "id": "2026_02_19_emotions_feelings_en_pl_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_en_pl_A2.json", + "language_ids": [ + 1, + 24 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18733, + "checksum_sha256": "9968E7DFD067834CE5858C9E571DBD29CBB093C60B4EE11F1C31B1C7494D9D7D", + "created_at": "2026-02-19T14:57:11Z", + "updated_at": "2026-02-19T14:57:11Z" + }, + { + "id": "2026_02_19_emotions_feelings_en_pt_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_en_pt_A2.json", + "language_ids": [ + 1, + 7 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18558, + "checksum_sha256": "BD532BF438BB62AC5C68031CDD237A55C068067F17B7AF884DB95207BE7C43B0", + "created_at": "2026-02-19T14:55:21Z", + "updated_at": "2026-02-19T14:55:21Z" + }, + { + "id": "2026_02_19_emotions_feelings_en_zh_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_en_zh_A2.json", + "language_ids": [ + 1, + 2 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 19079, + "checksum_sha256": "B303F58617DEB2C773956BDEA68BA0A35725DE37D0D1F1A448A1F521A03C1C2A", + "created_at": "2026-02-19T14:56:38Z", + "updated_at": "2026-02-19T14:56:38Z" + }, + { + "id": "2026_02_19_emotions_feelings_es_de_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_es_de_A2.json", + "language_ids": [ + 3, + 15 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18739, + "checksum_sha256": "C638D908402CFE1D80C59F87047C67352B969106254E047CE54A5E13AC4ABC94", + "created_at": "2026-02-19T14:57:39Z", + "updated_at": "2026-02-19T14:57:39Z" + }, + { + "id": "2026_02_19_emotions_feelings_es_fr_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_es_fr_A2.json", + "language_ids": [ + 3, + 14 + ], + "category": "Emotions & Feelings", + "item_count": 59, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18412, + "checksum_sha256": "869909D009CC68E1E85291B8D469095DE64BE2DF7140D37A8925471BD0DC123B", + "created_at": "2026-02-19T14:57:52Z", + "updated_at": "2026-02-19T14:57:52Z" + }, + { + "id": "2026_02_19_emotions_feelings_es_it_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_es_it_A2.json", + "language_ids": [ + 3, + 20 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18758, + "checksum_sha256": "D32FC38918531B6209F3C5FF9107C6A4F4CE21E443DC19326F17A3BDD0B3E0A5", + "created_at": "2026-02-19T14:58:05Z", + "updated_at": "2026-02-19T14:58:05Z" + }, + { + "id": "2026_02_19_emotions_feelings_es_ja_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_es_ja_A2.json", + "language_ids": [ + 3, + 21 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 20992, + "checksum_sha256": "1DA012B35DEC7F7792D470AA7A3EB9B9932F5073926152BF3814CD9B378AD751", + "created_at": "2026-02-19T14:58:30Z", + "updated_at": "2026-02-19T14:58:30Z" + }, + { + "id": "2026_02_19_emotions_feelings_es_ko_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_es_ko_A2.json", + "language_ids": [ + 3, + 13 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 20191, + "checksum_sha256": "F02D64F043ADC38A57165745053C7F135F23604636BA5DA15D7D829F96A67864", + "created_at": "2026-02-19T14:59:46Z", + "updated_at": "2026-02-19T14:59:46Z" + }, + { + "id": "2026_02_19_emotions_feelings_es_pl_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_es_pl_A2.json", + "language_ids": [ + 3, + 24 + ], + "category": "Emotions & Feelings", + "item_count": 59, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18493, + "checksum_sha256": "CC8D0D749030AA50FBAEFF166C29B7694F9C764FA9356C8DACA68E89F137F37C", + "created_at": "2026-02-19T15:00:00Z", + "updated_at": "2026-02-19T15:00:00Z" + }, + { + "id": "2026_02_19_emotions_feelings_es_pt_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_es_pt_A2.json", + "language_ids": [ + 3, + 7 + ], + "category": "Emotions & Feelings", + "item_count": 59, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18468, + "checksum_sha256": "8766F52BF9DC748C9823A34CC859D419C5FBA5328E265072AD399403E28859EB", + "created_at": "2026-02-19T14:57:25Z", + "updated_at": "2026-02-19T14:57:25Z" + }, + { + "id": "2026_02_19_emotions_feelings_es_zh_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_es_zh_A2.json", + "language_ids": [ + 3, + 2 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 19281, + "checksum_sha256": "7A48C20B8F11701F40E5CA5C6D94A4BDA7A0FFE0329AEC63EA59F79762DCA445", + "created_at": "2026-02-19T14:59:22Z", + "updated_at": "2026-02-19T14:59:22Z" + }, + { + "id": "2026_02_19_emotions_feelings_fr_it_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_fr_it_A2.json", + "language_ids": [ + 14, + 20 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18709, + "checksum_sha256": "21E7530D6B9C1C0E14F9EB0BD2D1699EFAC3C7D763637302B14C7655EC6ADE0E", + "created_at": "2026-02-19T15:03:56Z", + "updated_at": "2026-02-19T15:03:56Z" + }, + { + "id": "2026_02_19_emotions_feelings_fr_ja_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_fr_ja_A2.json", + "language_ids": [ + 14, + 21 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 20978, + "checksum_sha256": "468BFB8EDA1D61D0D20A9C5F2C91F7AB6C87918DFAFE5DC55C849195606A873E", + "created_at": "2026-02-19T15:04:21Z", + "updated_at": "2026-02-19T15:04:21Z" + }, + { + "id": "2026_02_19_emotions_feelings_fr_ko_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_fr_ko_A2.json", + "language_ids": [ + 14, + 13 + ], + "category": "Emotions & Feelings", + "item_count": 59, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 19344, + "checksum_sha256": "96C1BCCA2715E0877372AEB2F6F40E88C9155F178CD805640BA6BDCACF756785", + "created_at": "2026-02-19T15:04:57Z", + "updated_at": "2026-02-19T15:04:57Z" + }, + { + "id": "2026_02_19_emotions_feelings_fr_pl_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_fr_pl_A2.json", + "language_ids": [ + 14, + 24 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18644, + "checksum_sha256": "A8A2F8A3DEEFAA9B76138A6456900B8C2A5D60247B15584FC51658E7B6F80C1C", + "created_at": "2026-02-19T15:05:10Z", + "updated_at": "2026-02-19T15:05:10Z" + }, + { + "id": "2026_02_19_emotions_feelings_fr_zh_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_fr_zh_A2.json", + "language_ids": [ + 14, + 2 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 19074, + "checksum_sha256": "680B0FE04A414A1718D96D8787144853BB096DE25585EFB88FB9AE733055031E", + "created_at": "2026-02-19T15:04:36Z", + "updated_at": "2026-02-19T15:04:36Z" + }, + { + "id": "2026_02_19_emotions_feelings_it_ja_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_it_ja_A2.json", + "language_ids": [ + 20, + 21 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 21089, + "checksum_sha256": "9D5C1B582D0346B701B52A0005284142FED2CD8A70DF6182EBC8A759A74945DB", + "created_at": "2026-02-19T15:05:37Z", + "updated_at": "2026-02-19T15:05:37Z" + }, + { + "id": "2026_02_19_emotions_feelings_it_ko_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_it_ko_A2.json", + "language_ids": [ + 20, + 13 + ], + "category": "Emotions & Feelings", + "item_count": 59, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 19333, + "checksum_sha256": "826674FB543622F372F560D02276B4982F1F6031EE2D2125F9E50C27093CC251", + "created_at": "2026-02-19T15:06:13Z", + "updated_at": "2026-02-19T15:06:13Z" + }, + { + "id": "2026_02_19_emotions_feelings_it_pl_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_it_pl_A2.json", + "language_ids": [ + 20, + 24 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18839, + "checksum_sha256": "FDABAC780D442EFC52843C3193E29EC7AC17CB2FA2FA56CC137E4C2DA6A89F0B", + "created_at": "2026-02-19T15:06:27Z", + "updated_at": "2026-02-19T15:06:27Z" + }, + { + "id": "2026_02_19_emotions_feelings_it_zh_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_it_zh_A2.json", + "language_ids": [ + 20, + 2 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 19183, + "checksum_sha256": "C2F2182C153C4852906DC70EFFA78CCD10CFD386BE2B23E23DC414EDB7F7FA01", + "created_at": "2026-02-19T15:05:53Z", + "updated_at": "2026-02-19T15:05:53Z" + }, + { + "id": "2026_02_19_emotions_feelings_ja_ko_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_ja_ko_A2.json", + "language_ids": [ + 21, + 13 + ], + "category": "Emotions & Feelings", + "item_count": 59, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 21250, + "checksum_sha256": "422AEAE12E132473B5B7388CB729EC27EB255109BBFCB52FF498F28F638F30C5", + "created_at": "2026-02-19T15:07:24Z", + "updated_at": "2026-02-19T15:07:24Z" + }, + { + "id": "2026_02_19_emotions_feelings_ja_pl_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_ja_pl_A2.json", + "language_ids": [ + 21, + 24 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 20608, + "checksum_sha256": "0D902F1171BABE35F2EA470802C8194B783A4D69C10218AE57622099505DD257", + "created_at": "2026-02-19T15:07:48Z", + "updated_at": "2026-02-19T15:07:48Z" + }, + { + "id": "2026_02_19_emotions_feelings_ja_zh_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_ja_zh_A2.json", + "language_ids": [ + 21, + 2 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 20713, + "checksum_sha256": "9D169909094962FAD59CBE0A2470C164BCC8FF62ED5D7BE8D50414BBD91B7ABE", + "created_at": "2026-02-19T15:06:54Z", + "updated_at": "2026-02-19T15:06:54Z" + }, + { + "id": "2026_02_19_emotions_feelings_ko_pl_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_ko_pl_A2.json", + "language_ids": [ + 13, + 24 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 19737, + "checksum_sha256": "6543288F90BC92EAE44080F1CB203EA87F99649F429FF6505FEABDB247323A0D", + "created_at": "2026-02-19T15:08:48Z", + "updated_at": "2026-02-19T15:08:48Z" + }, + { + "id": "2026_02_19_emotions_feelings_pt_de_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_pt_de_A2.json", + "language_ids": [ + 7, + 15 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18749, + "checksum_sha256": "A685B3CFFD3E474E86BF4CB1671E821AB2D003C1BAAEC5ECA3AF9B76674B130A", + "created_at": "2026-02-19T15:00:14Z", + "updated_at": "2026-02-19T15:00:14Z" + }, + { + "id": "2026_02_19_emotions_feelings_pt_fr_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_pt_fr_A2.json", + "language_ids": [ + 7, + 14 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18660, + "checksum_sha256": "940100C6B604C9F569AB26227E9BC15EBE97C1B825A3F212E82D92131DB59B08", + "created_at": "2026-02-19T15:00:27Z", + "updated_at": "2026-02-19T15:00:27Z" + }, + { + "id": "2026_02_19_emotions_feelings_pt_it_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_pt_it_A2.json", + "language_ids": [ + 7, + 20 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18644, + "checksum_sha256": "B6A2DE9D47F9873B5F9CE195BF5698261B6CAA9E5FCEA6A3A5F5D47265669B82", + "created_at": "2026-02-19T15:00:41Z", + "updated_at": "2026-02-19T15:00:41Z" + }, + { + "id": "2026_02_19_emotions_feelings_pt_ja_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_pt_ja_A2.json", + "language_ids": [ + 7, + 21 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 20929, + "checksum_sha256": "02F4B4EEE82D2CE3E21B66BA74594EDE54146A653E73ECA3A903263649D99B31", + "created_at": "2026-02-19T15:01:07Z", + "updated_at": "2026-02-19T15:01:07Z" + }, + { + "id": "2026_02_19_emotions_feelings_pt_ko_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_pt_ko_A2.json", + "language_ids": [ + 7, + 13 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 19674, + "checksum_sha256": "87C7F42B6715F60F4138ED6713ECBE04C4C965F6BC58BD8A0B08D2FF4DC1CF30", + "created_at": "2026-02-19T15:01:45Z", + "updated_at": "2026-02-19T15:01:45Z" + }, + { + "id": "2026_02_19_emotions_feelings_pt_pl_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_pt_pl_A2.json", + "language_ids": [ + 7, + 24 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 18713, + "checksum_sha256": "D6AC5A8B7048BBE157A4B6353ECB863557A71A0BC520219C0F1B0DEB08158D64", + "created_at": "2026-02-19T15:01:58Z", + "updated_at": "2026-02-19T15:01:58Z" + }, + { + "id": "2026_02_19_emotions_feelings_pt_zh_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_pt_zh_A2.json", + "language_ids": [ + 7, + 2 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 19040, + "checksum_sha256": "42FC077123FFB0DF1B809038C4509CF826A2C9AFBDD403061FBD70107C861653", + "created_at": "2026-02-19T15:01:23Z", + "updated_at": "2026-02-19T15:01:23Z" + }, + { + "id": "2026_02_19_emotions_feelings_zh_ko_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_zh_ko_A2.json", + "language_ids": [ + 2, + 13 + ], + "category": "Emotions & Feelings", + "item_count": 59, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 19810, + "checksum_sha256": "DBDE5C822EA7ECBC38F23D370C8E54E22177764FA18FF7C2BA10A7A84FAB646B", + "created_at": "2026-02-19T15:08:12Z", + "updated_at": "2026-02-19T15:08:12Z" + }, + { + "id": "2026_02_19_emotions_feelings_zh_pl_A2", + "name": "Emotions & Feelings", + "description": "Vocabulary for expressing emotions, moods, and inner states — essential for meaningful human communication.", + "filename": "2026_02_19_emotions_feelings_zh_pl_A2.json", + "language_ids": [ + 2, + 24 + ], + "category": "Emotions & Feelings", + "item_count": 60, + "level": "A2", + "emoji": "😊", + "version": 1, + "size_bytes": 19043, + "checksum_sha256": "3E984948AE68898BF35E15DB240E82426EF6EC9001524F6D30AB5D7E9D6F7E2A", + "created_at": "2026-02-19T15:08:27Z", + "updated_at": "2026-02-19T15:08:27Z" + }, + { + "id": "2026_02_19_environment_climate_en_es_B1", + "name": "Environment & Climate", + "description": "Vocabulary for the natural environment, ecosystems, climate change, and sustainability.", + "filename": "2026_02_19_environment_climate_en_es_B1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Environment & Climate", + "item_count": 76, + "level": "B1", + "emoji": "🌍", + "version": 1, + "size_bytes": 23528, + "checksum_sha256": "39796FC3527C2FAEFDBEC6B5B631333332EDAB4C54DDCE68CAD61659D769FA56", + "created_at": "2026-02-19T15:51:08Z", + "updated_at": "2026-02-19T15:51:08Z" + }, + { + "id": "2026_02_19_environment_climate_en_pt_B1", + "name": "Environment & Climate", + "description": "Vocabulary for the natural environment, ecosystems, climate change, and sustainability.", + "filename": "2026_02_19_environment_climate_en_pt_B1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Environment & Climate", + "item_count": 82, + "level": "B1", + "emoji": "🌍", + "version": 1, + "size_bytes": 25369, + "checksum_sha256": "923D3A401035AB274C76D3A7C5C80F9AE14EA8C844B0E096220CAD1583CE84E3", + "created_at": "2026-02-19T16:02:26Z", + "updated_at": "2026-02-19T16:02:26Z" + }, + { + "id": "2026_02_19_environment_climate_es_pt_B1", + "name": "Environment & Climate", + "description": "Vocabulary for the natural environment, ecosystems, climate change, and sustainability.", + "filename": "2026_02_19_environment_climate_es_pt_B1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Environment & Climate", + "item_count": 72, + "level": "B1", + "emoji": "🌍", + "version": 1, + "size_bytes": 22397, + "checksum_sha256": "402DFE3336A2E17DE0B4D355C49137F58C2A8A9F6E51CB6492040D82635F75EE", + "created_at": "2026-02-19T16:02:42Z", + "updated_at": "2026-02-19T16:02:42Z" + }, + { + "id": "2026_02_19_family_home_de_fr_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_de_fr_A1.json", + "language_ids": [ + 15, + 14 + ], + "category": "Family & Home", + "item_count": 73, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22488, + "checksum_sha256": "22DACD30F2CAD101E04058E23954368BF62303778CDD90D0109C5A39541AB6D8", + "created_at": "2026-02-19T14:20:53Z", + "updated_at": "2026-02-19T14:20:53Z" + }, + { + "id": "2026_02_19_family_home_de_it_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_de_it_A1.json", + "language_ids": [ + 15, + 20 + ], + "category": "Family & Home", + "item_count": 75, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 23087, + "checksum_sha256": "CCBB36393043366B862D8098B757FBD075C42DCB3904D785188EF3337F0BA25D", + "created_at": "2026-02-19T14:21:08Z", + "updated_at": "2026-02-19T14:21:08Z" + }, + { + "id": "2026_02_19_family_home_de_ja_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_de_ja_A1.json", + "language_ids": [ + 15, + 21 + ], + "category": "Family & Home", + "item_count": 71, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22990, + "checksum_sha256": "050E610A5218073904BC121FE325A9167731689A502F9B2818FFF4CD6A7E872A", + "created_at": "2026-02-19T14:21:29Z", + "updated_at": "2026-02-19T14:21:29Z" + }, + { + "id": "2026_02_19_family_home_de_ko_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_de_ko_A1.json", + "language_ids": [ + 15, + 13 + ], + "category": "Family & Home", + "item_count": 70, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22261, + "checksum_sha256": "DEC181EC1DAD438E541ECCC50DE7D848381CD02F44F3139F305E8AC038BECC30", + "created_at": "2026-02-19T14:22:07Z", + "updated_at": "2026-02-19T14:22:07Z" + }, + { + "id": "2026_02_19_family_home_de_pl_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_de_pl_A1.json", + "language_ids": [ + 15, + 24 + ], + "category": "Family & Home", + "item_count": 74, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22746, + "checksum_sha256": "3898E3B0616CA97638EDBDAC808605264BA7F50AF97DFAFD32101C0BBB0AF9BD", + "created_at": "2026-02-19T14:22:23Z", + "updated_at": "2026-02-19T14:22:23Z" + }, + { + "id": "2026_02_19_family_home_de_zh_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_de_zh_A1.json", + "language_ids": [ + 15, + 2 + ], + "category": "Family & Home", + "item_count": 72, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22667, + "checksum_sha256": "7B7D046709F6E5E408D98B7589D7F78D083764BB0E5F689376FAF519C5D857E8", + "created_at": "2026-02-19T14:21:47Z", + "updated_at": "2026-02-19T14:21:47Z" + }, + { + "id": "2026_02_19_family_home_en_de_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_en_de_A1.json", + "language_ids": [ + 1, + 15 + ], + "category": "Family & Home", + "item_count": 77, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 23600, + "checksum_sha256": "64AB536C6164EA1B2F2E1D4121D474DD0CFD2E95F0AA7904AAE0655334D32F0B", + "created_at": "2026-02-19T14:14:43Z", + "updated_at": "2026-02-19T14:14:43Z" + }, + { + "id": "2026_02_19_family_home_en_es_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_en_es_A1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Family & Home", + "item_count": 72, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22017, + "checksum_sha256": "1D8E0BF7CC340793EB3A9A50DDACB945F3C1212E97829777825C8C458532B6E9", + "created_at": "2026-02-19T14:14:17Z", + "updated_at": "2026-02-19T14:14:17Z" + }, + { + "id": "2026_02_19_family_home_en_fr_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_en_fr_A1.json", + "language_ids": [ + 1, + 14 + ], + "category": "Family & Home", + "item_count": 73, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22400, + "checksum_sha256": "A2C526AA0F898A60D9D224FA82C14FA4936238DC202B6BBDE9506DB214509826", + "created_at": "2026-02-19T14:14:56Z", + "updated_at": "2026-02-19T14:14:56Z" + }, + { + "id": "2026_02_19_family_home_en_it_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_en_it_A1.json", + "language_ids": [ + 1, + 20 + ], + "category": "Family & Home", + "item_count": 75, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 23008, + "checksum_sha256": "6FA467E2BBB2BE575F2D57923556D2EFF0FDE0B221463D2F359820798057E591", + "created_at": "2026-02-19T14:15:09Z", + "updated_at": "2026-02-19T14:15:09Z" + }, + { + "id": "2026_02_19_family_home_en_ja_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_en_ja_A1.json", + "language_ids": [ + 1, + 21 + ], + "category": "Family & Home", + "item_count": 70, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22509, + "checksum_sha256": "3A326C09476241323958CD28BF2AD57723E7BE9A37FA34B47AF30EE27B820C05", + "created_at": "2026-02-19T14:15:30Z", + "updated_at": "2026-02-19T14:15:30Z" + }, + { + "id": "2026_02_19_family_home_en_ko_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_en_ko_A1.json", + "language_ids": [ + 1, + 13 + ], + "category": "Family & Home", + "item_count": 76, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 24008, + "checksum_sha256": "5C0A7A3DB293BA67C7D2E9278BAFD48491C76D613AFA818B90B3C1CCA7B35DA6", + "created_at": "2026-02-19T14:16:08Z", + "updated_at": "2026-02-19T14:16:08Z" + }, + { + "id": "2026_02_19_family_home_en_pl_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_en_pl_A1.json", + "language_ids": [ + 1, + 24 + ], + "category": "Family & Home", + "item_count": 73, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22393, + "checksum_sha256": "B8AA2EA7DADED3911BBD9008180855D62B365A0857A59ECB3672AA4B3658FB5D", + "created_at": "2026-02-19T14:16:22Z", + "updated_at": "2026-02-19T14:16:22Z" + }, + { + "id": "2026_02_19_family_home_en_pt_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_en_pt_A1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Family & Home", + "item_count": 72, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 21911, + "checksum_sha256": "E73280AB52D57D63212083F8F68576EF7B4673B5AFEC67C9D99B81E5654D27AF", + "created_at": "2026-02-19T14:14:30Z", + "updated_at": "2026-02-19T14:14:30Z" + }, + { + "id": "2026_02_19_family_home_en_zh_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_en_zh_A1.json", + "language_ids": [ + 1, + 2 + ], + "category": "Family & Home", + "item_count": 77, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 24036, + "checksum_sha256": "086E4FDC795D8CE263DE13D91FBFC80FC3535BF373DBF42805D9555F168EAEFD", + "created_at": "2026-02-19T14:15:48Z", + "updated_at": "2026-02-19T14:15:48Z" + }, + { + "id": "2026_02_19_family_home_es_de_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_es_de_A1.json", + "language_ids": [ + 3, + 15 + ], + "category": "Family & Home", + "item_count": 70, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 21993, + "checksum_sha256": "F0A342CD1A7D6EDF1EBB9CF874C1C61FDB8BCFE9F3ADA75848AAAAAD80EB640E", + "created_at": "2026-02-19T14:16:51Z", + "updated_at": "2026-02-19T14:16:51Z" + }, + { + "id": "2026_02_19_family_home_es_fr_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_es_fr_A1.json", + "language_ids": [ + 3, + 14 + ], + "category": "Family & Home", + "item_count": 73, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22438, + "checksum_sha256": "538105A80F09BE29AFBC2DD4673706399133E8A4AB6500F212147C4CD163FD91", + "created_at": "2026-02-19T14:17:05Z", + "updated_at": "2026-02-19T14:17:05Z" + }, + { + "id": "2026_02_19_family_home_es_it_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_es_it_A1.json", + "language_ids": [ + 3, + 20 + ], + "category": "Family & Home", + "item_count": 71, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 21760, + "checksum_sha256": "F3BC67A0DA3DFD61072112EA980B4B88B8401EB8960974C2A57E3E737691633E", + "created_at": "2026-02-19T14:17:19Z", + "updated_at": "2026-02-19T14:17:19Z" + }, + { + "id": "2026_02_19_family_home_es_ja_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_es_ja_A1.json", + "language_ids": [ + 3, + 21 + ], + "category": "Family & Home", + "item_count": 70, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22676, + "checksum_sha256": "BBC1E18A11CC8B715F670F773D82A7640BB01F822352F0D22FAD3E4C11C0364E", + "created_at": "2026-02-19T14:17:41Z", + "updated_at": "2026-02-19T14:17:41Z" + }, + { + "id": "2026_02_19_family_home_es_ko_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_es_ko_A1.json", + "language_ids": [ + 3, + 13 + ], + "category": "Family & Home", + "item_count": 71, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22548, + "checksum_sha256": "E7E6AF440551C15C7BB6060E8AE92829BD8D4732872597D36AF303280C3EF965", + "created_at": "2026-02-19T14:18:22Z", + "updated_at": "2026-02-19T14:18:22Z" + }, + { + "id": "2026_02_19_family_home_es_pl_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_es_pl_A1.json", + "language_ids": [ + 3, + 24 + ], + "category": "Family & Home", + "item_count": 74, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22731, + "checksum_sha256": "ADE17F718C7CD3DA9B6C5E8B95EAF8AAF0D92D1C3AA1FC0D7E5A9D4985A9AB58", + "created_at": "2026-02-19T14:18:38Z", + "updated_at": "2026-02-19T14:18:38Z" + }, + { + "id": "2026_02_19_family_home_es_pt_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_es_pt_A1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Family & Home", + "item_count": 73, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22319, + "checksum_sha256": "18C274FE84CD48C6069BB8407B711E0319B627E75C9A137F48655A21AB8E0341", + "created_at": "2026-02-19T14:16:36Z", + "updated_at": "2026-02-19T14:16:36Z" + }, + { + "id": "2026_02_19_family_home_es_zh_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_es_zh_A1.json", + "language_ids": [ + 3, + 2 + ], + "category": "Family & Home", + "item_count": 72, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22704, + "checksum_sha256": "7D8C6237CF3EC5008EFA0666C22F25D01E525F302FA5761FD027A1DD736074F2", + "created_at": "2026-02-19T14:18:01Z", + "updated_at": "2026-02-19T14:18:01Z" + }, + { + "id": "2026_02_19_family_home_fr_it_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_fr_it_A1.json", + "language_ids": [ + 14, + 20 + ], + "category": "Family & Home", + "item_count": 71, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 21932, + "checksum_sha256": "085E331FE45B2DD52C32707369CDEEEDCC5D88C7E8FE1B7E664AC5EB25E7D194", + "created_at": "2026-02-19T14:22:37Z", + "updated_at": "2026-02-19T14:22:37Z" + }, + { + "id": "2026_02_19_family_home_fr_ja_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_fr_ja_A1.json", + "language_ids": [ + 14, + 21 + ], + "category": "Family & Home", + "item_count": 78, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 25393, + "checksum_sha256": "9EE6970FBEB634D9D76B087042BA6C801A36BD862402C9348B93988AA4200810", + "created_at": "2026-02-19T14:23:01Z", + "updated_at": "2026-02-19T14:23:01Z" + }, + { + "id": "2026_02_19_family_home_fr_ko_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_fr_ko_A1.json", + "language_ids": [ + 14, + 13 + ], + "category": "Family & Home", + "item_count": 74, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 23494, + "checksum_sha256": "E35D49AF2552684D325821E8884223BF7AE289353F6C25DE28E2FD6AB184937C", + "created_at": "2026-02-19T14:23:40Z", + "updated_at": "2026-02-19T14:23:40Z" + }, + { + "id": "2026_02_19_family_home_fr_pl_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_fr_pl_A1.json", + "language_ids": [ + 14, + 24 + ], + "category": "Family & Home", + "item_count": 73, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22564, + "checksum_sha256": "D8385B627FD33550E0576BCFFDC2F8F0169003CCFD9B2F9CE1727B4C24D669EA", + "created_at": "2026-02-19T14:23:54Z", + "updated_at": "2026-02-19T14:23:54Z" + }, + { + "id": "2026_02_19_family_home_fr_zh_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_fr_zh_A1.json", + "language_ids": [ + 14, + 2 + ], + "category": "Family & Home", + "item_count": 71, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22441, + "checksum_sha256": "B582D5DB9AD7A34B38F2DDB0633286702CA0E7C62F432D7F1582F10FD030D6AF", + "created_at": "2026-02-19T14:23:20Z", + "updated_at": "2026-02-19T14:23:20Z" + }, + { + "id": "2026_02_19_family_home_it_ja_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_it_ja_A1.json", + "language_ids": [ + 20, + 21 + ], + "category": "Family & Home", + "item_count": 70, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22851, + "checksum_sha256": "18CF9F291C20A0A5D5472982ED7E1088C29725F3A2C00CDB9CC9836BC33098C2", + "created_at": "2026-02-19T14:24:17Z", + "updated_at": "2026-02-19T14:24:17Z" + }, + { + "id": "2026_02_19_family_home_it_ko_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_it_ko_A1.json", + "language_ids": [ + 20, + 13 + ], + "category": "Family & Home", + "item_count": 70, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22330, + "checksum_sha256": "FA0E06FED3C34C13E1885FC6D898C8205AB34FDEA03B76227AC91E133B5E1D84", + "created_at": "2026-02-19T14:24:55Z", + "updated_at": "2026-02-19T14:24:55Z" + }, + { + "id": "2026_02_19_family_home_it_pl_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_it_pl_A1.json", + "language_ids": [ + 20, + 24 + ], + "category": "Family & Home", + "item_count": 73, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22515, + "checksum_sha256": "E20ABEB747E0BF575803AF94F20A2954DB053C0845773F9828FA04898AAB8452", + "created_at": "2026-02-19T14:25:11Z", + "updated_at": "2026-02-19T14:25:11Z" + }, + { + "id": "2026_02_19_family_home_it_zh_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_it_zh_A1.json", + "language_ids": [ + 20, + 2 + ], + "category": "Family & Home", + "item_count": 70, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22145, + "checksum_sha256": "0DDFC978034F048F0CB9642671FFA42EFAC71E115DEBD7EBC4893760E90C2B14", + "created_at": "2026-02-19T14:24:35Z", + "updated_at": "2026-02-19T14:24:35Z" + }, + { + "id": "2026_02_19_family_home_ja_ko_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_ja_ko_A1.json", + "language_ids": [ + 21, + 13 + ], + "category": "Family & Home", + "item_count": 70, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 23790, + "checksum_sha256": "51AA319AC91A9CA4ED3C990675647652B1D110728ECF1C45F1F26E1B845D552C", + "created_at": "2026-02-19T14:26:10Z", + "updated_at": "2026-02-19T14:26:10Z" + }, + { + "id": "2026_02_19_family_home_ja_pl_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_ja_pl_A1.json", + "language_ids": [ + 21, + 24 + ], + "category": "Family & Home", + "item_count": 71, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 23372, + "checksum_sha256": "EC37FE52ECCDF8C2ED9C4DD1A956B450BC592B0E47F8C4796FE9770F849D147F", + "created_at": "2026-02-19T14:26:33Z", + "updated_at": "2026-02-19T14:26:33Z" + }, + { + "id": "2026_02_19_family_home_ja_zh_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_ja_zh_A1.json", + "language_ids": [ + 21, + 2 + ], + "category": "Family & Home", + "item_count": 71, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 24164, + "checksum_sha256": "686827C9A11C6D93FDDA10D161EFA9E1ABD78761954BA88F4F73A1D783F0E0EE", + "created_at": "2026-02-19T14:25:40Z", + "updated_at": "2026-02-19T14:25:40Z" + }, + { + "id": "2026_02_19_family_home_ko_pl_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_ko_pl_A1.json", + "language_ids": [ + 13, + 24 + ], + "category": "Family & Home", + "item_count": 75, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 23845, + "checksum_sha256": "1EF6066AB872EBE0DE3B36D8C204B3683112EDD2028A4AA6B5A092A55A48C624", + "created_at": "2026-02-19T14:27:38Z", + "updated_at": "2026-02-19T14:27:38Z" + }, + { + "id": "2026_02_19_family_home_pt_de_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_pt_de_A1.json", + "language_ids": [ + 7, + 15 + ], + "category": "Family & Home", + "item_count": 71, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 21795, + "checksum_sha256": "83E43BE8EEA2219D42CE47054641962DCADCA815C5882BB69B462852BA185030", + "created_at": "2026-02-19T14:18:52Z", + "updated_at": "2026-02-19T14:18:52Z" + }, + { + "id": "2026_02_19_family_home_pt_fr_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_pt_fr_A1.json", + "language_ids": [ + 7, + 14 + ], + "category": "Family & Home", + "item_count": 73, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22524, + "checksum_sha256": "12D67F3D1ABAA53A12C0D8403A05152788C1B3EED0B5AE6190F415F28BACD3A6", + "created_at": "2026-02-19T14:19:06Z", + "updated_at": "2026-02-19T14:19:06Z" + }, + { + "id": "2026_02_19_family_home_pt_it_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_pt_it_A1.json", + "language_ids": [ + 7, + 20 + ], + "category": "Family & Home", + "item_count": 72, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22125, + "checksum_sha256": "13924F7229460EE0B32860990F91673FDF144DDA0F829E68E041D528E1085864", + "created_at": "2026-02-19T14:19:21Z", + "updated_at": "2026-02-19T14:19:21Z" + }, + { + "id": "2026_02_19_family_home_pt_ja_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_pt_ja_A1.json", + "language_ids": [ + 7, + 21 + ], + "category": "Family & Home", + "item_count": 74, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 23914, + "checksum_sha256": "63E240BAA186AD145DCA8397D19E892C0C4090AB5FCCD1C06942AFDB5B6FD1A7", + "created_at": "2026-02-19T14:19:44Z", + "updated_at": "2026-02-19T14:19:44Z" + }, + { + "id": "2026_02_19_family_home_pt_ko_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_pt_ko_A1.json", + "language_ids": [ + 7, + 13 + ], + "category": "Family & Home", + "item_count": 72, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22819, + "checksum_sha256": "D3498888A95143C71186D6A834B470D9A9C27F83D578034805EAF71988FE59F5", + "created_at": "2026-02-19T14:20:24Z", + "updated_at": "2026-02-19T14:20:24Z" + }, + { + "id": "2026_02_19_family_home_pt_pl_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_pt_pl_A1.json", + "language_ids": [ + 7, + 24 + ], + "category": "Family & Home", + "item_count": 73, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22466, + "checksum_sha256": "E90B2A346061DE5B4CF2F0E8863085F467B27DCDF79FFAC5E26CC1098B34D30F", + "created_at": "2026-02-19T14:20:39Z", + "updated_at": "2026-02-19T14:20:39Z" + }, + { + "id": "2026_02_19_family_home_pt_zh_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_pt_zh_A1.json", + "language_ids": [ + 7, + 2 + ], + "category": "Family & Home", + "item_count": 73, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22907, + "checksum_sha256": "00AED3F5E62BECC9109A8AEA65F3F5DFD3DE5515988DA9C4558074E779423F50", + "created_at": "2026-02-19T14:20:03Z", + "updated_at": "2026-02-19T14:20:03Z" + }, + { + "id": "2026_02_19_family_home_zh_ko_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_zh_ko_A1.json", + "language_ids": [ + 2, + 13 + ], + "category": "Family & Home", + "item_count": 84, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 27166, + "checksum_sha256": "AD0363E6BE34C0C55F664BBDCCB18BC79AB20930336ABB09F1F5998542F06A7C", + "created_at": "2026-02-19T14:27:00Z", + "updated_at": "2026-02-19T14:27:00Z" + }, + { + "id": "2026_02_19_family_home_zh_pl_A1", + "name": "Family & Home", + "description": "Vocabulary about family members, the home, rooms, and everyday household life.", + "filename": "2026_02_19_family_home_zh_pl_A1.json", + "language_ids": [ + 2, + 24 + ], + "category": "Family & Home", + "item_count": 70, + "level": "A1", + "emoji": "🏠", + "version": 1, + "size_bytes": 22101, + "checksum_sha256": "A8CEFFEA4FD83AC2C864AB6E4F49337434BAB9266E6892DD5D53A6187F7709F6", + "created_at": "2026-02-19T14:27:18Z", + "updated_at": "2026-02-19T14:27:18Z" + }, + { + "id": "2026_02_19_food_cooking_de_fr_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_de_fr_A2.json", + "language_ids": [ + 15, + 14 + ], + "category": "Food & Cooking", + "item_count": 85, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26620, + "checksum_sha256": "ED3CDE0C5FA82817ACA82FEA60FB802BC2FB01E80859A54430D080CB67A7970D", + "created_at": "2026-02-19T13:52:35Z", + "updated_at": "2026-02-19T13:52:35Z" + }, + { + "id": "2026_02_19_food_cooking_de_it_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_de_it_A2.json", + "language_ids": [ + 15, + 20 + ], + "category": "Food & Cooking", + "item_count": 85, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26056, + "checksum_sha256": "15859C8FA78F643A8093BCC38855740C0111BA4A6586CE720D3142FB1BAF3464", + "created_at": "2026-02-19T13:52:50Z", + "updated_at": "2026-02-19T13:52:50Z" + }, + { + "id": "2026_02_19_food_cooking_de_ja_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_de_ja_A2.json", + "language_ids": [ + 15, + 21 + ], + "category": "Food & Cooking", + "item_count": 83, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27631, + "checksum_sha256": "A002EA4208854E35B4642F1DE70FA2E325C97429C96D73754DF6619DC8053484", + "created_at": "2026-02-19T13:53:20Z", + "updated_at": "2026-02-19T13:53:20Z" + }, + { + "id": "2026_02_19_food_cooking_de_ko_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_de_ko_A2.json", + "language_ids": [ + 15, + 13 + ], + "category": "Food & Cooking", + "item_count": 88, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27874, + "checksum_sha256": "29BE6655F82003B9562623F54798DBAC991CF6BE8B69C3DED114E004469CD257", + "created_at": "2026-02-19T13:54:06Z", + "updated_at": "2026-02-19T13:54:06Z" + }, + { + "id": "2026_02_19_food_cooking_de_pl_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_de_pl_A2.json", + "language_ids": [ + 15, + 24 + ], + "category": "Food & Cooking", + "item_count": 87, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26723, + "checksum_sha256": "16DCED272DF6C83CE5D948A674FD466C4A9B2E1799338E7BABEDFADE8C047BBB", + "created_at": "2026-02-19T13:54:23Z", + "updated_at": "2026-02-19T13:54:23Z" + }, + { + "id": "2026_02_19_food_cooking_de_zh_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_de_zh_A2.json", + "language_ids": [ + 15, + 2 + ], + "category": "Food & Cooking", + "item_count": 85, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26803, + "checksum_sha256": "B4ECE1EA6C21AD9BF67052BC786F3A73079843B9C247E55D17542BEFBA4F4A3F", + "created_at": "2026-02-19T13:53:41Z", + "updated_at": "2026-02-19T13:53:41Z" + }, + { + "id": "2026_02_19_food_cooking_en_de_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_en_de_A2.json", + "language_ids": [ + 1, + 15 + ], + "category": "Food & Cooking", + "item_count": 85, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 25956, + "checksum_sha256": "7BFD3A03EC1C2FA1E48FE468564FC9BF4D0F13D367DEA208CB344A55854583D1", + "created_at": "2026-02-19T13:35:08Z", + "updated_at": "2026-02-19T13:35:08Z" + }, + { + "id": "2026_02_19_food_cooking_en_es_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_en_es_A2.json", + "language_ids": [ + 1, + 3 + ], + "category": "Food & Cooking", + "item_count": 87, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26422, + "checksum_sha256": "960A22B53EC704EACF6931AA53EF13C06FCF9E0930BC30E8A59C0122D786505A", + "created_at": "2026-02-19T13:34:36Z", + "updated_at": "2026-02-19T13:34:36Z" + }, + { + "id": "2026_02_19_food_cooking_en_fr_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_en_fr_A2.json", + "language_ids": [ + 1, + 14 + ], + "category": "Food & Cooking", + "item_count": 87, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26562, + "checksum_sha256": "C26760E385222982F57D53060284D27C7747A6E6D6F73D903DEFAA011F794C96", + "created_at": "2026-02-19T13:35:23Z", + "updated_at": "2026-02-19T13:35:23Z" + }, + { + "id": "2026_02_19_food_cooking_en_it_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_en_it_A2.json", + "language_ids": [ + 1, + 20 + ], + "category": "Food & Cooking", + "item_count": 87, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26559, + "checksum_sha256": "3E7FE6A60503661600736EF4B25FBEFCD60A26C78101E7AD0FA460C7A5538222", + "created_at": "2026-02-19T13:35:39Z", + "updated_at": "2026-02-19T13:35:39Z" + }, + { + "id": "2026_02_19_food_cooking_en_ja_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_en_ja_A2.json", + "language_ids": [ + 1, + 21 + ], + "category": "Food & Cooking", + "item_count": 87, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 28766, + "checksum_sha256": "706E57CB08381036B16164438F715726C1C8381D795C3FA2DB032CDCAF5ABDD0", + "created_at": "2026-02-19T13:36:09Z", + "updated_at": "2026-02-19T13:36:09Z" + }, + { + "id": "2026_02_19_food_cooking_en_ko_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_en_ko_A2.json", + "language_ids": [ + 1, + 13 + ], + "category": "Food & Cooking", + "item_count": 87, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27567, + "checksum_sha256": "875A4D18F466F5B2AA5BDE15A5D3446442D7567CC0B93DED0FD6333F8A7F1068", + "created_at": "2026-02-19T13:36:55Z", + "updated_at": "2026-02-19T13:36:55Z" + }, + { + "id": "2026_02_19_food_cooking_en_pl_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_en_pl_A2.json", + "language_ids": [ + 1, + 24 + ], + "category": "Food & Cooking", + "item_count": 94, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 28675, + "checksum_sha256": "5AC242A84D7C4681C3A8B4509872C37A42EAAB1DFA4EDA8B793D5EE120E19A02", + "created_at": "2026-02-19T13:37:13Z", + "updated_at": "2026-02-19T13:37:13Z" + }, + { + "id": "2026_02_19_food_cooking_en_pt_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_en_pt_A2.json", + "language_ids": [ + 1, + 7 + ], + "category": "Food & Cooking", + "item_count": 88, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26784, + "checksum_sha256": "4F13575C9585E4E3E32CB87DA264FE8012451886AE1D6C9A76CB2F6549FBDED0", + "created_at": "2026-02-19T13:34:52Z", + "updated_at": "2026-02-19T13:34:52Z" + }, + { + "id": "2026_02_19_food_cooking_en_zh_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_en_zh_A2.json", + "language_ids": [ + 1, + 2 + ], + "category": "Food & Cooking", + "item_count": 87, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27341, + "checksum_sha256": "C21B414475AF7AD5CB1DA252D003F63BA21A10087F123853A4228DF21E1985DE", + "created_at": "2026-02-19T13:36:31Z", + "updated_at": "2026-02-19T13:36:31Z" + }, + { + "id": "2026_02_19_food_cooking_es_de_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_es_de_A2.json", + "language_ids": [ + 3, + 15 + ], + "category": "Food & Cooking", + "item_count": 84, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26161, + "checksum_sha256": "0812B2D78AD2D2ECBA6BF8D1396E03A7478400EE3888801329648DF1BA106A35", + "created_at": "2026-02-19T13:37:47Z", + "updated_at": "2026-02-19T13:37:47Z" + }, + { + "id": "2026_02_19_food_cooking_es_fr_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_es_fr_A2.json", + "language_ids": [ + 3, + 14 + ], + "category": "Food & Cooking", + "item_count": 87, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26622, + "checksum_sha256": "78A7F5DACE86A0C114420240677A668DC974E72A5B5131A8C4F8B7675C1E9E87", + "created_at": "2026-02-19T13:47:52Z", + "updated_at": "2026-02-19T13:47:52Z" + }, + { + "id": "2026_02_19_food_cooking_es_it_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_es_it_A2.json", + "language_ids": [ + 3, + 20 + ], + "category": "Food & Cooking", + "item_count": 88, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26937, + "checksum_sha256": "EE673C7FBF382DFF8C428003BB3DA6978BDAF432C336DDD8A4480A259D4CE66E", + "created_at": "2026-02-19T13:48:09Z", + "updated_at": "2026-02-19T13:48:09Z" + }, + { + "id": "2026_02_19_food_cooking_es_ja_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_es_ja_A2.json", + "language_ids": [ + 3, + 21 + ], + "category": "Food & Cooking", + "item_count": 87, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 28902, + "checksum_sha256": "8535911782EEF9F19C0156B072823CE3EEC1F80539DD2F446D997350365DD0A4", + "created_at": "2026-02-19T13:48:40Z", + "updated_at": "2026-02-19T13:48:40Z" + }, + { + "id": "2026_02_19_food_cooking_es_ko_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_es_ko_A2.json", + "language_ids": [ + 3, + 13 + ], + "category": "Food & Cooking", + "item_count": 91, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 28890, + "checksum_sha256": "98B0D1C551BBED91A21A4B0BD79C0151E48A2C34B2696C31E872EA13D373AFC3", + "created_at": "2026-02-19T13:49:31Z", + "updated_at": "2026-02-19T13:49:31Z" + }, + { + "id": "2026_02_19_food_cooking_es_pl_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_es_pl_A2.json", + "language_ids": [ + 3, + 24 + ], + "category": "Food & Cooking", + "item_count": 90, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27586, + "checksum_sha256": "8A236395A96F58BD2A0DCC2EDACB42C16F7AFF22AAA6D00805B26DB0E5CA0DF5", + "created_at": "2026-02-19T13:49:49Z", + "updated_at": "2026-02-19T13:49:49Z" + }, + { + "id": "2026_02_19_food_cooking_es_pt_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_es_pt_A2.json", + "language_ids": [ + 3, + 7 + ], + "category": "Food & Cooking", + "item_count": 86, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26198, + "checksum_sha256": "B98A645D9E37E11B5C59A372EA8B4177ED42D3E55CC4859C40FCCFB6FCB1D675", + "created_at": "2026-02-19T13:37:29Z", + "updated_at": "2026-02-19T13:37:29Z" + }, + { + "id": "2026_02_19_food_cooking_es_zh_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_es_zh_A2.json", + "language_ids": [ + 3, + 2 + ], + "category": "Food & Cooking", + "item_count": 86, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27108, + "checksum_sha256": "4958ABE4C61859F955FAC85ED3A6259920517332CE2CF46ED8B32AEBAADBDB0E", + "created_at": "2026-02-19T13:49:04Z", + "updated_at": "2026-02-19T13:49:04Z" + }, + { + "id": "2026_02_19_food_cooking_fr_it_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_fr_it_A2.json", + "language_ids": [ + 14, + 20 + ], + "category": "Food & Cooking", + "item_count": 90, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27618, + "checksum_sha256": "40C6A15F6E4ABC55F77F314C8D05F997879E53E06E703DA14FB33A6C48885D45", + "created_at": "2026-02-19T13:54:41Z", + "updated_at": "2026-02-19T13:54:41Z" + }, + { + "id": "2026_02_19_food_cooking_fr_ja_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_fr_ja_A2.json", + "language_ids": [ + 14, + 21 + ], + "category": "Food & Cooking", + "item_count": 86, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 28584, + "checksum_sha256": "A45C1A0E88D952354EE4985F3EDCA33DC2A819C79FCCBB111204D7EE27D0A9CE", + "created_at": "2026-02-19T13:55:11Z", + "updated_at": "2026-02-19T13:55:11Z" + }, + { + "id": "2026_02_19_food_cooking_fr_ko_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_fr_ko_A2.json", + "language_ids": [ + 14, + 13 + ], + "category": "Food & Cooking", + "item_count": 86, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27410, + "checksum_sha256": "EDABE9C0DAEF8927333F360B50CF1C4C8FB26F8104F8B1BE7D27D723A60906B5", + "created_at": "2026-02-19T13:55:57Z", + "updated_at": "2026-02-19T13:55:57Z" + }, + { + "id": "2026_02_19_food_cooking_fr_pl_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_fr_pl_A2.json", + "language_ids": [ + 14, + 24 + ], + "category": "Food & Cooking", + "item_count": 88, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27087, + "checksum_sha256": "6C4E2281638E9ADE70DB75CAD67B50516BA57AC887FFB2AA46F20039ED72C891", + "created_at": "2026-02-19T13:56:14Z", + "updated_at": "2026-02-19T13:56:14Z" + }, + { + "id": "2026_02_19_food_cooking_fr_zh_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_fr_zh_A2.json", + "language_ids": [ + 14, + 2 + ], + "category": "Food & Cooking", + "item_count": 84, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26516, + "checksum_sha256": "31A5D15FEC7086E733E960506C838482E31FED56A9E3B8BA04FA635AAE064FEA", + "created_at": "2026-02-19T13:55:32Z", + "updated_at": "2026-02-19T13:55:32Z" + }, + { + "id": "2026_02_19_food_cooking_it_ja_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_it_ja_A2.json", + "language_ids": [ + 20, + 21 + ], + "category": "Food & Cooking", + "item_count": 84, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27921, + "checksum_sha256": "65B1A3584128F8C9F08F15A7EAC99F23E13C107DCAA3E5F125196F76374C49FE", + "created_at": "2026-02-19T13:56:44Z", + "updated_at": "2026-02-19T13:56:44Z" + }, + { + "id": "2026_02_19_food_cooking_it_ko_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_it_ko_A2.json", + "language_ids": [ + 20, + 13 + ], + "category": "Food & Cooking", + "item_count": 85, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27017, + "checksum_sha256": "E679F7F30B27029C732ABFB2D83BB7FAAE944FB74D732AD4374F4767829C4697", + "created_at": "2026-02-19T13:57:33Z", + "updated_at": "2026-02-19T13:57:33Z" + }, + { + "id": "2026_02_19_food_cooking_it_pl_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_it_pl_A2.json", + "language_ids": [ + 20, + 24 + ], + "category": "Food & Cooking", + "item_count": 87, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26748, + "checksum_sha256": "5DB6519082E0B1518932FAF23168737E15C6AE8A177864F2817C2ABF659D7774", + "created_at": "2026-02-19T13:57:50Z", + "updated_at": "2026-02-19T13:57:50Z" + }, + { + "id": "2026_02_19_food_cooking_it_zh_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_it_zh_A2.json", + "language_ids": [ + 20, + 2 + ], + "category": "Food & Cooking", + "item_count": 86, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27286, + "checksum_sha256": "4489C36015981BA0243243C03262AE6E0313C544DFBDFC97AD953A9E5D308904", + "created_at": "2026-02-19T13:57:08Z", + "updated_at": "2026-02-19T13:57:08Z" + }, + { + "id": "2026_02_19_food_cooking_ja_ko_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_ja_ko_A2.json", + "language_ids": [ + 21, + 13 + ], + "category": "Food & Cooking", + "item_count": 82, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 28187, + "checksum_sha256": "39F254362E2A897D8D34A10FCEB47273F7650E245F90FE8B9C656D5B448761C9", + "created_at": "2026-02-19T13:59:01Z", + "updated_at": "2026-02-19T13:59:01Z" + }, + { + "id": "2026_02_19_food_cooking_ja_pl_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_ja_pl_A2.json", + "language_ids": [ + 21, + 24 + ], + "category": "Food & Cooking", + "item_count": 82, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27270, + "checksum_sha256": "812C7CFF242B50FD8B5450495F19FB1E315005CAE551E9DC12E514EE1E4C0A0B", + "created_at": "2026-02-19T13:59:30Z", + "updated_at": "2026-02-19T13:59:30Z" + }, + { + "id": "2026_02_19_food_cooking_ja_zh_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_ja_zh_A2.json", + "language_ids": [ + 21, + 2 + ], + "category": "Food & Cooking", + "item_count": 87, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 29529, + "checksum_sha256": "662EF662AA55F40A0A2B2F2A6C3F4CE626E7F7301F01ECE81968E93D1492FF8D", + "created_at": "2026-02-19T13:58:25Z", + "updated_at": "2026-02-19T13:58:25Z" + }, + { + "id": "2026_02_19_food_cooking_ko_pl_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_ko_pl_A2.json", + "language_ids": [ + 13, + 24 + ], + "category": "Food & Cooking", + "item_count": 87, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27706, + "checksum_sha256": "D973B8BD739B41A2EAAD7A02C3FF284B60960BA246EF371A94FA98CB88E64507", + "created_at": "2026-02-19T14:00:42Z", + "updated_at": "2026-02-19T14:00:42Z" + }, + { + "id": "2026_02_19_food_cooking_pt_de_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_pt_de_A2.json", + "language_ids": [ + 7, + 15 + ], + "category": "Food & Cooking", + "item_count": 86, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26338, + "checksum_sha256": "59668F65A40B70ED2753B308A4D55511CBB1099EC9F063E3C1030523C591D708", + "created_at": "2026-02-19T13:50:05Z", + "updated_at": "2026-02-19T13:50:05Z" + }, + { + "id": "2026_02_19_food_cooking_pt_fr_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_pt_fr_A2.json", + "language_ids": [ + 7, + 14 + ], + "category": "Food & Cooking", + "item_count": 90, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27577, + "checksum_sha256": "66668ED6383405F5563FBC3CE4F46EF26343CE705A8B6252A038DDE424AB4BAE", + "created_at": "2026-02-19T13:50:23Z", + "updated_at": "2026-02-19T13:50:23Z" + }, + { + "id": "2026_02_19_food_cooking_pt_it_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_pt_it_A2.json", + "language_ids": [ + 7, + 20 + ], + "category": "Food & Cooking", + "item_count": 89, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27278, + "checksum_sha256": "B8426B5E6F0CECC9F5A3FB77C0655C6A89BF8461123EA797137833EA31806485", + "created_at": "2026-02-19T13:50:40Z", + "updated_at": "2026-02-19T13:50:40Z" + }, + { + "id": "2026_02_19_food_cooking_pt_ja_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_pt_ja_A2.json", + "language_ids": [ + 7, + 21 + ], + "category": "Food & Cooking", + "item_count": 85, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 28101, + "checksum_sha256": "8691A31184770BC9E4FCEEE2891DB1A4D9480C23B3D83C83A93677A42C13DFA2", + "created_at": "2026-02-19T13:51:10Z", + "updated_at": "2026-02-19T13:51:10Z" + }, + { + "id": "2026_02_19_food_cooking_pt_ko_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_pt_ko_A2.json", + "language_ids": [ + 7, + 13 + ], + "category": "Food & Cooking", + "item_count": 85, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26915, + "checksum_sha256": "AC306817106C6BC7AD1274B9C7600CF2D509F62C6BAFF993E75B5BA75B4BF17B", + "created_at": "2026-02-19T13:51:59Z", + "updated_at": "2026-02-19T13:51:59Z" + }, + { + "id": "2026_02_19_food_cooking_pt_pl_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_pt_pl_A2.json", + "language_ids": [ + 7, + 24 + ], + "category": "Food & Cooking", + "item_count": 87, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26642, + "checksum_sha256": "B1A8E9FC147386AADF0B33960C84A3D2D9641BFB31D29FD50A81B9D3372FD000", + "created_at": "2026-02-19T13:52:16Z", + "updated_at": "2026-02-19T13:52:16Z" + }, + { + "id": "2026_02_19_food_cooking_pt_zh_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_pt_zh_A2.json", + "language_ids": [ + 7, + 2 + ], + "category": "Food & Cooking", + "item_count": 86, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 27100, + "checksum_sha256": "EF8E28DC13F376579EF2C998849A8A7B2AD12A351684EFAD2D0FE1F5E6E00CDD", + "created_at": "2026-02-19T13:51:34Z", + "updated_at": "2026-02-19T13:51:34Z" + }, + { + "id": "2026_02_19_food_cooking_zh_ko_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_zh_ko_A2.json", + "language_ids": [ + 2, + 13 + ], + "category": "Food & Cooking", + "item_count": 83, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26931, + "checksum_sha256": "81E15CE866E69917E169A827DDCB0F824A5EC6961EB21AADA21F21D76043EA12", + "created_at": "2026-02-19T13:59:57Z", + "updated_at": "2026-02-19T13:59:57Z" + }, + { + "id": "2026_02_19_food_cooking_zh_pl_A2", + "name": "Food & Cooking", + "description": "Vocabulary for food, ingredients, and cooking — from supermarket to restaurant.", + "filename": "2026_02_19_food_cooking_zh_pl_A2.json", + "language_ids": [ + 2, + 24 + ], + "category": "Food & Cooking", + "item_count": 85, + "level": "A2", + "emoji": "🍳", + "version": 1, + "size_bytes": 26739, + "checksum_sha256": "8960F2663FC0D97C01D2308A5479BCF1305B05D406F37BE1912D123DADCAE71C", + "created_at": "2026-02-19T14:00:18Z", + "updated_at": "2026-02-19T14:00:18Z" + }, + { + "id": "2026_02_19_greetings_introductions_de_fr_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_de_fr_A1.json", + "language_ids": [ + 15, + 14 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19217, + "checksum_sha256": "8B205E0F42A852103E7D0A2AB5A5FEB7395E8583D991CC2B8EB1E144D0F8B382", + "created_at": "2026-02-19T12:44:36Z", + "updated_at": "2026-02-19T12:44:36Z" + }, + { + "id": "2026_02_19_greetings_introductions_de_it_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_de_it_A1.json", + "language_ids": [ + 15, + 20 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19061, + "checksum_sha256": "0D4BD1284BFC03624B348FF20B3BB0D66EAE451C535EDF11887F36B6D95ECF6D", + "created_at": "2026-02-19T12:44:50Z", + "updated_at": "2026-02-19T12:44:50Z" + }, + { + "id": "2026_02_19_greetings_introductions_de_ja_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_de_ja_A1.json", + "language_ids": [ + 15, + 21 + ], + "category": "Greetings & Introductions", + "item_count": 59, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 20959, + "checksum_sha256": "43A2B45B556B06DA4E548D22314B36ABBCA2DFBA9C89D14127167B19A1A2933D", + "created_at": "2026-02-19T12:45:15Z", + "updated_at": "2026-02-19T12:45:15Z" + }, + { + "id": "2026_02_19_greetings_introductions_de_ko_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_de_ko_A1.json", + "language_ids": [ + 15, + 13 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19944, + "checksum_sha256": "7F6A691BFBE810353F6A90244E59A6A870F2F425CC6925A97525EB926B153DCC", + "created_at": "2026-02-19T12:45:54Z", + "updated_at": "2026-02-19T12:45:54Z" + }, + { + "id": "2026_02_19_greetings_introductions_de_pl_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_de_pl_A1.json", + "language_ids": [ + 15, + 24 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19013, + "checksum_sha256": "BC95D6FB7EE688D9465413907F2DCE84863CFE928100AD97241714C48EB929CB", + "created_at": "2026-02-19T12:46:09Z", + "updated_at": "2026-02-19T12:46:09Z" + }, + { + "id": "2026_02_19_greetings_introductions_de_zh_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_de_zh_A1.json", + "language_ids": [ + 15, + 2 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19584, + "checksum_sha256": "3F9C90131B04025AB185FFEEF14F7A389F094897A4F7002852E901E93AD11BD8", + "created_at": "2026-02-19T12:45:34Z", + "updated_at": "2026-02-19T12:45:34Z" + }, + { + "id": "2026_02_19_greetings_introductions_en_de_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_en_de_A1.json", + "language_ids": [ + 1, + 15 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 18765, + "checksum_sha256": "93AB3B1FEAB2AFF83DA5B76510397C51441C1D9BC09256E497E914838D9F16D3", + "created_at": "2026-02-19T12:38:17Z", + "updated_at": "2026-02-19T12:38:17Z" + }, + { + "id": "2026_02_19_greetings_introductions_en_es_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_en_es_A1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 18655, + "checksum_sha256": "227F1E06105BC04DC32018CF935211020914B2CF255E7236B61EF69347932742", + "created_at": "2026-02-19T12:37:52Z", + "updated_at": "2026-02-19T12:37:52Z" + }, + { + "id": "2026_02_19_greetings_introductions_en_fr_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_en_fr_A1.json", + "language_ids": [ + 1, + 14 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19319, + "checksum_sha256": "224D36584947C6EC80F0791E6FB89D57CEC07B5D690AC77FA4B958B1073D5D75", + "created_at": "2026-02-19T12:38:32Z", + "updated_at": "2026-02-19T12:38:32Z" + }, + { + "id": "2026_02_19_greetings_introductions_en_it_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_en_it_A1.json", + "language_ids": [ + 1, + 20 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 18655, + "checksum_sha256": "9B05CD23F103D8A49D7088D208C6134A053B62A941636A854FD2AA2E48584DB4", + "created_at": "2026-02-19T12:38:43Z", + "updated_at": "2026-02-19T12:38:43Z" + }, + { + "id": "2026_02_19_greetings_introductions_en_ja_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_en_ja_A1.json", + "language_ids": [ + 1, + 21 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 21072, + "checksum_sha256": "30F03C0F038085C0AAF2E427A6DC38303255F04D2FD8AD5EFD1DB2F978F72467", + "created_at": "2026-02-19T12:39:07Z", + "updated_at": "2026-02-19T12:39:07Z" + }, + { + "id": "2026_02_19_greetings_introductions_en_ko_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_en_ko_A1.json", + "language_ids": [ + 1, + 13 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19991, + "checksum_sha256": "D89166764FB78E45EE89B52DDD7D68A9308BB0CC56D2F04250727A7E1041F8EA", + "created_at": "2026-02-19T12:39:46Z", + "updated_at": "2026-02-19T12:39:46Z" + }, + { + "id": "2026_02_19_greetings_introductions_en_pl_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_en_pl_A1.json", + "language_ids": [ + 1, + 24 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 18936, + "checksum_sha256": "D6194DBE0F987E680A2D7D1977593ADF94B2CEDAB59B1D0EF2735DA93F60274E", + "created_at": "2026-02-19T12:39:59Z", + "updated_at": "2026-02-19T12:39:59Z" + }, + { + "id": "2026_02_19_greetings_introductions_en_pt_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_en_pt_A1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 18709, + "checksum_sha256": "68CFAE901B711EAEA63AE396F872B3E6A6906572135FEDA71CA0337CDAB54D9A", + "created_at": "2026-02-19T12:38:05Z", + "updated_at": "2026-02-19T12:38:05Z" + }, + { + "id": "2026_02_19_greetings_introductions_en_zh_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_en_zh_A1.json", + "language_ids": [ + 1, + 2 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19451, + "checksum_sha256": "571E7AF4E5390D2558C1B86D19BBE54804A2D9C9651C92D7DEB97E4F0541E283", + "created_at": "2026-02-19T12:39:24Z", + "updated_at": "2026-02-19T12:39:24Z" + }, + { + "id": "2026_02_19_greetings_introductions_es_de_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_es_de_A1.json", + "language_ids": [ + 3, + 15 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 18909, + "checksum_sha256": "54B7353C23B17E0E355BD30D635963514EF0A2B14DBF8D94212991E51A4F81E0", + "created_at": "2026-02-19T12:40:27Z", + "updated_at": "2026-02-19T12:40:27Z" + }, + { + "id": "2026_02_19_greetings_introductions_es_fr_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_es_fr_A1.json", + "language_ids": [ + 3, + 14 + ], + "category": "Greetings & Introductions", + "item_count": 66, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 20588, + "checksum_sha256": "A0C4405D7CCCC54B56BD01DD305E52833A4062050C3544507ABDBF76079EC752", + "created_at": "2026-02-19T12:40:41Z", + "updated_at": "2026-02-19T12:40:41Z" + }, + { + "id": "2026_02_19_greetings_introductions_es_it_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_es_it_A1.json", + "language_ids": [ + 3, + 20 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 18704, + "checksum_sha256": "C345B83E3EB9DA09E17E4D891D5BE4D9B6AC528256AD91251D2093A97C0F355C", + "created_at": "2026-02-19T12:40:53Z", + "updated_at": "2026-02-19T12:40:53Z" + }, + { + "id": "2026_02_19_greetings_introductions_es_ja_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_es_ja_A1.json", + "language_ids": [ + 3, + 21 + ], + "category": "Greetings & Introductions", + "item_count": 61, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 21616, + "checksum_sha256": "BD3C7FB56E1045A75D8CF87310FAD0DCD97A69D29045BA10D46EEC47CB077EE4", + "created_at": "2026-02-19T12:41:19Z", + "updated_at": "2026-02-19T12:41:19Z" + }, + { + "id": "2026_02_19_greetings_introductions_es_ko_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_es_ko_A1.json", + "language_ids": [ + 3, + 13 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 20201, + "checksum_sha256": "DB239DAD1262DE1E6478D41F83C482B2FD0B59D58212524F1F15A2D8B8F45378", + "created_at": "2026-02-19T12:42:01Z", + "updated_at": "2026-02-19T12:42:01Z" + }, + { + "id": "2026_02_19_greetings_introductions_es_pl_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_es_pl_A1.json", + "language_ids": [ + 3, + 24 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19075, + "checksum_sha256": "52587C36C5515B7E030CBC9EE5E9F16713783AAC69F5824A5842E44A3A55166D", + "created_at": "2026-02-19T12:42:17Z", + "updated_at": "2026-02-19T12:42:17Z" + }, + { + "id": "2026_02_19_greetings_introductions_es_pt_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_es_pt_A1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 18840, + "checksum_sha256": "98F00CE8EAD385BA7DB1B11DA25F97F6AE5F20BFB96E4698E1648BD62B721BDA", + "created_at": "2026-02-19T12:40:13Z", + "updated_at": "2026-02-19T12:40:13Z" + }, + { + "id": "2026_02_19_greetings_introductions_es_zh_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_es_zh_A1.json", + "language_ids": [ + 3, + 2 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19638, + "checksum_sha256": "B8F52FCBF1FB3BD2932C4F9771BAA8FB4F3D38C6B3B4918B8E31611EE0D02C36", + "created_at": "2026-02-19T12:41:38Z", + "updated_at": "2026-02-19T12:41:38Z" + }, + { + "id": "2026_02_19_greetings_introductions_fr_it_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_fr_it_A1.json", + "language_ids": [ + 14, + 20 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 18914, + "checksum_sha256": "6A4999A4A78025DF6832A04BBEFB269EA96720FC15C6DC74F30137DA3FC3ED3C", + "created_at": "2026-02-19T12:46:22Z", + "updated_at": "2026-02-19T12:46:22Z" + }, + { + "id": "2026_02_19_greetings_introductions_fr_ja_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_fr_ja_A1.json", + "language_ids": [ + 14, + 21 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 21987, + "checksum_sha256": "0B966B9FA723201DDF1672DD398FDB210D3EFE3EB901B577D54F73255A349669", + "created_at": "2026-02-19T12:46:51Z", + "updated_at": "2026-02-19T12:46:51Z" + }, + { + "id": "2026_02_19_greetings_introductions_fr_ko_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_fr_ko_A1.json", + "language_ids": [ + 14, + 13 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 20072, + "checksum_sha256": "844FC49B2A38559BC3A5BF9BFAE13978274A89870B1E53BCB5976FF815C91EB0", + "created_at": "2026-02-19T12:47:32Z", + "updated_at": "2026-02-19T12:47:32Z" + }, + { + "id": "2026_02_19_greetings_introductions_fr_pl_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_fr_pl_A1.json", + "language_ids": [ + 14, + 24 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19174, + "checksum_sha256": "6166F53109C60C7990185C273AB9ED5EA84DA3375AF810A4EAC17E24D228F6E2", + "created_at": "2026-02-19T12:47:48Z", + "updated_at": "2026-02-19T12:47:48Z" + }, + { + "id": "2026_02_19_greetings_introductions_fr_zh_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_fr_zh_A1.json", + "language_ids": [ + 14, + 2 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19667, + "checksum_sha256": "84020455335FDAF6B9D1E0692756BE97C917C111633023113872428DE55E6E46", + "created_at": "2026-02-19T12:47:10Z", + "updated_at": "2026-02-19T12:47:10Z" + }, + { + "id": "2026_02_19_greetings_introductions_it_ja_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_it_ja_A1.json", + "language_ids": [ + 20, + 21 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 21882, + "checksum_sha256": "6DC3F832379E572E4717C45434747EC4F1679FF8D1F1DD66DA0C4B0C00BD02B5", + "created_at": "2026-02-19T12:48:17Z", + "updated_at": "2026-02-19T12:48:17Z" + }, + { + "id": "2026_02_19_greetings_introductions_it_ko_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_it_ko_A1.json", + "language_ids": [ + 20, + 13 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19972, + "checksum_sha256": "D5B916682B1B4299F6359677924B39CB970CF195C9D149619EA908A807DC892E", + "created_at": "2026-02-19T12:49:01Z", + "updated_at": "2026-02-19T12:49:01Z" + }, + { + "id": "2026_02_19_greetings_introductions_it_pl_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_it_pl_A1.json", + "language_ids": [ + 20, + 24 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19114, + "checksum_sha256": "C91DADE5BC13E435088807DDCC8167AFFFE8F700D0217DE0A978C6ED14A3BBD3", + "created_at": "2026-02-19T12:49:16Z", + "updated_at": "2026-02-19T12:49:16Z" + }, + { + "id": "2026_02_19_greetings_introductions_it_zh_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_it_zh_A1.json", + "language_ids": [ + 20, + 2 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 20339, + "checksum_sha256": "0D870BB338E58F3070098C0DB87EC641FF20882CBB28730C2063261EC441B3BF", + "created_at": "2026-02-19T12:48:40Z", + "updated_at": "2026-02-19T12:48:40Z" + }, + { + "id": "2026_02_19_greetings_introductions_ja_ko_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_ja_ko_A1.json", + "language_ids": [ + 21, + 13 + ], + "category": "Greetings & Introductions", + "item_count": 59, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 22449, + "checksum_sha256": "CE3E3D3FE6BCFAEEE156AF4B235ED60F975F4AC7E5233E89D53B315C5AE3DAC1", + "created_at": "2026-02-19T12:50:22Z", + "updated_at": "2026-02-19T12:50:22Z" + }, + { + "id": "2026_02_19_greetings_introductions_ja_pl_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_ja_pl_A1.json", + "language_ids": [ + 21, + 24 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 21089, + "checksum_sha256": "04C415B1E173717AAEF6B3D2C901AFAE872C4E3757FB9DA9E9889D622D385A19", + "created_at": "2026-02-19T12:51:13Z", + "updated_at": "2026-02-19T12:51:13Z" + }, + { + "id": "2026_02_19_greetings_introductions_ja_zh_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_ja_zh_A1.json", + "language_ids": [ + 21, + 2 + ], + "category": "Greetings & Introductions", + "item_count": 59, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 21735, + "checksum_sha256": "4EAE411036340B7DE44CA87B61DD8E1DB5A23B5215B4093E8468F4CF5755F845", + "created_at": "2026-02-19T12:49:46Z", + "updated_at": "2026-02-19T12:49:46Z" + }, + { + "id": "2026_02_19_greetings_introductions_ko_pl_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_ko_pl_A1.json", + "language_ids": [ + 13, + 24 + ], + "category": "Greetings & Introductions", + "item_count": 61, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 21355, + "checksum_sha256": "DCFC7C34CB8A209BCED141486E9B50E1A7E130D16417C35436EE684149CA910C", + "created_at": "2026-02-19T12:52:24Z", + "updated_at": "2026-02-19T12:52:24Z" + }, + { + "id": "2026_02_19_greetings_introductions_pt_de_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_pt_de_A1.json", + "language_ids": [ + 7, + 15 + ], + "category": "Greetings & Introductions", + "item_count": 59, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 18611, + "checksum_sha256": "E7583DA222B01C74D9EB4895659A461E2819E3B4A0E4189B4C1B5E2FD26F551C", + "created_at": "2026-02-19T12:42:30Z", + "updated_at": "2026-02-19T12:42:30Z" + }, + { + "id": "2026_02_19_greetings_introductions_pt_fr_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_pt_fr_A1.json", + "language_ids": [ + 7, + 14 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19167, + "checksum_sha256": "C5FB8E7E4A5CC09C6AB3B67713752B47941DE4C72AE47CC32D990FA28B812EB2", + "created_at": "2026-02-19T12:42:45Z", + "updated_at": "2026-02-19T12:42:45Z" + }, + { + "id": "2026_02_19_greetings_introductions_pt_it_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_pt_it_A1.json", + "language_ids": [ + 7, + 20 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 18748, + "checksum_sha256": "421D51B42B00747E9906B89AC9FA53A1AD4B11C1B5A2971AA39442FA2987EA77", + "created_at": "2026-02-19T12:42:58Z", + "updated_at": "2026-02-19T12:42:58Z" + }, + { + "id": "2026_02_19_greetings_introductions_pt_ja_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_pt_ja_A1.json", + "language_ids": [ + 7, + 21 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 21363, + "checksum_sha256": "FEFBF91A9C3192CF26193C417DA03AF5CB9D28797656F6374AC8A5B2B3F53ADE", + "created_at": "2026-02-19T12:43:24Z", + "updated_at": "2026-02-19T12:43:24Z" + }, + { + "id": "2026_02_19_greetings_introductions_pt_ko_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_pt_ko_A1.json", + "language_ids": [ + 7, + 13 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 20130, + "checksum_sha256": "01371AB180BF3333C7B22F21CB6823280014A36EE916CA70073AC93C53B91931", + "created_at": "2026-02-19T12:44:07Z", + "updated_at": "2026-02-19T12:44:07Z" + }, + { + "id": "2026_02_19_greetings_introductions_pt_pl_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_pt_pl_A1.json", + "language_ids": [ + 7, + 24 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19099, + "checksum_sha256": "D9966752312EC4723C7D46DCC582B062DA0A3AF933C33CBED3C1F52829C2225C", + "created_at": "2026-02-19T12:44:23Z", + "updated_at": "2026-02-19T12:44:23Z" + }, + { + "id": "2026_02_19_greetings_introductions_pt_zh_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_pt_zh_A1.json", + "language_ids": [ + 7, + 2 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19804, + "checksum_sha256": "039D46FCA4A3F2647B0DC1657ACDA2DFAB90F209F1DC24D71367C51A2FE9EB79", + "created_at": "2026-02-19T12:43:45Z", + "updated_at": "2026-02-19T12:43:45Z" + }, + { + "id": "2026_02_19_greetings_introductions_zh_ko_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_zh_ko_A1.json", + "language_ids": [ + 2, + 13 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 20238, + "checksum_sha256": "0EE7A01C311212E6298A4CB438CCF7E810B3219E93B96B355633CD98B63FBBF2", + "created_at": "2026-02-19T12:51:36Z", + "updated_at": "2026-02-19T12:51:36Z" + }, + { + "id": "2026_02_19_greetings_introductions_zh_pl_A1", + "name": "Greetings & Introductions", + "description": "Essential phrases and vocabulary for greetings, farewells, and introducing yourself — the very first words every language learner needs.", + "filename": "2026_02_19_greetings_introductions_zh_pl_A1.json", + "language_ids": [ + 2, + 24 + ], + "category": "Greetings & Introductions", + "item_count": 60, + "level": "A1", + "emoji": "👋", + "version": 1, + "size_bytes": 19550, + "checksum_sha256": "74777382CC7E12E56023EE20C71C0F12806485EA326B348254E57D82E23356C9", + "created_at": "2026-02-19T12:51:55Z", + "updated_at": "2026-02-19T12:51:55Z" + }, + { + "id": "2026_02_19_home_furniture_rooms_de_fr_A1", + "name": "Home Furniture & Rooms", + "description": "Vocabulary for rooms of the house, furniture, appliances, and home décor.", + "filename": "2026_02_19_home_furniture_rooms_de_fr_A1.json", + "language_ids": [ + 15, + 14 + ], + "category": "Home Furniture & Rooms", + "item_count": 60, + "level": "A1", + "emoji": "🛋️", + "version": 1, + "size_bytes": 19027, + "checksum_sha256": "04B841A213114B45A8431F00DAE771BB0BF9E21B9972521B4905A36DFAE05634", + "created_at": "2026-02-19T15:46:02Z", + "updated_at": "2026-02-19T15:46:02Z" + }, + { + "id": "2026_02_19_home_furniture_rooms_de_it_A1", + "name": "Home Furniture & Rooms", + "description": "Vocabulary for rooms of the house, furniture, appliances, and home décor.", + "filename": "2026_02_19_home_furniture_rooms_de_it_A1.json", + "language_ids": [ + 15, + 20 + ], + "category": "Home Furniture & Rooms", + "item_count": 60, + "level": "A1", + "emoji": "🛋️", + "version": 1, + "size_bytes": 19048, + "checksum_sha256": "8F7BDFEB9597574C0CF14103E7DAF8F8C12A144A5A50E6CAA894BF8A8BB06963", + "created_at": "2026-02-19T15:46:16Z", + "updated_at": "2026-02-19T15:46:16Z" + }, + { + "id": "2026_02_19_home_furniture_rooms_en_de_A1", + "name": "Home Furniture & Rooms", + "description": "Vocabulary for rooms of the house, furniture, appliances, and home décor.", + "filename": "2026_02_19_home_furniture_rooms_en_de_A1.json", + "language_ids": [ + 1, + 15 + ], + "category": "Home Furniture & Rooms", + "item_count": 60, + "level": "A1", + "emoji": "🛋️", + "version": 1, + "size_bytes": 18478, + "checksum_sha256": "EB1C4037A925DAFAF19EF2310C9A94B532B56EB7D6B1714A2692DD6E3D73D5D4", + "created_at": "2026-02-19T15:43:55Z", + "updated_at": "2026-02-19T15:43:55Z" + }, + { + "id": "2026_02_19_home_furniture_rooms_en_es_A1", + "name": "Home Furniture & Rooms", + "description": "Vocabulary for rooms of the house, furniture, appliances, and home décor.", + "filename": "2026_02_19_home_furniture_rooms_en_es_A1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Home Furniture & Rooms", + "item_count": 60, + "level": "A1", + "emoji": "🛋️", + "version": 1, + "size_bytes": 18395, + "checksum_sha256": "024804047B9F2B61E84A9F3D6DDA41E0351943694EF760E71E2C76C21C57E938", + "created_at": "2026-02-19T15:43:31Z", + "updated_at": "2026-02-19T15:43:31Z" + }, + { + "id": "2026_02_19_home_furniture_rooms_en_fr_A1", + "name": "Home Furniture & Rooms", + "description": "Vocabulary for rooms of the house, furniture, appliances, and home décor.", + "filename": "2026_02_19_home_furniture_rooms_en_fr_A1.json", + "language_ids": [ + 1, + 14 + ], + "category": "Home Furniture & Rooms", + "item_count": 59, + "level": "A1", + "emoji": "🛋️", + "version": 1, + "size_bytes": 18199, + "checksum_sha256": "FB60D5376303ED2B88E0C8D4FFD3FD0C9B6504E61ED4F119E92959319D4E18ED", + "created_at": "2026-02-19T15:44:06Z", + "updated_at": "2026-02-19T15:44:06Z" + }, + { + "id": "2026_02_19_home_furniture_rooms_en_it_A1", + "name": "Home Furniture & Rooms", + "description": "Vocabulary for rooms of the house, furniture, appliances, and home décor.", + "filename": "2026_02_19_home_furniture_rooms_en_it_A1.json", + "language_ids": [ + 1, + 20 + ], + "category": "Home Furniture & Rooms", + "item_count": 60, + "level": "A1", + "emoji": "🛋️", + "version": 1, + "size_bytes": 18535, + "checksum_sha256": "30E3AC7C13691E35017AB1020CF2C8DD6AD0E1BAFDEB5AF94465ECA4C5F42131", + "created_at": "2026-02-19T15:44:18Z", + "updated_at": "2026-02-19T15:44:18Z" + }, + { + "id": "2026_02_19_home_furniture_rooms_en_pt_A1", + "name": "Home Furniture & Rooms", + "description": "Vocabulary for rooms of the house, furniture, appliances, and home décor.", + "filename": "2026_02_19_home_furniture_rooms_en_pt_A1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Home Furniture & Rooms", + "item_count": 61, + "level": "A1", + "emoji": "🛋️", + "version": 1, + "size_bytes": 18847, + "checksum_sha256": "CFC09DA9B7BB098B84BCE7030B98DFECF686B4EF82DC61460FC8DA49581C3F21", + "created_at": "2026-02-19T15:43:43Z", + "updated_at": "2026-02-19T15:43:43Z" + }, + { + "id": "2026_02_19_home_furniture_rooms_es_de_A1", + "name": "Home Furniture & Rooms", + "description": "Vocabulary for rooms of the house, furniture, appliances, and home décor.", + "filename": "2026_02_19_home_furniture_rooms_es_de_A1.json", + "language_ids": [ + 3, + 15 + ], + "category": "Home Furniture & Rooms", + "item_count": 60, + "level": "A1", + "emoji": "🛋️", + "version": 1, + "size_bytes": 19002, + "checksum_sha256": "DBCD52F8FC0F9EEAA7311C056A818A4495C0CC7A552AE4521D883C823F55AD6A", + "created_at": "2026-02-19T15:44:44Z", + "updated_at": "2026-02-19T15:44:44Z" + }, + { + "id": "2026_02_19_home_furniture_rooms_es_fr_A1", + "name": "Home Furniture & Rooms", + "description": "Vocabulary for rooms of the house, furniture, appliances, and home décor.", + "filename": "2026_02_19_home_furniture_rooms_es_fr_A1.json", + "language_ids": [ + 3, + 14 + ], + "category": "Home Furniture & Rooms", + "item_count": 59, + "level": "A1", + "emoji": "🛋️", + "version": 1, + "size_bytes": 18711, + "checksum_sha256": "35C0748E6D9F25C025BCB14C480A9D0BE5D56AD82A46C3D15CFC5336E09237C7", + "created_at": "2026-02-19T15:44:58Z", + "updated_at": "2026-02-19T15:44:58Z" + }, + { + "id": "2026_02_19_home_furniture_rooms_es_it_A1", + "name": "Home Furniture & Rooms", + "description": "Vocabulary for rooms of the house, furniture, appliances, and home décor.", + "filename": "2026_02_19_home_furniture_rooms_es_it_A1.json", + "language_ids": [ + 3, + 20 + ], + "category": "Home Furniture & Rooms", + "item_count": 60, + "level": "A1", + "emoji": "🛋️", + "version": 1, + "size_bytes": 18612, + "checksum_sha256": "6543F587D1AE291D4127AD14C85401D95CDC72E072629CEFA05B243EFB174E5E", + "created_at": "2026-02-19T15:45:10Z", + "updated_at": "2026-02-19T15:45:10Z" + }, + { + "id": "2026_02_19_home_furniture_rooms_es_pt_A1", + "name": "Home Furniture & Rooms", + "description": "Vocabulary for rooms of the house, furniture, appliances, and home décor.", + "filename": "2026_02_19_home_furniture_rooms_es_pt_A1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Home Furniture & Rooms", + "item_count": 59, + "level": "A1", + "emoji": "🛋️", + "version": 1, + "size_bytes": 18271, + "checksum_sha256": "09E637C7919A4A3B21C33A3A14AE9F541255355109332230082B236D23D4F673", + "created_at": "2026-02-19T15:44:30Z", + "updated_at": "2026-02-19T15:44:30Z" + }, + { + "id": "2026_02_19_home_furniture_rooms_fr_it_A1", + "name": "Home Furniture & Rooms", + "description": "Vocabulary for rooms of the house, furniture, appliances, and home décor.", + "filename": "2026_02_19_home_furniture_rooms_fr_it_A1.json", + "language_ids": [ + 14, + 20 + ], + "category": "Home Furniture & Rooms", + "item_count": 60, + "level": "A1", + "emoji": "🛋️", + "version": 1, + "size_bytes": 19011, + "checksum_sha256": "D295B239D78FCF96593E259DE9A6C10805251220C85EF9D3E666849076AC9112", + "created_at": "2026-02-19T15:46:29Z", + "updated_at": "2026-02-19T15:46:29Z" + }, + { + "id": "2026_02_19_home_furniture_rooms_pt_de_A1", + "name": "Home Furniture & Rooms", + "description": "Vocabulary for rooms of the house, furniture, appliances, and home décor.", + "filename": "2026_02_19_home_furniture_rooms_pt_de_A1.json", + "language_ids": [ + 7, + 15 + ], + "category": "Home Furniture & Rooms", + "item_count": 60, + "level": "A1", + "emoji": "🛋️", + "version": 1, + "size_bytes": 18679, + "checksum_sha256": "57B815F46FF166982A66FC0C290FBF0DC9471CD214F577AE9141257B1B8DF0CC", + "created_at": "2026-02-19T15:45:24Z", + "updated_at": "2026-02-19T15:45:24Z" + }, + { + "id": "2026_02_19_home_furniture_rooms_pt_fr_A1", + "name": "Home Furniture & Rooms", + "description": "Vocabulary for rooms of the house, furniture, appliances, and home décor.", + "filename": "2026_02_19_home_furniture_rooms_pt_fr_A1.json", + "language_ids": [ + 7, + 14 + ], + "category": "Home Furniture & Rooms", + "item_count": 60, + "level": "A1", + "emoji": "🛋️", + "version": 1, + "size_bytes": 18661, + "checksum_sha256": "C7CE8020A88DFE618EF834694AD1BC48B036B89C032C9D04AEFDEC5A91ABAFA2", + "created_at": "2026-02-19T15:45:36Z", + "updated_at": "2026-02-19T15:45:36Z" + }, + { + "id": "2026_02_19_home_furniture_rooms_pt_it_A1", + "name": "Home Furniture & Rooms", + "description": "Vocabulary for rooms of the house, furniture, appliances, and home décor.", + "filename": "2026_02_19_home_furniture_rooms_pt_it_A1.json", + "language_ids": [ + 7, + 20 + ], + "category": "Home Furniture & Rooms", + "item_count": 60, + "level": "A1", + "emoji": "🛋️", + "version": 1, + "size_bytes": 18642, + "checksum_sha256": "D2F03A63971F6FFCA6F2A541300E3F085840C5E1B62EBD03623510C901AF2BC0", + "created_at": "2026-02-19T15:45:48Z", + "updated_at": "2026-02-19T15:45:48Z" + }, + { + "id": "2026_02_19_law_justice_en_es_B2", + "name": "Law & Justice", + "description": "Legal vocabulary for courts, crimes, rights, and the justice system.", + "filename": "2026_02_19_law_justice_en_es_B2.json", + "language_ids": [ + 1, + 3 + ], + "category": "Law & Justice", + "item_count": 76, + "level": "B2", + "emoji": "⚖️", + "version": 1, + "size_bytes": 23739, + "checksum_sha256": "97D8C93F96858B6EA2468F5A373CA5B28C11AA07E412B509B67C4146CA26F946", + "created_at": "2026-02-19T16:13:45Z", + "updated_at": "2026-02-19T16:13:45Z" + }, + { + "id": "2026_02_19_law_justice_en_pt_B2", + "name": "Law & Justice", + "description": "Legal vocabulary for courts, crimes, rights, and the justice system.", + "filename": "2026_02_19_law_justice_en_pt_B2.json", + "language_ids": [ + 1, + 7 + ], + "category": "Law & Justice", + "item_count": 75, + "level": "B2", + "emoji": "⚖️", + "version": 1, + "size_bytes": 23204, + "checksum_sha256": "F34E35DB590B0427601B615451C91517D1F939013247D90925679375B218FDF8", + "created_at": "2026-02-19T16:13:59Z", + "updated_at": "2026-02-19T16:13:59Z" + }, + { + "id": "2026_02_19_law_justice_es_pt_B2", + "name": "Law & Justice", + "description": "Legal vocabulary for courts, crimes, rights, and the justice system.", + "filename": "2026_02_19_law_justice_es_pt_B2.json", + "language_ids": [ + 3, + 7 + ], + "category": "Law & Justice", + "item_count": 70, + "level": "B2", + "emoji": "⚖️", + "version": 1, + "size_bytes": 21732, + "checksum_sha256": "4CD8AB69254715D4981E67EFBA4537C7B4075A49E62863D051211E7F0FDE05D5", + "created_at": "2026-02-19T16:14:13Z", + "updated_at": "2026-02-19T16:14:13Z" + }, + { + "id": "2026_02_19_medical_terms_de_fr_B1", + "name": "Medical Terms", + "description": "Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies.", + "filename": "2026_02_19_medical_terms_de_fr_B1.json", + "language_ids": [ + 15, + 14 + ], + "category": "Medical Terms", + "item_count": 72, + "level": "B1", + "emoji": "🏥", + "version": 1, + "size_bytes": 22519, + "checksum_sha256": "C1278F5AE48B848278A4E33053CD2E68564F8412036D11D667BAFB02F2BAD5DF", + "created_at": "2026-02-19T15:21:55Z", + "updated_at": "2026-02-19T15:21:55Z" + }, + { + "id": "2026_02_19_medical_terms_de_it_B1", + "name": "Medical Terms", + "description": "Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies.", + "filename": "2026_02_19_medical_terms_de_it_B1.json", + "language_ids": [ + 15, + 20 + ], + "category": "Medical Terms", + "item_count": 77, + "level": "B1", + "emoji": "🏥", + "version": 1, + "size_bytes": 23890, + "checksum_sha256": "35ED73F4D8C447E0B72D1CE9FED95CF74F7FC7A5BBD5033CB40F04B1BD4EB76B", + "created_at": "2026-02-19T15:22:11Z", + "updated_at": "2026-02-19T15:22:11Z" + }, + { + "id": "2026_02_19_medical_terms_en_de_B1", + "name": "Medical Terms", + "description": "Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies.", + "filename": "2026_02_19_medical_terms_en_de_B1.json", + "language_ids": [ + 1, + 15 + ], + "category": "Medical Terms", + "item_count": 72, + "level": "B1", + "emoji": "🏥", + "version": 1, + "size_bytes": 22118, + "checksum_sha256": "ADB803EB79908159120256A3F133D2224FBF7C22A9A355ACD4DAB8078085AF66", + "created_at": "2026-02-19T15:19:23Z", + "updated_at": "2026-02-19T15:19:23Z" + }, + { + "id": "2026_02_19_medical_terms_en_es_B1", + "name": "Medical Terms", + "description": "Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies.", + "filename": "2026_02_19_medical_terms_en_es_B1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Medical Terms", + "item_count": 76, + "level": "B1", + "emoji": "🏥", + "version": 1, + "size_bytes": 23295, + "checksum_sha256": "79CDC3DDAF8AFCBC7F9283846D8AD81DB08C4CF708F88D6A854D9C8A4F855B58", + "created_at": "2026-02-19T15:18:56Z", + "updated_at": "2026-02-19T15:18:56Z" + }, + { + "id": "2026_02_19_medical_terms_en_fr_B1", + "name": "Medical Terms", + "description": "Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies.", + "filename": "2026_02_19_medical_terms_en_fr_B1.json", + "language_ids": [ + 1, + 14 + ], + "category": "Medical Terms", + "item_count": 71, + "level": "B1", + "emoji": "🏥", + "version": 1, + "size_bytes": 21929, + "checksum_sha256": "2DBFE8C714EC2662637CF2D7361DB99D1A80F55F1D4D66630C96E0ED7D513BC4", + "created_at": "2026-02-19T15:19:36Z", + "updated_at": "2026-02-19T15:19:36Z" + }, + { + "id": "2026_02_19_medical_terms_en_it_B1", + "name": "Medical Terms", + "description": "Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies.", + "filename": "2026_02_19_medical_terms_en_it_B1.json", + "language_ids": [ + 1, + 20 + ], + "category": "Medical Terms", + "item_count": 70, + "level": "B1", + "emoji": "🏥", + "version": 1, + "size_bytes": 21589, + "checksum_sha256": "64F232EA95F1312764197F73C092D9883B1ECE5C7D4C9FD64A2AE5D4C6E6E560", + "created_at": "2026-02-19T15:19:50Z", + "updated_at": "2026-02-19T15:19:50Z" + }, + { + "id": "2026_02_19_medical_terms_en_pt_B1", + "name": "Medical Terms", + "description": "Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies.", + "filename": "2026_02_19_medical_terms_en_pt_B1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Medical Terms", + "item_count": 72, + "level": "B1", + "emoji": "🏥", + "version": 1, + "size_bytes": 22220, + "checksum_sha256": "31B45B5E1C452B13B2D45CDFC6EC80BC229ED53F3160469915B7A5C96DA06D12", + "created_at": "2026-02-19T15:19:10Z", + "updated_at": "2026-02-19T15:19:10Z" + }, + { + "id": "2026_02_19_medical_terms_es_de_B1", + "name": "Medical Terms", + "description": "Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies.", + "filename": "2026_02_19_medical_terms_es_de_B1.json", + "language_ids": [ + 3, + 15 + ], + "category": "Medical Terms", + "item_count": 71, + "level": "B1", + "emoji": "🏥", + "version": 1, + "size_bytes": 22497, + "checksum_sha256": "BAE7796F3F25113BBE9A1BC2A6F0A5EA47595A752307B9D068F8F176D43F94F3", + "created_at": "2026-02-19T15:20:23Z", + "updated_at": "2026-02-19T15:20:23Z" + }, + { + "id": "2026_02_19_medical_terms_es_fr_B1", + "name": "Medical Terms", + "description": "Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies.", + "filename": "2026_02_19_medical_terms_es_fr_B1.json", + "language_ids": [ + 3, + 14 + ], + "category": "Medical Terms", + "item_count": 72, + "level": "B1", + "emoji": "🏥", + "version": 1, + "size_bytes": 22348, + "checksum_sha256": "9D5B6CE4421AE3BCA53CCEF2BF9FE7C040FBBA51C53750897329141C0709C4DE", + "created_at": "2026-02-19T15:20:38Z", + "updated_at": "2026-02-19T15:20:38Z" + }, + { + "id": "2026_02_19_medical_terms_es_it_B1", + "name": "Medical Terms", + "description": "Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies.", + "filename": "2026_02_19_medical_terms_es_it_B1.json", + "language_ids": [ + 3, + 20 + ], + "category": "Medical Terms", + "item_count": 71, + "level": "B1", + "emoji": "🏥", + "version": 1, + "size_bytes": 22032, + "checksum_sha256": "6A4CCC6B94416D97168799DAC964477E2BA141BC851FAC88B78B130ACC1F95A1", + "created_at": "2026-02-19T15:20:53Z", + "updated_at": "2026-02-19T15:20:53Z" + }, + { + "id": "2026_02_19_medical_terms_es_pt_B1", + "name": "Medical Terms", + "description": "Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies.", + "filename": "2026_02_19_medical_terms_es_pt_B1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Medical Terms", + "item_count": 81, + "level": "B1", + "emoji": "🏥", + "version": 1, + "size_bytes": 24971, + "checksum_sha256": "DE7F9DE12961578D3FF4718C199F0A24F61D6A3AD8FDD925C6EE83B72021A944", + "created_at": "2026-02-19T15:20:07Z", + "updated_at": "2026-02-19T15:20:07Z" + }, + { + "id": "2026_02_19_medical_terms_fr_it_B1", + "name": "Medical Terms", + "description": "Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies.", + "filename": "2026_02_19_medical_terms_fr_it_B1.json", + "language_ids": [ + 14, + 20 + ], + "category": "Medical Terms", + "item_count": 74, + "level": "B1", + "emoji": "🏥", + "version": 1, + "size_bytes": 23406, + "checksum_sha256": "D4692F60B4B0354BBA73623CB57119AB6A43651A7E9E04FF1641FF0A498F87CB", + "created_at": "2026-02-19T15:22:29Z", + "updated_at": "2026-02-19T15:22:29Z" + }, + { + "id": "2026_02_19_medical_terms_pt_de_B1", + "name": "Medical Terms", + "description": "Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies.", + "filename": "2026_02_19_medical_terms_pt_de_B1.json", + "language_ids": [ + 7, + 15 + ], + "category": "Medical Terms", + "item_count": 77, + "level": "B1", + "emoji": "🏥", + "version": 1, + "size_bytes": 23880, + "checksum_sha256": "8FFBC231F277CE395412D0F9124BC660FC28EF2D4D960B8F09D5C375F44FBD50", + "created_at": "2026-02-19T15:21:10Z", + "updated_at": "2026-02-19T15:21:10Z" + }, + { + "id": "2026_02_19_medical_terms_pt_fr_B1", + "name": "Medical Terms", + "description": "Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies.", + "filename": "2026_02_19_medical_terms_pt_fr_B1.json", + "language_ids": [ + 7, + 14 + ], + "category": "Medical Terms", + "item_count": 71, + "level": "B1", + "emoji": "🏥", + "version": 1, + "size_bytes": 22081, + "checksum_sha256": "4E861802B15AE453C7F72F432776109EBC7B235BE028F555C091578A87FA8A26", + "created_at": "2026-02-19T15:21:25Z", + "updated_at": "2026-02-19T15:21:25Z" + }, + { + "id": "2026_02_19_medical_terms_pt_it_B1", + "name": "Medical Terms", + "description": "Essential medical vocabulary for doctor visits, pharmacy, symptoms, and emergencies.", + "filename": "2026_02_19_medical_terms_pt_it_B1.json", + "language_ids": [ + 7, + 20 + ], + "category": "Medical Terms", + "item_count": 75, + "level": "B1", + "emoji": "🏥", + "version": 1, + "size_bytes": 23299, + "checksum_sha256": "B03FB46D9ECC29B9D3B62876863C5056F5EAF506332D4BC3C103F864A693F161", + "created_at": "2026-02-19T15:21:40Z", + "updated_at": "2026-02-19T15:21:40Z" + }, + { + "id": "2026_02_19_numbers_time_de_fr_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_de_fr_A1.json", + "language_ids": [ + 15, + 14 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18492, + "checksum_sha256": "A1B41FAE1837B7C8DA85F2350C3B7038720376846FAD33ECC5A41E3B82CA69D1", + "created_at": "2026-02-19T12:58:03Z", + "updated_at": "2026-02-19T12:58:03Z" + }, + { + "id": "2026_02_19_numbers_time_de_it_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_de_it_A1.json", + "language_ids": [ + 15, + 20 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18820, + "checksum_sha256": "0106E3D28D93A9A1441AD01389813554A92B8D9E0F87CA567D25AE7A0B1C1733", + "created_at": "2026-02-19T12:58:14Z", + "updated_at": "2026-02-19T12:58:14Z" + }, + { + "id": "2026_02_19_numbers_time_de_ja_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_de_ja_A1.json", + "language_ids": [ + 15, + 21 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19934, + "checksum_sha256": "7F12EC1C2E3F5247B6A626474E0A564943AE5D1F1BD97BC8BFDBB3A18A982B06", + "created_at": "2026-02-19T12:58:36Z", + "updated_at": "2026-02-19T12:58:36Z" + }, + { + "id": "2026_02_19_numbers_time_de_ko_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_de_ko_A1.json", + "language_ids": [ + 15, + 13 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19343, + "checksum_sha256": "EC0D8C2B02C2F1EA09DC908E4FFC01BE52B7EDE85245051BC8C7E3F0348B60DA", + "created_at": "2026-02-19T12:59:10Z", + "updated_at": "2026-02-19T12:59:10Z" + }, + { + "id": "2026_02_19_numbers_time_de_pl_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_de_pl_A1.json", + "language_ids": [ + 15, + 24 + ], + "category": "Numbers & Time", + "item_count": 66, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 20432, + "checksum_sha256": "3E5D89EBE0A04E69430C7BC8130E7681FEF1CD359ABAE48CED846A84316C1B63", + "created_at": "2026-02-19T12:59:24Z", + "updated_at": "2026-02-19T12:59:24Z" + }, + { + "id": "2026_02_19_numbers_time_de_zh_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_de_zh_A1.json", + "language_ids": [ + 15, + 2 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19397, + "checksum_sha256": "FA089FDE278CC6F5E0DD3186B07891FDF3398AB21531950C03098351350AB886", + "created_at": "2026-02-19T12:58:53Z", + "updated_at": "2026-02-19T12:58:53Z" + }, + { + "id": "2026_02_19_numbers_time_en_de_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_en_de_A1.json", + "language_ids": [ + 1, + 15 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18747, + "checksum_sha256": "A4F87DCF3153B6A7FF2B5D0175BA4C3764675BCAF062ABC1E8AD29147C28EE7A", + "created_at": "2026-02-19T12:52:54Z", + "updated_at": "2026-02-19T12:52:54Z" + }, + { + "id": "2026_02_19_numbers_time_en_es_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_en_es_A1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18672, + "checksum_sha256": "67195BD2F196B2E36024B9E99DA161B1EACDAC075AF0FC6C6F0D480F67AD9493", + "created_at": "2026-02-19T12:52:34Z", + "updated_at": "2026-02-19T12:52:34Z" + }, + { + "id": "2026_02_19_numbers_time_en_fr_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_en_fr_A1.json", + "language_ids": [ + 1, + 14 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18428, + "checksum_sha256": "EDF5DDAD298CF4B06E37905D938AA6D03DC51C8B911C0D8D6C89F0AA8554AB3B", + "created_at": "2026-02-19T12:53:04Z", + "updated_at": "2026-02-19T12:53:04Z" + }, + { + "id": "2026_02_19_numbers_time_en_it_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_en_it_A1.json", + "language_ids": [ + 1, + 20 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18753, + "checksum_sha256": "49CF6C291265C4336C1E231CD670587C40C4786CFA410FE96FDC8D1134584ADF", + "created_at": "2026-02-19T12:53:15Z", + "updated_at": "2026-02-19T12:53:15Z" + }, + { + "id": "2026_02_19_numbers_time_en_ja_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_en_ja_A1.json", + "language_ids": [ + 1, + 21 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19814, + "checksum_sha256": "09E3CB736345155A318208226326A9CD1D996EC70CE8A1B6AC7C13CDCD59915F", + "created_at": "2026-02-19T12:53:34Z", + "updated_at": "2026-02-19T12:53:34Z" + }, + { + "id": "2026_02_19_numbers_time_en_ko_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_en_ko_A1.json", + "language_ids": [ + 1, + 13 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18973, + "checksum_sha256": "40DB4102504556B298E13EEC87388D9B564A88F136F014A54042E160C8150A75", + "created_at": "2026-02-19T12:54:05Z", + "updated_at": "2026-02-19T12:54:05Z" + }, + { + "id": "2026_02_19_numbers_time_en_pl_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_en_pl_A1.json", + "language_ids": [ + 1, + 24 + ], + "category": "Numbers & Time", + "item_count": 62, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19143, + "checksum_sha256": "DAE9071C50920358D629047CDBA147592AEDFFB4B2CDE3AD9442221754C4CDB5", + "created_at": "2026-02-19T12:54:17Z", + "updated_at": "2026-02-19T12:54:17Z" + }, + { + "id": "2026_02_19_numbers_time_en_pt_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_en_pt_A1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18690, + "checksum_sha256": "C7EC6DA324DC594C4D9E4FA6FDDEEC6CB0C2DEC6928174ED066E593B450DBD84", + "created_at": "2026-02-19T12:52:44Z", + "updated_at": "2026-02-19T12:52:44Z" + }, + { + "id": "2026_02_19_numbers_time_en_zh_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_en_zh_A1.json", + "language_ids": [ + 1, + 2 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19327, + "checksum_sha256": "685E6AE62891DC8321C24440C37199E66067F519DF7230BF7EC5275E98C3C6B2", + "created_at": "2026-02-19T12:53:50Z", + "updated_at": "2026-02-19T12:53:50Z" + }, + { + "id": "2026_02_19_numbers_time_es_de_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_es_de_A1.json", + "language_ids": [ + 3, + 15 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18739, + "checksum_sha256": "062F2599A6BA9758CE3DF01E341A4C27C5656C3E450A1B69577E933CB929B980", + "created_at": "2026-02-19T12:54:40Z", + "updated_at": "2026-02-19T12:54:40Z" + }, + { + "id": "2026_02_19_numbers_time_es_fr_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_es_fr_A1.json", + "language_ids": [ + 3, + 14 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18731, + "checksum_sha256": "95C099CC1C88258FB8456264B8E06FE25077D16DFB6EFD893CE2118496E3A8A1", + "created_at": "2026-02-19T12:54:51Z", + "updated_at": "2026-02-19T12:54:51Z" + }, + { + "id": "2026_02_19_numbers_time_es_it_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_es_it_A1.json", + "language_ids": [ + 3, + 20 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18745, + "checksum_sha256": "4AB018A2FE90A91787145421F2BF3E36651D90A2024E5684ABE3D4280FD74A92", + "created_at": "2026-02-19T12:55:03Z", + "updated_at": "2026-02-19T12:55:03Z" + }, + { + "id": "2026_02_19_numbers_time_es_ja_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_es_ja_A1.json", + "language_ids": [ + 3, + 21 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19801, + "checksum_sha256": "053E4393B6826290163D828670B4D1446413D173B4CA0C457CF6B373349DC6F0", + "created_at": "2026-02-19T12:55:23Z", + "updated_at": "2026-02-19T12:55:23Z" + }, + { + "id": "2026_02_19_numbers_time_es_ko_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_es_ko_A1.json", + "language_ids": [ + 3, + 13 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18970, + "checksum_sha256": "B54EFC1A54D0253B395EBB5A43D3C7A235A441DB18ACA5FC0A8B92E6A4A97653", + "created_at": "2026-02-19T12:55:56Z", + "updated_at": "2026-02-19T12:55:56Z" + }, + { + "id": "2026_02_19_numbers_time_es_pl_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_es_pl_A1.json", + "language_ids": [ + 3, + 24 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18838, + "checksum_sha256": "F80096AFF5786ED8A776A730176621705F5D4C5B46D166CDE5B0CE4161EFF1E0", + "created_at": "2026-02-19T12:56:08Z", + "updated_at": "2026-02-19T12:56:08Z" + }, + { + "id": "2026_02_19_numbers_time_es_pt_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_es_pt_A1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18682, + "checksum_sha256": "914DC9D8B3885C0C6E7072F5C55E5A815BCDE8401527502EB2EAA084E2F4086D", + "created_at": "2026-02-19T12:54:28Z", + "updated_at": "2026-02-19T12:54:28Z" + }, + { + "id": "2026_02_19_numbers_time_es_zh_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_es_zh_A1.json", + "language_ids": [ + 3, + 2 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19301, + "checksum_sha256": "5CDCA76F2DC113D3D7F2AB8D2ABC5829CFA0DB00735520AB81DA5174EFB00A11", + "created_at": "2026-02-19T12:55:39Z", + "updated_at": "2026-02-19T12:55:39Z" + }, + { + "id": "2026_02_19_numbers_time_fr_it_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_fr_it_A1.json", + "language_ids": [ + 14, + 20 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18499, + "checksum_sha256": "87F89941996A9FC411EA1DB3F69F09A02906D75A55B9623A5AE57E909ADBCD96", + "created_at": "2026-02-19T12:59:34Z", + "updated_at": "2026-02-19T12:59:34Z" + }, + { + "id": "2026_02_19_numbers_time_fr_ja_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_fr_ja_A1.json", + "language_ids": [ + 14, + 21 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19844, + "checksum_sha256": "397100C16202EE6EF5A2737BDA69000F82FE7E18058A7B9E4A9D8A98B4CD925F", + "created_at": "2026-02-19T12:59:55Z", + "updated_at": "2026-02-19T12:59:55Z" + }, + { + "id": "2026_02_19_numbers_time_fr_ko_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_fr_ko_A1.json", + "language_ids": [ + 14, + 13 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19033, + "checksum_sha256": "EB3ABDA71CA9925F8C284AE251BD0BB4DC51EFEE9DA259090E02778C8DD2809A", + "created_at": "2026-02-19T13:00:28Z", + "updated_at": "2026-02-19T13:00:28Z" + }, + { + "id": "2026_02_19_numbers_time_fr_pl_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_fr_pl_A1.json", + "language_ids": [ + 14, + 24 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18589, + "checksum_sha256": "522BC8E8789BF8AAC9281B98A16CA6FBC3963DBEAD545407210CCB9C05A5418C", + "created_at": "2026-02-19T13:00:40Z", + "updated_at": "2026-02-19T13:00:40Z" + }, + { + "id": "2026_02_19_numbers_time_fr_zh_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_fr_zh_A1.json", + "language_ids": [ + 14, + 2 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19057, + "checksum_sha256": "2C0745A3B470CBF29451C703D56C0A04E4BEF29130A01F65A50A71D8275315B8", + "created_at": "2026-02-19T13:00:11Z", + "updated_at": "2026-02-19T13:00:11Z" + }, + { + "id": "2026_02_19_numbers_time_it_ja_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_it_ja_A1.json", + "language_ids": [ + 20, + 21 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19905, + "checksum_sha256": "15242702B514590611033DEE16014FDAC3279F4C0FF48A252C06FBB76FF70139", + "created_at": "2026-02-19T13:01:01Z", + "updated_at": "2026-02-19T13:01:01Z" + }, + { + "id": "2026_02_19_numbers_time_it_ko_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_it_ko_A1.json", + "language_ids": [ + 20, + 13 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19044, + "checksum_sha256": "40BAFF92011DA8CE4C598F2BA213807B9AF0CF532303551DFECF03D5FAC7911D", + "created_at": "2026-02-19T13:01:36Z", + "updated_at": "2026-02-19T13:01:36Z" + }, + { + "id": "2026_02_19_numbers_time_it_pl_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_it_pl_A1.json", + "language_ids": [ + 20, + 24 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18612, + "checksum_sha256": "502492B4794CF0DBDF04BA2304B8921200185D69B743C1FA36F4EC2148E3765F", + "created_at": "2026-02-19T13:01:48Z", + "updated_at": "2026-02-19T13:01:48Z" + }, + { + "id": "2026_02_19_numbers_time_it_zh_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_it_zh_A1.json", + "language_ids": [ + 20, + 2 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19395, + "checksum_sha256": "737BA928F67261AC4DC503C1B33B05D040E368F34F09F019C4767403189758A4", + "created_at": "2026-02-19T13:01:18Z", + "updated_at": "2026-02-19T13:01:18Z" + }, + { + "id": "2026_02_19_numbers_time_ja_ko_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_ja_ko_A1.json", + "language_ids": [ + 21, + 13 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 20319, + "checksum_sha256": "BD1DF410CF59A4C777CEC2B12156712479E0EA64518DEBE75C696D0E1E96B535", + "created_at": "2026-02-19T13:02:37Z", + "updated_at": "2026-02-19T13:02:37Z" + }, + { + "id": "2026_02_19_numbers_time_ja_pl_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_ja_pl_A1.json", + "language_ids": [ + 21, + 24 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19994, + "checksum_sha256": "0E533205A8496104CD48206902A8E906D2920357E946FD43976B4E65B1804939", + "created_at": "2026-02-19T13:02:57Z", + "updated_at": "2026-02-19T13:02:57Z" + }, + { + "id": "2026_02_19_numbers_time_ja_zh_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_ja_zh_A1.json", + "language_ids": [ + 21, + 2 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 20400, + "checksum_sha256": "604CFF137050AC2144B4627511C6D08553CF365C4B7DAB6B81C062F74166C327", + "created_at": "2026-02-19T13:02:12Z", + "updated_at": "2026-02-19T13:02:12Z" + }, + { + "id": "2026_02_19_numbers_time_ko_pl_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_ko_pl_A1.json", + "language_ids": [ + 13, + 24 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19480, + "checksum_sha256": "E1EEEEAECABD23E96358FAD71545EDEA59ACEE17FD403D8B41942FE3301355DC", + "created_at": "2026-02-19T13:03:52Z", + "updated_at": "2026-02-19T13:03:52Z" + }, + { + "id": "2026_02_19_numbers_time_pt_de_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_pt_de_A1.json", + "language_ids": [ + 7, + 15 + ], + "category": "Numbers & Time", + "item_count": 66, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 20261, + "checksum_sha256": "41D74B565729402B5FDD9AB9AAE1B34A947841143899511380DA7BFB4C0E0395", + "created_at": "2026-02-19T12:56:20Z", + "updated_at": "2026-02-19T12:56:20Z" + }, + { + "id": "2026_02_19_numbers_time_pt_fr_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_pt_fr_A1.json", + "language_ids": [ + 7, + 14 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18749, + "checksum_sha256": "A0EEE8387FF9D4BAC21EDAEA9590DD186B78F1F9C6C598D318F256538EFFF3CC", + "created_at": "2026-02-19T12:56:31Z", + "updated_at": "2026-02-19T12:56:31Z" + }, + { + "id": "2026_02_19_numbers_time_pt_it_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_pt_it_A1.json", + "language_ids": [ + 7, + 20 + ], + "category": "Numbers & Time", + "item_count": 66, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 20265, + "checksum_sha256": "AF536A558DE960B869C19EF20232C808DC11920C6C5387A0638A9D427CCFA68E", + "created_at": "2026-02-19T12:56:44Z", + "updated_at": "2026-02-19T12:56:44Z" + }, + { + "id": "2026_02_19_numbers_time_pt_ja_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_pt_ja_A1.json", + "language_ids": [ + 7, + 21 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19830, + "checksum_sha256": "C921998FBAA85B3A5DB5E3AC3E23B227BAA63DB6595B8B1BA23F9194D5D2826D", + "created_at": "2026-02-19T12:57:04Z", + "updated_at": "2026-02-19T12:57:04Z" + }, + { + "id": "2026_02_19_numbers_time_pt_ko_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_pt_ko_A1.json", + "language_ids": [ + 7, + 13 + ], + "category": "Numbers & Time", + "item_count": 61, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19324, + "checksum_sha256": "56A7CEB3F8D35C43C19A59F9882C5F160B4AE797CD89CDB84A456556D72D9076", + "created_at": "2026-02-19T12:57:39Z", + "updated_at": "2026-02-19T12:57:39Z" + }, + { + "id": "2026_02_19_numbers_time_pt_pl_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_pt_pl_A1.json", + "language_ids": [ + 7, + 24 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 18556, + "checksum_sha256": "4C01302AD7AA49C51E29D28C6141E1E20F0C58F27DC40BD7DDF975DD51FDBE54", + "created_at": "2026-02-19T12:57:51Z", + "updated_at": "2026-02-19T12:57:51Z" + }, + { + "id": "2026_02_19_numbers_time_pt_zh_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_pt_zh_A1.json", + "language_ids": [ + 7, + 2 + ], + "category": "Numbers & Time", + "item_count": 66, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 20866, + "checksum_sha256": "B6442D6C77BCFA3D8497C139F330DEE83D73D6F66AFA69ECEB6D5C66D0F038BE", + "created_at": "2026-02-19T12:57:22Z", + "updated_at": "2026-02-19T12:57:22Z" + }, + { + "id": "2026_02_19_numbers_time_zh_ko_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_zh_ko_A1.json", + "language_ids": [ + 2, + 13 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19601, + "checksum_sha256": "9535C1BCF6ED7872166748A4975D174586F0AFF1264A291D71703909F507FB70", + "created_at": "2026-02-19T13:03:18Z", + "updated_at": "2026-02-19T13:03:18Z" + }, + { + "id": "2026_02_19_numbers_time_zh_pl_A1", + "name": "Numbers & Time", + "description": "Numbers, days, months, seasons, and time expressions for everyday use.", + "filename": "2026_02_19_numbers_time_zh_pl_A1.json", + "language_ids": [ + 2, + 24 + ], + "category": "Numbers & Time", + "item_count": 60, + "level": "A1", + "emoji": "🕐", + "version": 1, + "size_bytes": 19175, + "checksum_sha256": "0DD0CA227167099126ADD9787AF3E03FCD6C980F668408030B9249D9136C1858", + "created_at": "2026-02-19T13:03:35Z", + "updated_at": "2026-02-19T13:03:35Z" + }, + { + "id": "2026_02_19_politics_government_en_es_B2", + "name": "Politics & Government", + "description": "Vocabulary for political systems, government institutions, democracy, and civic life.", + "filename": "2026_02_19_politics_government_en_es_B2.json", + "language_ids": [ + 1, + 3 + ], + "category": "Politics & Government", + "item_count": 77, + "level": "B2", + "emoji": "🏛️", + "version": 1, + "size_bytes": 23815, + "checksum_sha256": "E1071908FFC767BAAD67D8A0CAD0A32C131E4AD4908A4F14FBAD54A528205972", + "created_at": "2026-02-19T15:50:21Z", + "updated_at": "2026-02-19T15:50:21Z" + }, + { + "id": "2026_02_19_politics_government_en_pt_B2", + "name": "Politics & Government", + "description": "Vocabulary for political systems, government institutions, democracy, and civic life.", + "filename": "2026_02_19_politics_government_en_pt_B2.json", + "language_ids": [ + 1, + 7 + ], + "category": "Politics & Government", + "item_count": 76, + "level": "B2", + "emoji": "🏛️", + "version": 1, + "size_bytes": 23580, + "checksum_sha256": "7178F5C107EA1560094F5371149D496E8E63380FD2A8AF297C860DAC306B4B64", + "created_at": "2026-02-19T15:50:37Z", + "updated_at": "2026-02-19T15:50:37Z" + }, + { + "id": "2026_02_19_politics_government_es_pt_B2", + "name": "Politics & Government", + "description": "Vocabulary for political systems, government institutions, democracy, and civic life.", + "filename": "2026_02_19_politics_government_es_pt_B2.json", + "language_ids": [ + 3, + 7 + ], + "category": "Politics & Government", + "item_count": 76, + "level": "B2", + "emoji": "🏛️", + "version": 1, + "size_bytes": 23535, + "checksum_sha256": "C7BBA27A29CBE8D96AD22D86688EC707FBD259CB6ADADEA13B73177D7ABA7CAE", + "created_at": "2026-02-19T15:50:53Z", + "updated_at": "2026-02-19T15:50:53Z" + }, + { + "id": "2026_02_19_prepositions_connectors_en_es_B1", + "name": "Prepositions & Connectors", + "description": "Essential prepositions, conjunctions, and discourse connectors for building fluent sentences.", + "filename": "2026_02_19_prepositions_connectors_en_es_B1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Prepositions & Connectors", + "item_count": 60, + "level": "B1", + "emoji": "🔗", + "version": 1, + "size_bytes": 18335, + "checksum_sha256": "1C2358EBDCC235112C927CE8A547DF7B09D4FF41263E22BCC0A01010E2E474FE", + "created_at": "2026-02-19T15:47:23Z", + "updated_at": "2026-02-19T15:47:23Z" + }, + { + "id": "2026_02_19_prepositions_connectors_en_pt_B1", + "name": "Prepositions & Connectors", + "description": "Essential prepositions, conjunctions, and discourse connectors for building fluent sentences.", + "filename": "2026_02_19_prepositions_connectors_en_pt_B1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Prepositions & Connectors", + "item_count": 60, + "level": "B1", + "emoji": "🔗", + "version": 1, + "size_bytes": 18412, + "checksum_sha256": "414B8659A2A82DC1CBBA246A407FA2D6EB3BFAC912077E9DCE134F05A2C5432D", + "created_at": "2026-02-19T15:47:34Z", + "updated_at": "2026-02-19T15:47:34Z" + }, + { + "id": "2026_02_19_prepositions_connectors_es_pt_B1", + "name": "Prepositions & Connectors", + "description": "Essential prepositions, conjunctions, and discourse connectors for building fluent sentences.", + "filename": "2026_02_19_prepositions_connectors_es_pt_B1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Prepositions & Connectors", + "item_count": 62, + "level": "B1", + "emoji": "🔗", + "version": 1, + "size_bytes": 19130, + "checksum_sha256": "594C29DBACC742C17B859B4C3EAE1CA810780E6C9851B02651DF1A7E7081E303", + "created_at": "2026-02-19T15:47:46Z", + "updated_at": "2026-02-19T15:47:46Z" + }, + { + "id": "2026_02_19_science_technology_en_es_B2", + "name": "Science & Technology", + "description": "Vocabulary for scientific disciplines, research methods, and modern technology.", + "filename": "2026_02_19_science_technology_en_es_B2.json", + "language_ids": [ + 1, + 3 + ], + "category": "Science & Technology", + "item_count": 85, + "level": "B2", + "emoji": "🔬", + "version": 1, + "size_bytes": 26251, + "checksum_sha256": "F901B5EDDA1A96B487DC0B12EC638804D97F0EB9E3A8C404A2D48CE8D89F43D9", + "created_at": "2026-02-19T16:14:28Z", + "updated_at": "2026-02-19T16:14:28Z" + }, + { + "id": "2026_02_19_science_technology_en_pt_B2", + "name": "Science & Technology", + "description": "Vocabulary for scientific disciplines, research methods, and modern technology.", + "filename": "2026_02_19_science_technology_en_pt_B2.json", + "language_ids": [ + 1, + 7 + ], + "category": "Science & Technology", + "item_count": 86, + "level": "B2", + "emoji": "🔬", + "version": 1, + "size_bytes": 26560, + "checksum_sha256": "EFE468E1BEEA0BC83A7DFF5B6EA118759DAE6E49411457F1CC40AE2BEF985DE7", + "created_at": "2026-02-19T16:14:44Z", + "updated_at": "2026-02-19T16:14:44Z" + }, + { + "id": "2026_02_19_shopping_money_de_fr_A2", + "name": "Shopping & Money", + "description": "Vocabulary for shopping, prices, payments, and managing money.", + "filename": "2026_02_19_shopping_money_de_fr_A2.json", + "language_ids": [ + 15, + 14 + ], + "category": "Shopping & Money", + "item_count": 60, + "level": "A2", + "emoji": "🛒", + "version": 1, + "size_bytes": 19140, + "checksum_sha256": "59ED50BE34E8CB5583E5805D85FCB82F0A7D5CF9626AE23BFCBA05EB7D1534BB", + "created_at": "2026-02-19T15:42:57Z", + "updated_at": "2026-02-19T15:42:57Z" + }, + { + "id": "2026_02_19_shopping_money_de_it_A2", + "name": "Shopping & Money", + "description": "Vocabulary for shopping, prices, payments, and managing money.", + "filename": "2026_02_19_shopping_money_de_it_A2.json", + "language_ids": [ + 15, + 20 + ], + "category": "Shopping & Money", + "item_count": 60, + "level": "A2", + "emoji": "🛒", + "version": 1, + "size_bytes": 18553, + "checksum_sha256": "AFB2475005DCFCB73B5AFAB3514BA834E519D0DA2E7C50F9CB61F4546F40C77A", + "created_at": "2026-02-19T15:43:09Z", + "updated_at": "2026-02-19T15:43:09Z" + }, + { + "id": "2026_02_19_shopping_money_en_de_A2", + "name": "Shopping & Money", + "description": "Vocabulary for shopping, prices, payments, and managing money.", + "filename": "2026_02_19_shopping_money_en_de_A2.json", + "language_ids": [ + 1, + 15 + ], + "category": "Shopping & Money", + "item_count": 60, + "level": "A2", + "emoji": "🛒", + "version": 1, + "size_bytes": 18521, + "checksum_sha256": "E501E19B70E9324827656EE4CE42ECDA308CA59532F229DDF856A276ED797B44", + "created_at": "2026-02-19T15:40:57Z", + "updated_at": "2026-02-19T15:40:57Z" + }, + { + "id": "2026_02_19_shopping_money_en_es_A2", + "name": "Shopping & Money", + "description": "Vocabulary for shopping, prices, payments, and managing money.", + "filename": "2026_02_19_shopping_money_en_es_A2.json", + "language_ids": [ + 1, + 3 + ], + "category": "Shopping & Money", + "item_count": 60, + "level": "A2", + "emoji": "🛒", + "version": 1, + "size_bytes": 18399, + "checksum_sha256": "E6A1DBF730CAF8EAEE3985D7B2BA90449728386EDB453FA1D5F36581A70D3114", + "created_at": "2026-02-19T15:40:35Z", + "updated_at": "2026-02-19T15:40:35Z" + }, + { + "id": "2026_02_19_shopping_money_en_fr_A2", + "name": "Shopping & Money", + "description": "Vocabulary for shopping, prices, payments, and managing money.", + "filename": "2026_02_19_shopping_money_en_fr_A2.json", + "language_ids": [ + 1, + 14 + ], + "category": "Shopping & Money", + "item_count": 60, + "level": "A2", + "emoji": "🛒", + "version": 1, + "size_bytes": 18431, + "checksum_sha256": "4B0646B14ED33C2B09D4487E7A7BD18F78E50244FEB1FA722DEFDD7B9D6062A6", + "created_at": "2026-02-19T15:41:08Z", + "updated_at": "2026-02-19T15:41:08Z" + }, + { + "id": "2026_02_19_shopping_money_en_it_A2", + "name": "Shopping & Money", + "description": "Vocabulary for shopping, prices, payments, and managing money.", + "filename": "2026_02_19_shopping_money_en_it_A2.json", + "language_ids": [ + 1, + 20 + ], + "category": "Shopping & Money", + "item_count": 60, + "level": "A2", + "emoji": "🛒", + "version": 1, + "size_bytes": 18489, + "checksum_sha256": "C66DE1617C8355DAFA63C6B7F5E35A96DC746B5444C60CBF4FE91671070FA5E5", + "created_at": "2026-02-19T15:41:19Z", + "updated_at": "2026-02-19T15:41:19Z" + }, + { + "id": "2026_02_19_shopping_money_en_pt_A2", + "name": "Shopping & Money", + "description": "Vocabulary for shopping, prices, payments, and managing money.", + "filename": "2026_02_19_shopping_money_en_pt_A2.json", + "language_ids": [ + 1, + 7 + ], + "category": "Shopping & Money", + "item_count": 60, + "level": "A2", + "emoji": "🛒", + "version": 1, + "size_bytes": 18399, + "checksum_sha256": "72F31BE5A0EAE2DD690D35144665664EEE60DF890F7D8FB6B587D4237A9A95D2", + "created_at": "2026-02-19T15:40:46Z", + "updated_at": "2026-02-19T15:40:46Z" + }, + { + "id": "2026_02_19_shopping_money_es_de_A2", + "name": "Shopping & Money", + "description": "Vocabulary for shopping, prices, payments, and managing money.", + "filename": "2026_02_19_shopping_money_es_de_A2.json", + "language_ids": [ + 3, + 15 + ], + "category": "Shopping & Money", + "item_count": 60, + "level": "A2", + "emoji": "🛒", + "version": 1, + "size_bytes": 18613, + "checksum_sha256": "D71AA87DBAFC96506CF48696C0383BBA97E4E360D1620B0A6D827E18FF5BAFD2", + "created_at": "2026-02-19T15:41:43Z", + "updated_at": "2026-02-19T15:41:43Z" + }, + { + "id": "2026_02_19_shopping_money_es_fr_A2", + "name": "Shopping & Money", + "description": "Vocabulary for shopping, prices, payments, and managing money.", + "filename": "2026_02_19_shopping_money_es_fr_A2.json", + "language_ids": [ + 3, + 14 + ], + "category": "Shopping & Money", + "item_count": 60, + "level": "A2", + "emoji": "🛒", + "version": 1, + "size_bytes": 18597, + "checksum_sha256": "82FED3B62CD527895695B99BE619CABE56CA40E53AD0E1FB944D7B2999871914", + "created_at": "2026-02-19T15:41:55Z", + "updated_at": "2026-02-19T15:41:55Z" + }, + { + "id": "2026_02_19_shopping_money_es_it_A2", + "name": "Shopping & Money", + "description": "Vocabulary for shopping, prices, payments, and managing money.", + "filename": "2026_02_19_shopping_money_es_it_A2.json", + "language_ids": [ + 3, + 20 + ], + "category": "Shopping & Money", + "item_count": 60, + "level": "A2", + "emoji": "🛒", + "version": 1, + "size_bytes": 18624, + "checksum_sha256": "801EE05B3E2D60ED70DC9EB5F4AA4406562D22D152A785C2E68081D9330EBD06", + "created_at": "2026-02-19T15:42:07Z", + "updated_at": "2026-02-19T15:42:07Z" + }, + { + "id": "2026_02_19_shopping_money_es_pt_A2", + "name": "Shopping & Money", + "description": "Vocabulary for shopping, prices, payments, and managing money.", + "filename": "2026_02_19_shopping_money_es_pt_A2.json", + "language_ids": [ + 3, + 7 + ], + "category": "Shopping & Money", + "item_count": 60, + "level": "A2", + "emoji": "🛒", + "version": 1, + "size_bytes": 18481, + "checksum_sha256": "F979F4CD0D3DA8AA550F38647B9D1BE613D0000F1E425447B7041878BBF54209", + "created_at": "2026-02-19T15:41:30Z", + "updated_at": "2026-02-19T15:41:30Z" + }, + { + "id": "2026_02_19_shopping_money_fr_it_A2", + "name": "Shopping & Money", + "description": "Vocabulary for shopping, prices, payments, and managing money.", + "filename": "2026_02_19_shopping_money_fr_it_A2.json", + "language_ids": [ + 14, + 20 + ], + "category": "Shopping & Money", + "item_count": 60, + "level": "A2", + "emoji": "🛒", + "version": 1, + "size_bytes": 18646, + "checksum_sha256": "B436C2BC359F82E5486E567FCD844FF1A4D466BC429C80ED6BADA6FA4473898E", + "created_at": "2026-02-19T15:43:20Z", + "updated_at": "2026-02-19T15:43:20Z" + }, + { + "id": "2026_02_19_shopping_money_pt_de_A2", + "name": "Shopping & Money", + "description": "Vocabulary for shopping, prices, payments, and managing money.", + "filename": "2026_02_19_shopping_money_pt_de_A2.json", + "language_ids": [ + 7, + 15 + ], + "category": "Shopping & Money", + "item_count": 60, + "level": "A2", + "emoji": "🛒", + "version": 1, + "size_bytes": 18562, + "checksum_sha256": "EA586A09591941CB801EE2D9AB096F644FEB6680AAA0102B92E02432D5DB6422", + "created_at": "2026-02-19T15:42:19Z", + "updated_at": "2026-02-19T15:42:19Z" + }, + { + "id": "2026_02_19_shopping_money_pt_fr_A2", + "name": "Shopping & Money", + "description": "Vocabulary for shopping, prices, payments, and managing money.", + "filename": "2026_02_19_shopping_money_pt_fr_A2.json", + "language_ids": [ + 7, + 14 + ], + "category": "Shopping & Money", + "item_count": 60, + "level": "A2", + "emoji": "🛒", + "version": 1, + "size_bytes": 18559, + "checksum_sha256": "B8B7BCFE98ED6933568F85B01F7FD984F5E46904E08F8F5167B544A61FFC993B", + "created_at": "2026-02-19T15:42:30Z", + "updated_at": "2026-02-19T15:42:30Z" + }, + { + "id": "2026_02_19_shopping_money_pt_it_A2", + "name": "Shopping & Money", + "description": "Vocabulary for shopping, prices, payments, and managing money.", + "filename": "2026_02_19_shopping_money_pt_it_A2.json", + "language_ids": [ + 7, + 20 + ], + "category": "Shopping & Money", + "item_count": 60, + "level": "A2", + "emoji": "🛒", + "version": 1, + "size_bytes": 18575, + "checksum_sha256": "84B26F9E972AF7D0DCB21BF93E6EC2106F1649881878BDFD56A47CA13CA0C2C5", + "created_at": "2026-02-19T15:42:43Z", + "updated_at": "2026-02-19T15:42:43Z" + }, + { + "id": "2026_02_19_sports_leisure_de_fr_A2", + "name": "Sports & Leisure", + "description": "Vocabulary for popular sports, physical activities, and leisure pastimes.", + "filename": "2026_02_19_sports_leisure_de_fr_A2.json", + "language_ids": [ + 15, + 14 + ], + "category": "Sports & Leisure", + "item_count": 76, + "level": "A2", + "emoji": "⚽", + "version": 1, + "size_bytes": 23533, + "checksum_sha256": "602585E3355F0DD359C21DE9389B2847DCF00FC28E24276449872572A6A52D46", + "created_at": "2026-02-19T15:32:51Z", + "updated_at": "2026-02-19T15:32:51Z" + }, + { + "id": "2026_02_19_sports_leisure_de_it_A2", + "name": "Sports & Leisure", + "description": "Vocabulary for popular sports, physical activities, and leisure pastimes.", + "filename": "2026_02_19_sports_leisure_de_it_A2.json", + "language_ids": [ + 15, + 20 + ], + "category": "Sports & Leisure", + "item_count": 74, + "level": "A2", + "emoji": "⚽", + "version": 1, + "size_bytes": 22874, + "checksum_sha256": "B175DF1B40722E03AC266A1E05841AC14AF459E129D93E33A55F986B5261E958", + "created_at": "2026-02-19T15:33:05Z", + "updated_at": "2026-02-19T15:33:05Z" + }, + { + "id": "2026_02_19_sports_leisure_en_de_A2", + "name": "Sports & Leisure", + "description": "Vocabulary for popular sports, physical activities, and leisure pastimes.", + "filename": "2026_02_19_sports_leisure_en_de_A2.json", + "language_ids": [ + 1, + 15 + ], + "category": "Sports & Leisure", + "item_count": 70, + "level": "A2", + "emoji": "⚽", + "version": 1, + "size_bytes": 21460, + "checksum_sha256": "ADCCAB551629DEF59675C5F9CF7D4746F400FE18121A65756F9545E7065EA3CC", + "created_at": "2026-02-19T15:30:27Z", + "updated_at": "2026-02-19T15:30:27Z" + }, + { + "id": "2026_02_19_sports_leisure_en_es_A2", + "name": "Sports & Leisure", + "description": "Vocabulary for popular sports, physical activities, and leisure pastimes.", + "filename": "2026_02_19_sports_leisure_en_es_A2.json", + "language_ids": [ + 1, + 3 + ], + "category": "Sports & Leisure", + "item_count": 75, + "level": "A2", + "emoji": "⚽", + "version": 1, + "size_bytes": 22884, + "checksum_sha256": "821FF8E5D34BA690BD06D07E89C5BDB438325AA26F649BB1D8F8B624B0A13B5D", + "created_at": "2026-02-19T15:30:00Z", + "updated_at": "2026-02-19T15:30:00Z" + }, + { + "id": "2026_02_19_sports_leisure_en_fr_A2", + "name": "Sports & Leisure", + "description": "Vocabulary for popular sports, physical activities, and leisure pastimes.", + "filename": "2026_02_19_sports_leisure_en_fr_A2.json", + "language_ids": [ + 1, + 14 + ], + "category": "Sports & Leisure", + "item_count": 75, + "level": "A2", + "emoji": "⚽", + "version": 1, + "size_bytes": 22979, + "checksum_sha256": "C5D4B7FCCE996FA9B5B7F747D7D8DF4DEB58A1E3431F53CA9B266E8F611A48C1", + "created_at": "2026-02-19T15:30:40Z", + "updated_at": "2026-02-19T15:30:40Z" + }, + { + "id": "2026_02_19_sports_leisure_en_it_A2", + "name": "Sports & Leisure", + "description": "Vocabulary for popular sports, physical activities, and leisure pastimes.", + "filename": "2026_02_19_sports_leisure_en_it_A2.json", + "language_ids": [ + 1, + 20 + ], + "category": "Sports & Leisure", + "item_count": 72, + "level": "A2", + "emoji": "⚽", + "version": 1, + "size_bytes": 22106, + "checksum_sha256": "728DE0B8FE566F2BB41A179C31819F94B510AF5757AEA439FD526ED4D82EC5B6", + "created_at": "2026-02-19T15:30:54Z", + "updated_at": "2026-02-19T15:30:54Z" + }, + { + "id": "2026_02_19_sports_leisure_en_pt_A2", + "name": "Sports & Leisure", + "description": "Vocabulary for popular sports, physical activities, and leisure pastimes.", + "filename": "2026_02_19_sports_leisure_en_pt_A2.json", + "language_ids": [ + 1, + 7 + ], + "category": "Sports & Leisure", + "item_count": 74, + "level": "A2", + "emoji": "⚽", + "version": 1, + "size_bytes": 22561, + "checksum_sha256": "006160DC0A6637279B6C4F32E32B6ECBBF4CB621ED29EE92B7C321EAE6CC77E0", + "created_at": "2026-02-19T15:30:14Z", + "updated_at": "2026-02-19T15:30:14Z" + }, + { + "id": "2026_02_19_sports_leisure_es_de_A2", + "name": "Sports & Leisure", + "description": "Vocabulary for popular sports, physical activities, and leisure pastimes.", + "filename": "2026_02_19_sports_leisure_es_de_A2.json", + "language_ids": [ + 3, + 15 + ], + "category": "Sports & Leisure", + "item_count": 75, + "level": "A2", + "emoji": "⚽", + "version": 1, + "size_bytes": 23118, + "checksum_sha256": "CA3BFB9B74EC324F0FB6C3BAAE4FA9FA3658BA8EC865C59CFDB8BC5DDC772353", + "created_at": "2026-02-19T15:31:23Z", + "updated_at": "2026-02-19T15:31:23Z" + }, + { + "id": "2026_02_19_sports_leisure_es_fr_A2", + "name": "Sports & Leisure", + "description": "Vocabulary for popular sports, physical activities, and leisure pastimes.", + "filename": "2026_02_19_sports_leisure_es_fr_A2.json", + "language_ids": [ + 3, + 14 + ], + "category": "Sports & Leisure", + "item_count": 74, + "level": "A2", + "emoji": "⚽", + "version": 1, + "size_bytes": 22793, + "checksum_sha256": "9DD259271B9F632EAC8D5EFB79EBD5A21B2109879B4BFCA2EE87EA1D6CF33F1D", + "created_at": "2026-02-19T15:31:37Z", + "updated_at": "2026-02-19T15:31:37Z" + }, + { + "id": "2026_02_19_sports_leisure_es_it_A2", + "name": "Sports & Leisure", + "description": "Vocabulary for popular sports, physical activities, and leisure pastimes.", + "filename": "2026_02_19_sports_leisure_es_it_A2.json", + "language_ids": [ + 3, + 20 + ], + "category": "Sports & Leisure", + "item_count": 78, + "level": "A2", + "emoji": "⚽", + "version": 1, + "size_bytes": 23978, + "checksum_sha256": "508A68B6E3FFEF8591B0BB7766AF52857AD40F9CD1DEA8C8C5ADCD08A7D22D27", + "created_at": "2026-02-19T15:31:52Z", + "updated_at": "2026-02-19T15:31:52Z" + }, + { + "id": "2026_02_19_sports_leisure_es_pt_A2", + "name": "Sports & Leisure", + "description": "Vocabulary for popular sports, physical activities, and leisure pastimes.", + "filename": "2026_02_19_sports_leisure_es_pt_A2.json", + "language_ids": [ + 3, + 7 + ], + "category": "Sports & Leisure", + "item_count": 76, + "level": "A2", + "emoji": "⚽", + "version": 1, + "size_bytes": 23282, + "checksum_sha256": "AC584814F55CB8D50E0E17C05631606C088B52FAE3EDFDA4A2FD48AF955EEA42", + "created_at": "2026-02-19T15:31:08Z", + "updated_at": "2026-02-19T15:31:08Z" + }, + { + "id": "2026_02_19_sports_leisure_fr_it_A2", + "name": "Sports & Leisure", + "description": "Vocabulary for popular sports, physical activities, and leisure pastimes.", + "filename": "2026_02_19_sports_leisure_fr_it_A2.json", + "language_ids": [ + 14, + 20 + ], + "category": "Sports & Leisure", + "item_count": 77, + "level": "A2", + "emoji": "⚽", + "version": 1, + "size_bytes": 24255, + "checksum_sha256": "ED0377559865B33E236FCEF2775D423CABF6022BB62B3F20F40B5220647FD161", + "created_at": "2026-02-19T15:33:22Z", + "updated_at": "2026-02-19T15:33:22Z" + }, + { + "id": "2026_02_19_sports_leisure_pt_de_A2", + "name": "Sports & Leisure", + "description": "Vocabulary for popular sports, physical activities, and leisure pastimes.", + "filename": "2026_02_19_sports_leisure_pt_de_A2.json", + "language_ids": [ + 7, + 15 + ], + "category": "Sports & Leisure", + "item_count": 70, + "level": "A2", + "emoji": "⚽", + "version": 1, + "size_bytes": 21636, + "checksum_sha256": "C9E0E417614E55A2B42537DF060FB624F0FBDEBD3B9A95EE0F3876C4C42B122F", + "created_at": "2026-02-19T15:32:07Z", + "updated_at": "2026-02-19T15:32:07Z" + }, + { + "id": "2026_02_19_sports_leisure_pt_fr_A2", + "name": "Sports & Leisure", + "description": "Vocabulary for popular sports, physical activities, and leisure pastimes.", + "filename": "2026_02_19_sports_leisure_pt_fr_A2.json", + "language_ids": [ + 7, + 14 + ], + "category": "Sports & Leisure", + "item_count": 76, + "level": "A2", + "emoji": "⚽", + "version": 1, + "size_bytes": 23410, + "checksum_sha256": "81FA0FC459AD823FD81D40AFABB914324747F94BE05B574DF0AAC9D93249337E", + "created_at": "2026-02-19T15:32:21Z", + "updated_at": "2026-02-19T15:32:21Z" + }, + { + "id": "2026_02_19_sports_leisure_pt_it_A2", + "name": "Sports & Leisure", + "description": "Vocabulary for popular sports, physical activities, and leisure pastimes.", + "filename": "2026_02_19_sports_leisure_pt_it_A2.json", + "language_ids": [ + 7, + 20 + ], + "category": "Sports & Leisure", + "item_count": 72, + "level": "A2", + "emoji": "⚽", + "version": 1, + "size_bytes": 22202, + "checksum_sha256": "A9EEA47CB9D9312BC241B453EFB64E1831FE62FDA9FC2F7BAA1872F46AC35612", + "created_at": "2026-02-19T15:32:36Z", + "updated_at": "2026-02-19T15:32:36Z" + }, + { + "id": "2026_02_19_technology_internet_de_fr_B1", + "name": "Technology & Internet", + "description": "Vocabulary for computers, smartphones, the internet, and modern digital life.", + "filename": "2026_02_19_technology_internet_de_fr_B1.json", + "language_ids": [ + 15, + 14 + ], + "category": "Technology & Internet", + "item_count": 75, + "level": "B1", + "emoji": "💻", + "version": 1, + "size_bytes": 23340, + "checksum_sha256": "A65FB3278B89D702EDD978E6AD30377141C079E7C7AEDD9DB4C963A927153094", + "created_at": "2026-02-19T15:36:20Z", + "updated_at": "2026-02-19T15:36:20Z" + }, + { + "id": "2026_02_19_technology_internet_de_it_B1", + "name": "Technology & Internet", + "description": "Vocabulary for computers, smartphones, the internet, and modern digital life.", + "filename": "2026_02_19_technology_internet_de_it_B1.json", + "language_ids": [ + 15, + 20 + ], + "category": "Technology & Internet", + "item_count": 71, + "level": "B1", + "emoji": "💻", + "version": 1, + "size_bytes": 22022, + "checksum_sha256": "FAF4060CF273E0F267EBC511F2B77A2C79C0AB20C26FD469FB12A7C0C78B38BF", + "created_at": "2026-02-19T15:36:33Z", + "updated_at": "2026-02-19T15:36:33Z" + }, + { + "id": "2026_02_19_technology_internet_en_de_B1", + "name": "Technology & Internet", + "description": "Vocabulary for computers, smartphones, the internet, and modern digital life.", + "filename": "2026_02_19_technology_internet_en_de_B1.json", + "language_ids": [ + 1, + 15 + ], + "category": "Technology & Internet", + "item_count": 74, + "level": "B1", + "emoji": "💻", + "version": 1, + "size_bytes": 22790, + "checksum_sha256": "E27762A5B2A6718508647F5E65F3492C1E394194F2334C039930A1AA04AD6AB2", + "created_at": "2026-02-19T15:34:00Z", + "updated_at": "2026-02-19T15:34:00Z" + }, + { + "id": "2026_02_19_technology_internet_en_es_B1", + "name": "Technology & Internet", + "description": "Vocabulary for computers, smartphones, the internet, and modern digital life.", + "filename": "2026_02_19_technology_internet_en_es_B1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Technology & Internet", + "item_count": 75, + "level": "B1", + "emoji": "💻", + "version": 1, + "size_bytes": 23028, + "checksum_sha256": "42CCCB8957184A3EA46EDA8F0D157473C62BBECE28A9CF65DAF987EDCAB695BC", + "created_at": "2026-02-19T15:33:35Z", + "updated_at": "2026-02-19T15:33:35Z" + }, + { + "id": "2026_02_19_technology_internet_en_fr_B1", + "name": "Technology & Internet", + "description": "Vocabulary for computers, smartphones, the internet, and modern digital life.", + "filename": "2026_02_19_technology_internet_en_fr_B1.json", + "language_ids": [ + 1, + 14 + ], + "category": "Technology & Internet", + "item_count": 73, + "level": "B1", + "emoji": "💻", + "version": 1, + "size_bytes": 22517, + "checksum_sha256": "6BF0D34539C8DADE601E7A12AB4348B3FFBAD133E281B799BBA31C59A6C0438F", + "created_at": "2026-02-19T15:34:13Z", + "updated_at": "2026-02-19T15:34:13Z" + }, + { + "id": "2026_02_19_technology_internet_en_it_B1", + "name": "Technology & Internet", + "description": "Vocabulary for computers, smartphones, the internet, and modern digital life.", + "filename": "2026_02_19_technology_internet_en_it_B1.json", + "language_ids": [ + 1, + 20 + ], + "category": "Technology & Internet", + "item_count": 72, + "level": "B1", + "emoji": "💻", + "version": 1, + "size_bytes": 22177, + "checksum_sha256": "F25F93F3CF57B4FE45AD887B43F6DDEA54BED786FD37869E62F180CBD0AED6E3", + "created_at": "2026-02-19T15:34:25Z", + "updated_at": "2026-02-19T15:34:25Z" + }, + { + "id": "2026_02_19_technology_internet_en_pt_B1", + "name": "Technology & Internet", + "description": "Vocabulary for computers, smartphones, the internet, and modern digital life.", + "filename": "2026_02_19_technology_internet_en_pt_B1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Technology & Internet", + "item_count": 72, + "level": "B1", + "emoji": "💻", + "version": 1, + "size_bytes": 22053, + "checksum_sha256": "7ADF86DABCB6F145A66D9C997312BAEF045FE4E0569ADD2350DA669EC224D501", + "created_at": "2026-02-19T15:33:48Z", + "updated_at": "2026-02-19T15:33:48Z" + }, + { + "id": "2026_02_19_technology_internet_es_de_B1", + "name": "Technology & Internet", + "description": "Vocabulary for computers, smartphones, the internet, and modern digital life.", + "filename": "2026_02_19_technology_internet_es_de_B1.json", + "language_ids": [ + 3, + 15 + ], + "category": "Technology & Internet", + "item_count": 74, + "level": "B1", + "emoji": "💻", + "version": 1, + "size_bytes": 23036, + "checksum_sha256": "C8F437F8343EE2F60CEBEC94DDD7C3C04F7195F6A88E2AEDB4E760F28334CAE3", + "created_at": "2026-02-19T15:34:55Z", + "updated_at": "2026-02-19T15:34:55Z" + }, + { + "id": "2026_02_19_technology_internet_es_fr_B1", + "name": "Technology & Internet", + "description": "Vocabulary for computers, smartphones, the internet, and modern digital life.", + "filename": "2026_02_19_technology_internet_es_fr_B1.json", + "language_ids": [ + 3, + 14 + ], + "category": "Technology & Internet", + "item_count": 70, + "level": "B1", + "emoji": "💻", + "version": 1, + "size_bytes": 21888, + "checksum_sha256": "B8A4F638B73332C81A20B6668F592A28500699586FB78F978E1AB1182A38F4C7", + "created_at": "2026-02-19T15:35:09Z", + "updated_at": "2026-02-19T15:35:09Z" + }, + { + "id": "2026_02_19_technology_internet_es_it_B1", + "name": "Technology & Internet", + "description": "Vocabulary for computers, smartphones, the internet, and modern digital life.", + "filename": "2026_02_19_technology_internet_es_it_B1.json", + "language_ids": [ + 3, + 20 + ], + "category": "Technology & Internet", + "item_count": 71, + "level": "B1", + "emoji": "💻", + "version": 1, + "size_bytes": 22013, + "checksum_sha256": "E3EF5FEAAEDB6C537527E709BD26A7DB01768F5D855147A1E677D03A8A19DCD7", + "created_at": "2026-02-19T15:35:23Z", + "updated_at": "2026-02-19T15:35:23Z" + }, + { + "id": "2026_02_19_technology_internet_es_pt_B1", + "name": "Technology & Internet", + "description": "Vocabulary for computers, smartphones, the internet, and modern digital life.", + "filename": "2026_02_19_technology_internet_es_pt_B1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Technology & Internet", + "item_count": 71, + "level": "B1", + "emoji": "💻", + "version": 1, + "size_bytes": 22004, + "checksum_sha256": "80AC7F1BB1FE2D9715F404027C95F0487FFFE884AB2C4D7A74EAE0D19A344550", + "created_at": "2026-02-19T15:34:40Z", + "updated_at": "2026-02-19T15:34:40Z" + }, + { + "id": "2026_02_19_technology_internet_fr_it_B1", + "name": "Technology & Internet", + "description": "Vocabulary for computers, smartphones, the internet, and modern digital life.", + "filename": "2026_02_19_technology_internet_fr_it_B1.json", + "language_ids": [ + 14, + 20 + ], + "category": "Technology & Internet", + "item_count": 72, + "level": "B1", + "emoji": "💻", + "version": 1, + "size_bytes": 22413, + "checksum_sha256": "A3B710435C0B0D5DA8CD347888B64527F4DD13EBDF3D3C1A6899A39E22DC7CD4", + "created_at": "2026-02-19T15:36:47Z", + "updated_at": "2026-02-19T15:36:47Z" + }, + { + "id": "2026_02_19_technology_internet_pt_de_B1", + "name": "Technology & Internet", + "description": "Vocabulary for computers, smartphones, the internet, and modern digital life.", + "filename": "2026_02_19_technology_internet_pt_de_B1.json", + "language_ids": [ + 7, + 15 + ], + "category": "Technology & Internet", + "item_count": 72, + "level": "B1", + "emoji": "💻", + "version": 1, + "size_bytes": 22250, + "checksum_sha256": "D76356A4F1F94A010560BE060964187BF16C8C1F83E9E5714B789F4551E9EF9E", + "created_at": "2026-02-19T15:35:37Z", + "updated_at": "2026-02-19T15:35:37Z" + }, + { + "id": "2026_02_19_technology_internet_pt_fr_B1", + "name": "Technology & Internet", + "description": "Vocabulary for computers, smartphones, the internet, and modern digital life.", + "filename": "2026_02_19_technology_internet_pt_fr_B1.json", + "language_ids": [ + 7, + 14 + ], + "category": "Technology & Internet", + "item_count": 73, + "level": "B1", + "emoji": "💻", + "version": 1, + "size_bytes": 22597, + "checksum_sha256": "41510F5E8D4FBDEAEF620AA05B1E432D303FC94E1CBC9C1F008407CD9182AD04", + "created_at": "2026-02-19T15:35:51Z", + "updated_at": "2026-02-19T15:35:51Z" + }, + { + "id": "2026_02_19_technology_internet_pt_it_B1", + "name": "Technology & Internet", + "description": "Vocabulary for computers, smartphones, the internet, and modern digital life.", + "filename": "2026_02_19_technology_internet_pt_it_B1.json", + "language_ids": [ + 7, + 20 + ], + "category": "Technology & Internet", + "item_count": 76, + "level": "B1", + "emoji": "💻", + "version": 1, + "size_bytes": 23415, + "checksum_sha256": "A5202169F8BAB593798C89A6DBAF8F4F32355FF475674703E4C8F11BC085D800", + "created_at": "2026-02-19T15:36:05Z", + "updated_at": "2026-02-19T15:36:05Z" + }, + { + "id": "2026_02_19_travel_transport_de_fr_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_de_fr_A2.json", + "language_ids": [ + 15, + 14 + ], + "category": "Travel & Transport", + "item_count": 73, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22617, + "checksum_sha256": "EBF39092CE28FC525F09DB7D5D5036756DEA21FBF3D5B8600063DB88FEBCFD4D", + "created_at": "2026-02-19T14:34:36Z", + "updated_at": "2026-02-19T14:34:36Z" + }, + { + "id": "2026_02_19_travel_transport_de_it_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_de_it_A2.json", + "language_ids": [ + 15, + 20 + ], + "category": "Travel & Transport", + "item_count": 73, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22629, + "checksum_sha256": "8A55880C5F200BDEF246775B522024EAFD838D966EDA4A8663A549D142F4820B", + "created_at": "2026-02-19T14:34:51Z", + "updated_at": "2026-02-19T14:34:51Z" + }, + { + "id": "2026_02_19_travel_transport_de_ja_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_de_ja_A2.json", + "language_ids": [ + 15, + 21 + ], + "category": "Travel & Transport", + "item_count": 70, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 23407, + "checksum_sha256": "73CE33B21FD1406738E5E3A5E321C222C990ACF3ED018F28F7ABED901EAFEDB3", + "created_at": "2026-02-19T14:35:17Z", + "updated_at": "2026-02-19T14:35:17Z" + }, + { + "id": "2026_02_19_travel_transport_de_ko_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_de_ko_A2.json", + "language_ids": [ + 15, + 13 + ], + "category": "Travel & Transport", + "item_count": 76, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 24276, + "checksum_sha256": "46DBAF074392A3406D651017C1F99AAD8F66D06DB4D885662EA20D0190D8F5CD", + "created_at": "2026-02-19T14:36:01Z", + "updated_at": "2026-02-19T14:36:01Z" + }, + { + "id": "2026_02_19_travel_transport_de_pl_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_de_pl_A2.json", + "language_ids": [ + 15, + 24 + ], + "category": "Travel & Transport", + "item_count": 75, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 23138, + "checksum_sha256": "80795271F1E537A4AADC66D98C6FB388D8A86774A03BC106C7DB5432DC97F0E9", + "created_at": "2026-02-19T14:36:16Z", + "updated_at": "2026-02-19T14:36:16Z" + }, + { + "id": "2026_02_19_travel_transport_de_zh_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_de_zh_A2.json", + "language_ids": [ + 15, + 2 + ], + "category": "Travel & Transport", + "item_count": 71, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22860, + "checksum_sha256": "A309299063938B6805AD74661079BA18EDCA35CCBB22DB928470C0D6CD1D5F1E", + "created_at": "2026-02-19T14:35:39Z", + "updated_at": "2026-02-19T14:35:39Z" + }, + { + "id": "2026_02_19_travel_transport_en_de_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_en_de_A2.json", + "language_ids": [ + 1, + 15 + ], + "category": "Travel & Transport", + "item_count": 73, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22428, + "checksum_sha256": "9292D6B5B2DE0E9C73DFF84F6A3D73C8DD72EDD3A9391255C225804750410DED", + "created_at": "2026-02-19T14:28:19Z", + "updated_at": "2026-02-19T14:28:19Z" + }, + { + "id": "2026_02_19_travel_transport_en_es_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_en_es_A2.json", + "language_ids": [ + 1, + 3 + ], + "category": "Travel & Transport", + "item_count": 77, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 23599, + "checksum_sha256": "75140B56361AE8D5DEB105348BCE21B741E0DB8B38A255688DBDE25A0E7090C5", + "created_at": "2026-02-19T14:27:52Z", + "updated_at": "2026-02-19T14:27:52Z" + }, + { + "id": "2026_02_19_travel_transport_en_fr_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_en_fr_A2.json", + "language_ids": [ + 1, + 14 + ], + "category": "Travel & Transport", + "item_count": 70, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 21438, + "checksum_sha256": "FC44252A344AEDAC58EE4607031E0245D08555CB1FD511ED03E6C2CC829ABFFB", + "created_at": "2026-02-19T14:28:31Z", + "updated_at": "2026-02-19T14:28:31Z" + }, + { + "id": "2026_02_19_travel_transport_en_it_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_en_it_A2.json", + "language_ids": [ + 1, + 20 + ], + "category": "Travel & Transport", + "item_count": 76, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 23359, + "checksum_sha256": "A10B4AE994A89ABC74E5B8919BDA602D18A823BEEBF93CC6C01D12B303F6BE7A", + "created_at": "2026-02-19T14:28:44Z", + "updated_at": "2026-02-19T14:28:44Z" + }, + { + "id": "2026_02_19_travel_transport_en_ja_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_en_ja_A2.json", + "language_ids": [ + 1, + 21 + ], + "category": "Travel & Transport", + "item_count": 74, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 24119, + "checksum_sha256": "89BC48603C07B1825BC3E0A4829DF7A8293F3EFD4842D47E18BC67ABFEF7D626", + "created_at": "2026-02-19T14:29:06Z", + "updated_at": "2026-02-19T14:29:06Z" + }, + { + "id": "2026_02_19_travel_transport_en_ko_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_en_ko_A2.json", + "language_ids": [ + 1, + 13 + ], + "category": "Travel & Transport", + "item_count": 73, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 23110, + "checksum_sha256": "0A3D9395DB4E53AEF7F13EF8FC50118B294A0C7A3F3BB8126A2C649977ED989F", + "created_at": "2026-02-19T14:29:42Z", + "updated_at": "2026-02-19T14:29:42Z" + }, + { + "id": "2026_02_19_travel_transport_en_pl_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_en_pl_A2.json", + "language_ids": [ + 1, + 24 + ], + "category": "Travel & Transport", + "item_count": 71, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 21830, + "checksum_sha256": "B9FEFB36BB584EAE02C55697526D43A69BCB5A1F05A52BB17721C3B09C53B47C", + "created_at": "2026-02-19T14:29:55Z", + "updated_at": "2026-02-19T14:29:55Z" + }, + { + "id": "2026_02_19_travel_transport_en_pt_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_en_pt_A2.json", + "language_ids": [ + 1, + 7 + ], + "category": "Travel & Transport", + "item_count": 77, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 23629, + "checksum_sha256": "18D0E6C14281ED7DE684CA546379883A245A5C3F587E1144545761A385102B1D", + "created_at": "2026-02-19T14:28:06Z", + "updated_at": "2026-02-19T14:28:06Z" + }, + { + "id": "2026_02_19_travel_transport_en_zh_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_en_zh_A2.json", + "language_ids": [ + 1, + 2 + ], + "category": "Travel & Transport", + "item_count": 71, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22195, + "checksum_sha256": "67EEEA286C28A9AECAA5E4B52202B5FDD86BFB04D89E107DD0FC94A1FEA043F7", + "created_at": "2026-02-19T14:29:23Z", + "updated_at": "2026-02-19T14:29:23Z" + }, + { + "id": "2026_02_19_travel_transport_es_de_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_es_de_A2.json", + "language_ids": [ + 3, + 15 + ], + "category": "Travel & Transport", + "item_count": 73, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22508, + "checksum_sha256": "892D2CAB766769F4D9251586A8CD0CF16BD9E3DA39662844E7E6EDC26A26C991", + "created_at": "2026-02-19T14:30:24Z", + "updated_at": "2026-02-19T14:30:24Z" + }, + { + "id": "2026_02_19_travel_transport_es_fr_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_es_fr_A2.json", + "language_ids": [ + 3, + 14 + ], + "category": "Travel & Transport", + "item_count": 74, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22792, + "checksum_sha256": "A2214BA330BE01979A64482BA8505F3DC23E4635D05FC4073717218DCB08A330", + "created_at": "2026-02-19T14:30:38Z", + "updated_at": "2026-02-19T14:30:38Z" + }, + { + "id": "2026_02_19_travel_transport_es_it_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_es_it_A2.json", + "language_ids": [ + 3, + 20 + ], + "category": "Travel & Transport", + "item_count": 75, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 23154, + "checksum_sha256": "333707232D91DEF61F04248731E72A1755BE20F7346839441B2E4D515AE3F8A4", + "created_at": "2026-02-19T14:30:53Z", + "updated_at": "2026-02-19T14:30:53Z" + }, + { + "id": "2026_02_19_travel_transport_es_ja_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_es_ja_A2.json", + "language_ids": [ + 3, + 21 + ], + "category": "Travel & Transport", + "item_count": 73, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 24069, + "checksum_sha256": "4492293B4C227564F01535842FC5C69E5BEE0D508DAFD0234196625E306209A0", + "created_at": "2026-02-19T14:31:18Z", + "updated_at": "2026-02-19T14:31:18Z" + }, + { + "id": "2026_02_19_travel_transport_es_ko_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_es_ko_A2.json", + "language_ids": [ + 3, + 13 + ], + "category": "Travel & Transport", + "item_count": 76, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 24216, + "checksum_sha256": "DADB583B9B616E42ECFF39C106A765864B1C23C9C2813F6CCD17148E374C7AFA", + "created_at": "2026-02-19T14:32:00Z", + "updated_at": "2026-02-19T14:32:00Z" + }, + { + "id": "2026_02_19_travel_transport_es_pl_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_es_pl_A2.json", + "language_ids": [ + 3, + 24 + ], + "category": "Travel & Transport", + "item_count": 73, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22552, + "checksum_sha256": "4937598AC620A049143706C15A729E403AAA9F347A98054C22B4058B0A66F35B", + "created_at": "2026-02-19T14:32:14Z", + "updated_at": "2026-02-19T14:32:14Z" + }, + { + "id": "2026_02_19_travel_transport_es_pt_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_es_pt_A2.json", + "language_ids": [ + 3, + 7 + ], + "category": "Travel & Transport", + "item_count": 73, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22455, + "checksum_sha256": "1AC37F8C2955F19334BE142A7EED364A54EA15BF0C57D48FCA9204D6AC6A67A1", + "created_at": "2026-02-19T14:30:09Z", + "updated_at": "2026-02-19T14:30:09Z" + }, + { + "id": "2026_02_19_travel_transport_es_zh_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_es_zh_A2.json", + "language_ids": [ + 3, + 2 + ], + "category": "Travel & Transport", + "item_count": 70, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22297, + "checksum_sha256": "B558AE2A322201D5EEFE14481B2E9279D1F68BC309DA9FA5F8663B0C48734963", + "created_at": "2026-02-19T14:31:38Z", + "updated_at": "2026-02-19T14:31:38Z" + }, + { + "id": "2026_02_19_travel_transport_fr_it_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_fr_it_A2.json", + "language_ids": [ + 14, + 20 + ], + "category": "Travel & Transport", + "item_count": 73, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22462, + "checksum_sha256": "C1D3B7F2B9C865C388EE8E6BE29521BC219AD70BDF21641619360FEFBCD73B50", + "created_at": "2026-02-19T14:36:29Z", + "updated_at": "2026-02-19T14:36:29Z" + }, + { + "id": "2026_02_19_travel_transport_fr_ja_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_fr_ja_A2.json", + "language_ids": [ + 14, + 21 + ], + "category": "Travel & Transport", + "item_count": 71, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 23250, + "checksum_sha256": "71404E212FD7CEB154A6DB29836A51FB909027301042D93FAAB1375769D2B960", + "created_at": "2026-02-19T14:36:52Z", + "updated_at": "2026-02-19T14:36:52Z" + }, + { + "id": "2026_02_19_travel_transport_fr_ko_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_fr_ko_A2.json", + "language_ids": [ + 14, + 13 + ], + "category": "Travel & Transport", + "item_count": 78, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 24858, + "checksum_sha256": "2450F5C79394493CC9F294DCCF21C04A45E4535E0486AC09E2C868D5B22E03E3", + "created_at": "2026-02-19T14:37:36Z", + "updated_at": "2026-02-19T14:37:36Z" + }, + { + "id": "2026_02_19_travel_transport_fr_pl_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_fr_pl_A2.json", + "language_ids": [ + 14, + 24 + ], + "category": "Travel & Transport", + "item_count": 78, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 24255, + "checksum_sha256": "1F4FCD2ECD3DB0FE45E99A64965242E25A8EF1B0A560B937C1954A0CDC3F60D6", + "created_at": "2026-02-19T14:37:52Z", + "updated_at": "2026-02-19T14:37:52Z" + }, + { + "id": "2026_02_19_travel_transport_fr_zh_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_fr_zh_A2.json", + "language_ids": [ + 14, + 2 + ], + "category": "Travel & Transport", + "item_count": 79, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 25142, + "checksum_sha256": "A6DE1D868BE6BFAB5C01E8AE0C3F84FCD7471DE568E34674C3FC0FBE4185DB01", + "created_at": "2026-02-19T14:37:14Z", + "updated_at": "2026-02-19T14:37:14Z" + }, + { + "id": "2026_02_19_travel_transport_it_ja_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_it_ja_A2.json", + "language_ids": [ + 20, + 21 + ], + "category": "Travel & Transport", + "item_count": 71, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 23654, + "checksum_sha256": "3F14D206F8A6E34FCB01E6E845D0C5000ED967E48BBCA10BE46D37DA2AB81FB0", + "created_at": "2026-02-19T14:38:19Z", + "updated_at": "2026-02-19T14:38:19Z" + }, + { + "id": "2026_02_19_travel_transport_it_ko_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_it_ko_A2.json", + "language_ids": [ + 20, + 13 + ], + "category": "Travel & Transport", + "item_count": 71, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22612, + "checksum_sha256": "88E4BEE50C7105FC3C554BA81FC28A2F66DDC851E237D6B37BEF1DC5DB882D53", + "created_at": "2026-02-19T14:38:59Z", + "updated_at": "2026-02-19T14:38:59Z" + }, + { + "id": "2026_02_19_travel_transport_it_pl_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_it_pl_A2.json", + "language_ids": [ + 20, + 24 + ], + "category": "Travel & Transport", + "item_count": 80, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 24601, + "checksum_sha256": "18403FC8C2CFD085020C8E857332C3C888955050F1C6CD59B693C4F45704FBCD", + "created_at": "2026-02-19T14:39:14Z", + "updated_at": "2026-02-19T14:39:14Z" + }, + { + "id": "2026_02_19_travel_transport_it_zh_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_it_zh_A2.json", + "language_ids": [ + 20, + 2 + ], + "category": "Travel & Transport", + "item_count": 71, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22574, + "checksum_sha256": "6F8BD75942E6667F37DB7F49D7A2A82457F6C550819AB6AF39368FA2E3351AC7", + "created_at": "2026-02-19T14:38:38Z", + "updated_at": "2026-02-19T14:38:38Z" + }, + { + "id": "2026_02_19_travel_transport_ja_ko_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_ja_ko_A2.json", + "language_ids": [ + 21, + 13 + ], + "category": "Travel & Transport", + "item_count": 77, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 26478, + "checksum_sha256": "E33FD785A8DDD56C5DCDA92DD4F8411020D63BDBE5DDCBABC8E14D0DF3A7EEBA", + "created_at": "2026-02-19T14:40:21Z", + "updated_at": "2026-02-19T14:40:21Z" + }, + { + "id": "2026_02_19_travel_transport_ja_pl_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_ja_pl_A2.json", + "language_ids": [ + 21, + 24 + ], + "category": "Travel & Transport", + "item_count": 70, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 23368, + "checksum_sha256": "A325FCCA14E956E513908D1580193009B289F4E45BD3FF5D1DD040C87E3FD1F7", + "created_at": "2026-02-19T14:40:46Z", + "updated_at": "2026-02-19T14:40:46Z" + }, + { + "id": "2026_02_19_travel_transport_ja_zh_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_ja_zh_A2.json", + "language_ids": [ + 21, + 2 + ], + "category": "Travel & Transport", + "item_count": 76, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 26160, + "checksum_sha256": "083158EE910DDBAF1A5DB8E1D700431776A03A0880D3AF47F38E2AFE0362E73F", + "created_at": "2026-02-19T14:39:47Z", + "updated_at": "2026-02-19T14:39:47Z" + }, + { + "id": "2026_02_19_travel_transport_ko_pl_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_ko_pl_A2.json", + "language_ids": [ + 13, + 24 + ], + "category": "Travel & Transport", + "item_count": 72, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 23117, + "checksum_sha256": "B6ABFBEC44D2FC4EED444895EDD32DFB743F3A19C941962E2C3B679C3910982F", + "created_at": "2026-02-19T14:41:48Z", + "updated_at": "2026-02-19T14:41:48Z" + }, + { + "id": "2026_02_19_travel_transport_pt_de_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_pt_de_A2.json", + "language_ids": [ + 7, + 15 + ], + "category": "Travel & Transport", + "item_count": 75, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 23178, + "checksum_sha256": "35D00D1B074ED5A1F209687266124B6992835108867C7A08D0BB09A945B15324", + "created_at": "2026-02-19T14:32:29Z", + "updated_at": "2026-02-19T14:32:29Z" + }, + { + "id": "2026_02_19_travel_transport_pt_fr_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_pt_fr_A2.json", + "language_ids": [ + 7, + 14 + ], + "category": "Travel & Transport", + "item_count": 74, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22853, + "checksum_sha256": "439E71383B9A3A25CD8A240ABD9390C5FBDF1B2CDC3242B85AAF61202646196D", + "created_at": "2026-02-19T14:32:44Z", + "updated_at": "2026-02-19T14:32:44Z" + }, + { + "id": "2026_02_19_travel_transport_pt_it_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_pt_it_A2.json", + "language_ids": [ + 7, + 20 + ], + "category": "Travel & Transport", + "item_count": 74, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 23019, + "checksum_sha256": "26D523C56CAE61118841C4089C035DC6B45998980FFB7CAD497DE496D1B450A9", + "created_at": "2026-02-19T14:32:59Z", + "updated_at": "2026-02-19T14:32:59Z" + }, + { + "id": "2026_02_19_travel_transport_pt_ja_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_pt_ja_A2.json", + "language_ids": [ + 7, + 21 + ], + "category": "Travel & Transport", + "item_count": 78, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 26044, + "checksum_sha256": "2BD10524EC49C247C7672435CF2470BE725495FB6E13D0EA27071BF7481AEF1E", + "created_at": "2026-02-19T14:33:28Z", + "updated_at": "2026-02-19T14:33:28Z" + }, + { + "id": "2026_02_19_travel_transport_pt_ko_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_pt_ko_A2.json", + "language_ids": [ + 7, + 13 + ], + "category": "Travel & Transport", + "item_count": 72, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22893, + "checksum_sha256": "1FD0084B5DE1FC87BA39B4497AC6D1445F91D55121427690163133CCB21602EF", + "created_at": "2026-02-19T14:34:06Z", + "updated_at": "2026-02-19T14:34:06Z" + }, + { + "id": "2026_02_19_travel_transport_pt_pl_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_pt_pl_A2.json", + "language_ids": [ + 7, + 24 + ], + "category": "Travel & Transport", + "item_count": 75, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 23169, + "checksum_sha256": "9197857F90C69A60A4CC0BAF54764454CB0A2CAEC6922503E0C272F8A2869169", + "created_at": "2026-02-19T14:34:22Z", + "updated_at": "2026-02-19T14:34:22Z" + }, + { + "id": "2026_02_19_travel_transport_pt_zh_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_pt_zh_A2.json", + "language_ids": [ + 7, + 2 + ], + "category": "Travel & Transport", + "item_count": 72, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 22801, + "checksum_sha256": "E1D99F5C3E42505C2E8DB8B0454842A6EC29B9101216DA28DB7CDCFE1788A95F", + "created_at": "2026-02-19T14:33:46Z", + "updated_at": "2026-02-19T14:33:46Z" + }, + { + "id": "2026_02_19_travel_transport_zh_ko_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_zh_ko_A2.json", + "language_ids": [ + 2, + 13 + ], + "category": "Travel & Transport", + "item_count": 74, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 24008, + "checksum_sha256": "21C7E72324C9EAAB8DCEA82A6C9811C750C9C11DF8DFD2B9E51A966C89000699", + "created_at": "2026-02-19T14:41:10Z", + "updated_at": "2026-02-19T14:41:10Z" + }, + { + "id": "2026_02_19_travel_transport_zh_pl_A2", + "name": "Travel & Transport", + "description": "Key vocabulary for travelling — airports, hotels, directions, and modes of transport.", + "filename": "2026_02_19_travel_transport_zh_pl_A2.json", + "language_ids": [ + 2, + 24 + ], + "category": "Travel & Transport", + "item_count": 74, + "level": "A2", + "emoji": "✈️", + "version": 1, + "size_bytes": 23369, + "checksum_sha256": "16E19BF12765D4AF8DCBD39D437B3DE015E05BB26F5654B4FA83968CE11C9484", + "created_at": "2026-02-19T14:41:27Z", + "updated_at": "2026-02-19T14:41:27Z" + }, + { + "id": "2026_02_19_verbs_advanced_en_es_C1", + "name": "Verbs - Advanced", + "description": "Sophisticated and nuanced verbs for advanced learners aiming for near-native fluency.", + "filename": "2026_02_19_verbs_advanced_en_es_C1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Verbs - Advanced", + "item_count": 145, + "level": "C1", + "emoji": "🎯", + "version": 1, + "size_bytes": 44479, + "checksum_sha256": "CF9157A2266AF03AE76543F8810CA3A782E580FCA52808DF5999E2989BA64E91", + "created_at": "2026-02-19T15:49:17Z", + "updated_at": "2026-02-19T15:49:17Z" + }, + { + "id": "2026_02_19_verbs_advanced_en_pt_C1", + "name": "Verbs - Advanced", + "description": "Sophisticated and nuanced verbs for advanced learners aiming for near-native fluency.", + "filename": "2026_02_19_verbs_advanced_en_pt_C1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Verbs - Advanced", + "item_count": 118, + "level": "C1", + "emoji": "🎯", + "version": 1, + "size_bytes": 36392, + "checksum_sha256": "AFBFE0C2194B62F4BC49BCACCDF9E8AC3A01C1062A3DBC632BFA5BDA6CCF3015", + "created_at": "2026-02-19T15:49:42Z", + "updated_at": "2026-02-19T15:49:42Z" + }, + { + "id": "2026_02_19_verbs_advanced_es_pt_C1", + "name": "Verbs - Advanced", + "description": "Sophisticated and nuanced verbs for advanced learners aiming for near-native fluency.", + "filename": "2026_02_19_verbs_advanced_es_pt_C1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Verbs - Advanced", + "item_count": 111, + "level": "C1", + "emoji": "🎯", + "version": 1, + "size_bytes": 34268, + "checksum_sha256": "C6D539D203EB1E66B2495E1959C5873283E7CD36C39DBE2F2BE6592DB94653DF", + "created_at": "2026-02-19T15:50:05Z", + "updated_at": "2026-02-19T15:50:05Z" + }, + { + "id": "2026_02_19_verbs_beginners_de_fr_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_de_fr_A1.json", + "language_ids": [ + 15, + 14 + ], + "category": "Verbs - Beginners", + "item_count": 107, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 32926, + "checksum_sha256": "F20BE65D311D22952DA522E305A82F82F1039957C70EE3EADB5B70128B9FA1BC", + "created_at": "2026-02-19T12:26:12Z", + "updated_at": "2026-02-19T12:26:12Z" + }, + { + "id": "2026_02_19_verbs_beginners_de_it_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_de_it_A1.json", + "language_ids": [ + 15, + 20 + ], + "category": "Verbs - Beginners", + "item_count": 103, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 31755, + "checksum_sha256": "89ABDDA7521744894870B0BC2A7DDC60190A76CF5A48B9960E0BFB1EEB332D9E", + "created_at": "2026-02-19T12:26:31Z", + "updated_at": "2026-02-19T12:26:31Z" + }, + { + "id": "2026_02_19_verbs_beginners_de_ja_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_de_ja_A1.json", + "language_ids": [ + 15, + 21 + ], + "category": "Verbs - Beginners", + "item_count": 110, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 36313, + "checksum_sha256": "F7DB1E1A043F1CA6F0F0DD95E9B71A8B738EE08A9A331D1D4031F97985B9339A", + "created_at": "2026-02-19T12:27:08Z", + "updated_at": "2026-02-19T12:27:08Z" + }, + { + "id": "2026_02_19_verbs_beginners_de_ko_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_de_ko_A1.json", + "language_ids": [ + 15, + 13 + ], + "category": "Verbs - Beginners", + "item_count": 107, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 34203, + "checksum_sha256": "978ADE47AB147D9EEB26E1D0D0330E64AFF714E9F3CDB2C60356911240A0CBCB", + "created_at": "2026-02-19T12:28:06Z", + "updated_at": "2026-02-19T12:28:06Z" + }, + { + "id": "2026_02_19_verbs_beginners_de_pl_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_de_pl_A1.json", + "language_ids": [ + 15, + 24 + ], + "category": "Verbs - Beginners", + "item_count": 105, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 32406, + "checksum_sha256": "0A388AF93F5876DF49268A9DBAEA5B61019AF3941E4315E0C57FE3868CF250BC", + "created_at": "2026-02-19T12:28:27Z", + "updated_at": "2026-02-19T12:28:27Z" + }, + { + "id": "2026_02_19_verbs_beginners_de_zh_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_de_zh_A1.json", + "language_ids": [ + 15, + 2 + ], + "category": "Verbs - Beginners", + "item_count": 106, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 33168, + "checksum_sha256": "EF11F1DEF7A86752360839661981C6A7F75B126C36A6A96DB97F65AA4511675D", + "created_at": "2026-02-19T12:27:35Z", + "updated_at": "2026-02-19T12:27:35Z" + }, + { + "id": "2026_02_19_verbs_beginners_en_de_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_en_de_A1.json", + "language_ids": [ + 1, + 15 + ], + "category": "Verbs - Beginners", + "item_count": 104, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 31938, + "checksum_sha256": "1A16331DFA4BF3851E152904A488212D9E5FF8B936158E59A1BCC03C09D5627E", + "created_at": "2026-02-19T12:15:59Z", + "updated_at": "2026-02-19T12:15:59Z" + }, + { + "id": "2026_02_19_verbs_beginners_en_es_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_en_es_A1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Verbs - Beginners", + "item_count": 105, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 32040, + "checksum_sha256": "0064767864E7338EA537DA5C3EB30C0BCC004EB3040BEA76B14F7C043BBD1BB4", + "created_at": "2026-02-19T12:14:40Z", + "updated_at": "2026-02-19T12:14:40Z" + }, + { + "id": "2026_02_19_verbs_beginners_en_fr_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_en_fr_A1.json", + "language_ids": [ + 1, + 14 + ], + "category": "Verbs - Beginners", + "item_count": 104, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 31916, + "checksum_sha256": "1F5A9BD416F52A5F285978F95CC0BE2F94F0908839E0FD612438ADAAB6AF6C26", + "created_at": "2026-02-19T12:16:18Z", + "updated_at": "2026-02-19T12:16:18Z" + }, + { + "id": "2026_02_19_verbs_beginners_en_it_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_en_it_A1.json", + "language_ids": [ + 1, + 20 + ], + "category": "Verbs - Beginners", + "item_count": 107, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 32880, + "checksum_sha256": "BA1C4B66E03B7F9CD081F59360626CDB96BE9197A3C882C0580A54FE7BC3FE9A", + "created_at": "2026-02-19T12:16:37Z", + "updated_at": "2026-02-19T12:16:37Z" + }, + { + "id": "2026_02_19_verbs_beginners_en_ja_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_en_ja_A1.json", + "language_ids": [ + 1, + 21 + ], + "category": "Verbs - Beginners", + "item_count": 103, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 33627, + "checksum_sha256": "5892A313E7CDFED351D580928F7A6768312ABB5319F0FB25B7F9E7D32D37CB29", + "created_at": "2026-02-19T12:17:09Z", + "updated_at": "2026-02-19T12:17:09Z" + }, + { + "id": "2026_02_19_verbs_beginners_en_ko_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_en_ko_A1.json", + "language_ids": [ + 1, + 13 + ], + "category": "Verbs - Beginners", + "item_count": 101, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 32179, + "checksum_sha256": "C49B4FEE28DA1DE6B2047F0FB4D28B9CBB9DA5249C31BD61053CEBD1C50E5FA5", + "created_at": "2026-02-19T12:18:02Z", + "updated_at": "2026-02-19T12:18:02Z" + }, + { + "id": "2026_02_19_verbs_beginners_en_pl_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_en_pl_A1.json", + "language_ids": [ + 1, + 24 + ], + "category": "Verbs - Beginners", + "item_count": 104, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 32099, + "checksum_sha256": "796D445D9D74A84683BA26F0BFD2BB5BF1DB5F0E595187657B303B25FB62CF10", + "created_at": "2026-02-19T12:18:30Z", + "updated_at": "2026-02-19T12:18:30Z" + }, + { + "id": "2026_02_19_verbs_beginners_en_pt_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_en_pt_A1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Verbs - Beginners", + "item_count": 103, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 31446, + "checksum_sha256": "D9E9B0E119B02E0218DC2F467181AF9E51475CB41CA8401A752D06E68CAF1D5D", + "created_at": "2026-02-19T12:14:58Z", + "updated_at": "2026-02-19T12:14:58Z" + }, + { + "id": "2026_02_19_verbs_beginners_en_zh_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_en_zh_A1.json", + "language_ids": [ + 1, + 2 + ], + "category": "Verbs - Beginners", + "item_count": 105, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 32673, + "checksum_sha256": "79D17AF092797148EF8E9B762A5279D926B0BAA6DC97A7540AC1619CC0B33198", + "created_at": "2026-02-19T12:17:34Z", + "updated_at": "2026-02-19T12:17:34Z" + }, + { + "id": "2026_02_19_verbs_beginners_es_de_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_es_de_A1.json", + "language_ids": [ + 3, + 15 + ], + "category": "Verbs - Beginners", + "item_count": 106, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 32428, + "checksum_sha256": "F34FE25C032A1AAF4D9AF790989974B6A3D09A969AD67246E0CB3F94B445BC4A", + "created_at": "2026-02-19T12:19:09Z", + "updated_at": "2026-02-19T12:19:09Z" + }, + { + "id": "2026_02_19_verbs_beginners_es_fr_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_es_fr_A1.json", + "language_ids": [ + 3, + 14 + ], + "category": "Verbs - Beginners", + "item_count": 106, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 32413, + "checksum_sha256": "C4573FE6094725EA5284B934DD180AC3193C173FF81629CD9898E8D80E582B34", + "created_at": "2026-02-19T12:19:28Z", + "updated_at": "2026-02-19T12:19:28Z" + }, + { + "id": "2026_02_19_verbs_beginners_es_it_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_es_it_A1.json", + "language_ids": [ + 3, + 20 + ], + "category": "Verbs - Beginners", + "item_count": 110, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 33656, + "checksum_sha256": "7A88CCE0C0A05EF8B48A440DE30FA7381710D9C8E17FCD10E761C99C5E8D996D", + "created_at": "2026-02-19T12:19:48Z", + "updated_at": "2026-02-19T12:19:48Z" + }, + { + "id": "2026_02_19_verbs_beginners_es_ja_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_es_ja_A1.json", + "language_ids": [ + 3, + 21 + ], + "category": "Verbs - Beginners", + "item_count": 107, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 35132, + "checksum_sha256": "FE49603D0D87F0DC16DE863820ECC7B8713BE01EC0A6A60126A70E52D17AC069", + "created_at": "2026-02-19T12:20:23Z", + "updated_at": "2026-02-19T12:20:23Z" + }, + { + "id": "2026_02_19_verbs_beginners_es_ko_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_es_ko_A1.json", + "language_ids": [ + 3, + 13 + ], + "category": "Verbs - Beginners", + "item_count": 108, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 34394, + "checksum_sha256": "1BE04FAB2BC227A78FAE1DA498C3DB39F1A2FCA03C8496E37B20FD2F5F870CF8", + "created_at": "2026-02-19T12:22:35Z", + "updated_at": "2026-02-19T12:22:35Z" + }, + { + "id": "2026_02_19_verbs_beginners_es_pl_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_es_pl_A1.json", + "language_ids": [ + 3, + 24 + ], + "category": "Verbs - Beginners", + "item_count": 109, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 33499, + "checksum_sha256": "5843027E4B633530E45443E7157A6EABA132068A108DB747CD8BB09F186FAEE4", + "created_at": "2026-02-19T12:22:56Z", + "updated_at": "2026-02-19T12:22:56Z" + }, + { + "id": "2026_02_19_verbs_beginners_es_pt_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_es_pt_A1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Verbs - Beginners", + "item_count": 106, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 32201, + "checksum_sha256": "DD90DD7047573BB9A78E8E0553C72964CB0AF82A888C7E72B6DA0E0AED89D0F4", + "created_at": "2026-02-19T12:18:49Z", + "updated_at": "2026-02-19T12:18:49Z" + }, + { + "id": "2026_02_19_verbs_beginners_es_zh_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_es_zh_A1.json", + "language_ids": [ + 3, + 2 + ], + "category": "Verbs - Beginners", + "item_count": 105, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 32672, + "checksum_sha256": "1262621C7A58CAFBDB1973B71BAA1C9266AEA7E8112087ACE0F6B253CEBCC1CC", + "created_at": "2026-02-19T12:22:04Z", + "updated_at": "2026-02-19T12:22:04Z" + }, + { + "id": "2026_02_19_verbs_beginners_fr_it_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_fr_it_A1.json", + "language_ids": [ + 14, + 20 + ], + "category": "Verbs - Beginners", + "item_count": 107, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 32915, + "checksum_sha256": "7D2B7A18E08C0DB3850FBE96C3D4D20B9D43FC13C0176805423A0FCA0F7AD8DE", + "created_at": "2026-02-19T12:28:46Z", + "updated_at": "2026-02-19T12:28:46Z" + }, + { + "id": "2026_02_19_verbs_beginners_fr_ja_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_fr_ja_A1.json", + "language_ids": [ + 14, + 21 + ], + "category": "Verbs - Beginners", + "item_count": 115, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 37731, + "checksum_sha256": "BE5E2E90319F10E3D653C49565AA0F5C8171517E79CEBAA4E2E953376BDBD407", + "created_at": "2026-02-19T12:29:25Z", + "updated_at": "2026-02-19T12:29:25Z" + }, + { + "id": "2026_02_19_verbs_beginners_fr_ko_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_fr_ko_A1.json", + "language_ids": [ + 14, + 13 + ], + "category": "Verbs - Beginners", + "item_count": 106, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 34017, + "checksum_sha256": "D50F3D81CBFD08A24B9E3DE2B3361B0896175324D68A44F6A645D9ACC3E71A6C", + "created_at": "2026-02-19T12:30:24Z", + "updated_at": "2026-02-19T12:30:24Z" + }, + { + "id": "2026_02_19_verbs_beginners_fr_pl_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_fr_pl_A1.json", + "language_ids": [ + 14, + 24 + ], + "category": "Verbs - Beginners", + "item_count": 109, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 33671, + "checksum_sha256": "C835584710786CA0ABBECF133CF4BC85653F0F39E4037E51BAB603B9A5F223B3", + "created_at": "2026-02-19T12:30:47Z", + "updated_at": "2026-02-19T12:30:47Z" + }, + { + "id": "2026_02_19_verbs_beginners_fr_zh_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_fr_zh_A1.json", + "language_ids": [ + 14, + 2 + ], + "category": "Verbs - Beginners", + "item_count": 106, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 33199, + "checksum_sha256": "3FBCC8F37F5A3F22BB218F937159F066186A847BA526F62ECD2A03EB2E9A5473", + "created_at": "2026-02-19T12:29:52Z", + "updated_at": "2026-02-19T12:29:52Z" + }, + { + "id": "2026_02_19_verbs_beginners_it_ja_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_it_ja_A1.json", + "language_ids": [ + 20, + 21 + ], + "category": "Verbs - Beginners", + "item_count": 111, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 36479, + "checksum_sha256": "77DAF3819237DEC78AC9773729AF503D1FFEC552E49B45C4C93491ADDDA14063", + "created_at": "2026-02-19T12:31:25Z", + "updated_at": "2026-02-19T12:31:25Z" + }, + { + "id": "2026_02_19_verbs_beginners_it_ko_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_it_ko_A1.json", + "language_ids": [ + 20, + 13 + ], + "category": "Verbs - Beginners", + "item_count": 104, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 33243, + "checksum_sha256": "36B64156C6C5F7AB011BF0A3CC93586856F2B953C1E18E6838E6375B14C3D827", + "created_at": "2026-02-19T12:32:23Z", + "updated_at": "2026-02-19T12:32:23Z" + }, + { + "id": "2026_02_19_verbs_beginners_it_pl_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_it_pl_A1.json", + "language_ids": [ + 20, + 24 + ], + "category": "Verbs - Beginners", + "item_count": 109, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 33703, + "checksum_sha256": "3023B0AD14AE81C1DE7AA82E71541CCB0D0AA999D744FEDD3AFECA7D85F990BB", + "created_at": "2026-02-19T12:32:45Z", + "updated_at": "2026-02-19T12:32:45Z" + }, + { + "id": "2026_02_19_verbs_beginners_it_zh_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_it_zh_A1.json", + "language_ids": [ + 20, + 2 + ], + "category": "Verbs - Beginners", + "item_count": 106, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 33214, + "checksum_sha256": "24CD509A5DE79167A8C538CD5A2590155B9F5EEC8F876BF61B849A0EE2EB5008", + "created_at": "2026-02-19T12:31:52Z", + "updated_at": "2026-02-19T12:31:52Z" + }, + { + "id": "2026_02_19_verbs_beginners_ja_ko_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_ja_ko_A1.json", + "language_ids": [ + 21, + 13 + ], + "category": "Verbs - Beginners", + "item_count": 109, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 37092, + "checksum_sha256": "39F0DCC4F560C28877971287C68EBAA72477AF606E3A259370F4DB87431845E7", + "created_at": "2026-02-19T12:34:10Z", + "updated_at": "2026-02-19T12:34:10Z" + }, + { + "id": "2026_02_19_verbs_beginners_ja_pl_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_ja_pl_A1.json", + "language_ids": [ + 21, + 24 + ], + "category": "Verbs - Beginners", + "item_count": 109, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 35851, + "checksum_sha256": "907A9374EEA8154152121147EDCE572FCC63063D90E3AA376A68B52BC09720D6", + "created_at": "2026-02-19T12:34:46Z", + "updated_at": "2026-02-19T12:34:46Z" + }, + { + "id": "2026_02_19_verbs_beginners_ja_zh_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_ja_zh_A1.json", + "language_ids": [ + 21, + 2 + ], + "category": "Verbs - Beginners", + "item_count": 106, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 35159, + "checksum_sha256": "FA0BF19E5E367D1A3429DDC2EF21B2C64B478A7506ADEED3B7A60E40F5DB4EC8", + "created_at": "2026-02-19T12:33:25Z", + "updated_at": "2026-02-19T12:33:25Z" + }, + { + "id": "2026_02_19_verbs_beginners_ko_pl_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_ko_pl_A1.json", + "language_ids": [ + 13, + 24 + ], + "category": "Verbs - Beginners", + "item_count": 107, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 34416, + "checksum_sha256": "C6009D4CC12EEDBBEE1BC0B69F69C610675AF9DDB9FB1B9D97E1078E1E55DF80", + "created_at": "2026-02-19T12:37:40Z", + "updated_at": "2026-02-19T12:37:40Z" + }, + { + "id": "2026_02_19_verbs_beginners_pt_de_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_pt_de_A1.json", + "language_ids": [ + 7, + 15 + ], + "category": "Verbs - Beginners", + "item_count": 109, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 33326, + "checksum_sha256": "C54216B6C829AABBDA164ECB270A48CFBCEE95B265F8F065D39EE0EC8A71E505", + "created_at": "2026-02-19T12:23:16Z", + "updated_at": "2026-02-19T12:23:16Z" + }, + { + "id": "2026_02_19_verbs_beginners_pt_fr_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_pt_fr_A1.json", + "language_ids": [ + 7, + 14 + ], + "category": "Verbs - Beginners", + "item_count": 112, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 34185, + "checksum_sha256": "B4D2F91FF6D8FC3E5ECDC133D888BE5838D6ACDA12A263148342F0303C4F68BD", + "created_at": "2026-02-19T12:23:36Z", + "updated_at": "2026-02-19T12:23:36Z" + }, + { + "id": "2026_02_19_verbs_beginners_pt_it_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_pt_it_A1.json", + "language_ids": [ + 7, + 20 + ], + "category": "Verbs - Beginners", + "item_count": 108, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 33011, + "checksum_sha256": "5D6D243E750C2BF0440BAE43A869933D5C62B8D953EEA2D2CF3B47F1A9982744", + "created_at": "2026-02-19T12:23:56Z", + "updated_at": "2026-02-19T12:23:56Z" + }, + { + "id": "2026_02_19_verbs_beginners_pt_ja_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_pt_ja_A1.json", + "language_ids": [ + 7, + 21 + ], + "category": "Verbs - Beginners", + "item_count": 110, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 35907, + "checksum_sha256": "8CE99C976DA3EEE18C02A91A3A5B44A5805BB64E140CA924C2E4BC20698423A5", + "created_at": "2026-02-19T12:24:32Z", + "updated_at": "2026-02-19T12:24:32Z" + }, + { + "id": "2026_02_19_verbs_beginners_pt_ko_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_pt_ko_A1.json", + "language_ids": [ + 7, + 13 + ], + "category": "Verbs - Beginners", + "item_count": 106, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 33659, + "checksum_sha256": "ED3114ABF609E7DA3DF1EF65422DCA412DE3429B1E2768FE2E11477ED25A720C", + "created_at": "2026-02-19T12:25:29Z", + "updated_at": "2026-02-19T12:25:29Z" + }, + { + "id": "2026_02_19_verbs_beginners_pt_pl_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_pt_pl_A1.json", + "language_ids": [ + 7, + 24 + ], + "category": "Verbs - Beginners", + "item_count": 108, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 33227, + "checksum_sha256": "E8CE805FBFBD8DFA144F980ACC2945FA1F9ED53FFFF54A1B20FE3347989D5B17", + "created_at": "2026-02-19T12:25:52Z", + "updated_at": "2026-02-19T12:25:52Z" + }, + { + "id": "2026_02_19_verbs_beginners_pt_zh_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_pt_zh_A1.json", + "language_ids": [ + 7, + 2 + ], + "category": "Verbs - Beginners", + "item_count": 106, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 32949, + "checksum_sha256": "BF396518D80BCC9EAA21D5CC051B46F2E73B8777AB5C68853214F0BF84621A62", + "created_at": "2026-02-19T12:24:59Z", + "updated_at": "2026-02-19T12:24:59Z" + }, + { + "id": "2026_02_19_verbs_beginners_zh_ko_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_zh_ko_A1.json", + "language_ids": [ + 2, + 13 + ], + "category": "Verbs - Beginners", + "item_count": 112, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 36792, + "checksum_sha256": "77D56EAC4F54E7E50F380EEC4767D5C2ED07682D41C1ADFAC5EA949A87A39E6E", + "created_at": "2026-02-19T12:36:41Z", + "updated_at": "2026-02-19T12:36:41Z" + }, + { + "id": "2026_02_19_verbs_beginners_zh_pl_A1", + "name": "Verbs - Beginners", + "description": "The most essential action verbs for absolute beginners — covering daily movement, communication, household tasks, and basic human actions.", + "filename": "2026_02_19_verbs_beginners_zh_pl_A1.json", + "language_ids": [ + 2, + 24 + ], + "category": "Verbs - Beginners", + "item_count": 106, + "level": "A1", + "emoji": "🏃", + "version": 1, + "size_bytes": 33508, + "checksum_sha256": "3ADC0C9C9D49A78F5CC4C1BA0FC695C7B38473207A30044AA454A189586503FA", + "created_at": "2026-02-19T12:37:09Z", + "updated_at": "2026-02-19T12:37:09Z" + }, + { + "id": "2026_02_19_verbs_intermediate_en_es_B1", + "name": "Verbs - Intermediate", + "description": "A broader set of action and state verbs beyond the basics — for intermediate learners building expressive fluency.", + "filename": "2026_02_19_verbs_intermediate_en_es_B1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Verbs - Intermediate", + "item_count": 106, + "level": "B1", + "emoji": "💪", + "version": 1, + "size_bytes": 32442, + "checksum_sha256": "7BCB3C57721F4628EE401E00C007866F8A406939154548B20C1E73CA33C034EE", + "created_at": "2026-02-19T15:48:05Z", + "updated_at": "2026-02-19T15:48:05Z" + }, + { + "id": "2026_02_19_verbs_intermediate_en_pt_B1", + "name": "Verbs - Intermediate", + "description": "A broader set of action and state verbs beyond the basics — for intermediate learners building expressive fluency.", + "filename": "2026_02_19_verbs_intermediate_en_pt_B1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Verbs - Intermediate", + "item_count": 112, + "level": "B1", + "emoji": "💪", + "version": 1, + "size_bytes": 34262, + "checksum_sha256": "EC162F4E424DDE198EE219DB728D33A2B54B843B3549E4B203513BB53033D952", + "created_at": "2026-02-19T15:48:25Z", + "updated_at": "2026-02-19T15:48:25Z" + }, + { + "id": "2026_02_19_verbs_intermediate_es_pt_B1", + "name": "Verbs - Intermediate", + "description": "A broader set of action and state verbs beyond the basics — for intermediate learners building expressive fluency.", + "filename": "2026_02_19_verbs_intermediate_es_pt_B1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Verbs - Intermediate", + "item_count": 110, + "level": "B1", + "emoji": "💪", + "version": 1, + "size_bytes": 33811, + "checksum_sha256": "30C9C72DFF095F752E30E5FB975726BDCA476B6972643B88E12932408181993E", + "created_at": "2026-02-19T15:48:47Z", + "updated_at": "2026-02-19T15:48:47Z" + }, + { + "id": "2026_02_19_weather_seasons_de_fr_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_de_fr_A1.json", + "language_ids": [ + 15, + 14 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15561, + "checksum_sha256": "65F795316753E9C130E9713572B0F44E02A4770051AD08AC13A65B00220EBA42", + "created_at": "2026-02-19T15:13:42Z", + "updated_at": "2026-02-19T15:13:42Z" + }, + { + "id": "2026_02_19_weather_seasons_de_it_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_de_it_A1.json", + "language_ids": [ + 15, + 20 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15627, + "checksum_sha256": "652BB854177F258FFBE2B84DAC62C8082A1B16C0B973C30C4B8280D2FE349325", + "created_at": "2026-02-19T15:13:53Z", + "updated_at": "2026-02-19T15:13:53Z" + }, + { + "id": "2026_02_19_weather_seasons_de_ja_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_de_ja_A1.json", + "language_ids": [ + 15, + 21 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 16285, + "checksum_sha256": "302BC561661AF350411CF2F6CC499BDCC3FE50256C6C4744914EAD56AF7FB7AA", + "created_at": "2026-02-19T15:14:10Z", + "updated_at": "2026-02-19T15:14:10Z" + }, + { + "id": "2026_02_19_weather_seasons_de_ko_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_de_ko_A1.json", + "language_ids": [ + 15, + 13 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 16053, + "checksum_sha256": "FA1E9B74F46B32C304BD9B9AC8E7DDF4EE581819B1F546DEEC2DFBBAD734DAF5", + "created_at": "2026-02-19T15:14:38Z", + "updated_at": "2026-02-19T15:14:38Z" + }, + { + "id": "2026_02_19_weather_seasons_de_pl_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_de_pl_A1.json", + "language_ids": [ + 15, + 24 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15649, + "checksum_sha256": "64CDE90387AECA4FAA3A10E0359E62FC06C30504B4A76E4DAACD4CCFA35876C2", + "created_at": "2026-02-19T15:14:50Z", + "updated_at": "2026-02-19T15:14:50Z" + }, + { + "id": "2026_02_19_weather_seasons_de_zh_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_de_zh_A1.json", + "language_ids": [ + 15, + 2 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15873, + "checksum_sha256": "EF866181B1EC582D2752EED103505B8B2350FBBDE6A92671F6C02FFCB38D9962", + "created_at": "2026-02-19T15:14:23Z", + "updated_at": "2026-02-19T15:14:23Z" + }, + { + "id": "2026_02_19_weather_seasons_en_de_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_en_de_A1.json", + "language_ids": [ + 1, + 15 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15394, + "checksum_sha256": "E06CB6E5FB49321B30A9B196853A8626A7411B1B944BE8E6A60842C8F241B384", + "created_at": "2026-02-19T15:09:16Z", + "updated_at": "2026-02-19T15:09:16Z" + }, + { + "id": "2026_02_19_weather_seasons_en_es_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_en_es_A1.json", + "language_ids": [ + 1, + 3 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15365, + "checksum_sha256": "830B43A25407A962C581AFBC6EF12E9F4E1B481CF80449161D7DDAE5B0B5CA9A", + "created_at": "2026-02-19T15:08:57Z", + "updated_at": "2026-02-19T15:08:57Z" + }, + { + "id": "2026_02_19_weather_seasons_en_fr_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_en_fr_A1.json", + "language_ids": [ + 1, + 14 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15409, + "checksum_sha256": "C7A6A319AFAB09DD5320C0FC22AD84DFD86389A4355AA1D8A271B122B8B35FB2", + "created_at": "2026-02-19T15:09:25Z", + "updated_at": "2026-02-19T15:09:25Z" + }, + { + "id": "2026_02_19_weather_seasons_en_it_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_en_it_A1.json", + "language_ids": [ + 1, + 20 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15437, + "checksum_sha256": "5BCFF00B3824081CC4907033C2B3249916F45219797FC8BDA7B3C6C546485198", + "created_at": "2026-02-19T15:09:34Z", + "updated_at": "2026-02-19T15:09:34Z" + }, + { + "id": "2026_02_19_weather_seasons_en_ja_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_en_ja_A1.json", + "language_ids": [ + 1, + 21 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 16275, + "checksum_sha256": "036337EFF2E41041AF91F49DDD151F3830A129051715A5AA860B7721206BA629", + "created_at": "2026-02-19T15:09:49Z", + "updated_at": "2026-02-19T15:09:49Z" + }, + { + "id": "2026_02_19_weather_seasons_en_ko_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_en_ko_A1.json", + "language_ids": [ + 1, + 13 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15927, + "checksum_sha256": "E41641F70F442B7CB665CF8AB505E1FB8E635ED2121CCC5085A07F075138C911", + "created_at": "2026-02-19T15:10:16Z", + "updated_at": "2026-02-19T15:10:16Z" + }, + { + "id": "2026_02_19_weather_seasons_en_pl_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_en_pl_A1.json", + "language_ids": [ + 1, + 24 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15447, + "checksum_sha256": "929FE89C000B000F8A8FBAF1246464E050A6E7FE4E67AA83F87CC0139289D366", + "created_at": "2026-02-19T15:10:27Z", + "updated_at": "2026-02-19T15:10:27Z" + }, + { + "id": "2026_02_19_weather_seasons_en_pt_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_en_pt_A1.json", + "language_ids": [ + 1, + 7 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15364, + "checksum_sha256": "7BF845B5B8524185EC0983CEFADED7466584E6DAC6ECFAF270EBD8F2A0C6960A", + "created_at": "2026-02-19T15:09:07Z", + "updated_at": "2026-02-19T15:09:07Z" + }, + { + "id": "2026_02_19_weather_seasons_en_zh_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_en_zh_A1.json", + "language_ids": [ + 1, + 2 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15795, + "checksum_sha256": "B72142AF7776A8C961FDF9241F539488A73D0034AA4CCCA40824D7BD8828768D", + "created_at": "2026-02-19T15:10:02Z", + "updated_at": "2026-02-19T15:10:02Z" + }, + { + "id": "2026_02_19_weather_seasons_es_de_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_es_de_A1.json", + "language_ids": [ + 3, + 15 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15441, + "checksum_sha256": "DA51120F929C53AC7312620AB457D907EAD489DFB7E45FEFEB3DE741417C5DD8", + "created_at": "2026-02-19T15:10:47Z", + "updated_at": "2026-02-19T15:10:47Z" + }, + { + "id": "2026_02_19_weather_seasons_es_fr_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_es_fr_A1.json", + "language_ids": [ + 3, + 14 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15497, + "checksum_sha256": "AA538C15E73BE0F6E8652E49CA5164B97F0151457CEB761DD66EA3BBD11C0AD6", + "created_at": "2026-02-19T15:10:58Z", + "updated_at": "2026-02-19T15:10:58Z" + }, + { + "id": "2026_02_19_weather_seasons_es_it_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_es_it_A1.json", + "language_ids": [ + 3, + 20 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15509, + "checksum_sha256": "B8B09BEE00942F0F08F67072BC5E48D77E2E05E46308751783B4F6EA7E096DCA", + "created_at": "2026-02-19T15:11:08Z", + "updated_at": "2026-02-19T15:11:08Z" + }, + { + "id": "2026_02_19_weather_seasons_es_ja_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_es_ja_A1.json", + "language_ids": [ + 3, + 21 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 16366, + "checksum_sha256": "EA881F020C4106AE5718F56EE01D95DB0F73BEA4058F688C0C9EC7467D061FA4", + "created_at": "2026-02-19T15:11:25Z", + "updated_at": "2026-02-19T15:11:25Z" + }, + { + "id": "2026_02_19_weather_seasons_es_ko_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_es_ko_A1.json", + "language_ids": [ + 3, + 13 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15845, + "checksum_sha256": "1E7733AED1304643DAA7B8A13F8E76C376E2123C0E8193176F215BFA6A87FAC9", + "created_at": "2026-02-19T15:11:53Z", + "updated_at": "2026-02-19T15:11:53Z" + }, + { + "id": "2026_02_19_weather_seasons_es_pl_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_es_pl_A1.json", + "language_ids": [ + 3, + 24 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15463, + "checksum_sha256": "A8C38197DB31467FFFBA5ED10308323197E3EEECB2C753B77D6245D2D9A3283C", + "created_at": "2026-02-19T15:12:04Z", + "updated_at": "2026-02-19T15:12:04Z" + }, + { + "id": "2026_02_19_weather_seasons_es_pt_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_es_pt_A1.json", + "language_ids": [ + 3, + 7 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15374, + "checksum_sha256": "39CDC083E75A49E8CF50AF997BA53F0576A1CF18FE8A3D7042472015444EC1F4", + "created_at": "2026-02-19T15:10:37Z", + "updated_at": "2026-02-19T15:10:37Z" + }, + { + "id": "2026_02_19_weather_seasons_es_zh_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_es_zh_A1.json", + "language_ids": [ + 3, + 2 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15838, + "checksum_sha256": "B467935DBAAD7841D67C473CA123542FEBA8F12BDEA66722F4755F8F3B65D434", + "created_at": "2026-02-19T15:11:39Z", + "updated_at": "2026-02-19T15:11:39Z" + }, + { + "id": "2026_02_19_weather_seasons_fr_it_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_fr_it_A1.json", + "language_ids": [ + 14, + 20 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15551, + "checksum_sha256": "50CFCBF809D6EB4B576745DEB2FD955B872006D8AD173DA316902BEEE6FC7A4C", + "created_at": "2026-02-19T15:15:00Z", + "updated_at": "2026-02-19T15:15:00Z" + }, + { + "id": "2026_02_19_weather_seasons_fr_ja_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_fr_ja_A1.json", + "language_ids": [ + 14, + 21 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 16522, + "checksum_sha256": "152C4F52D5E11660B79596441027141D6FAA0EB00D5B9B041F5BA51A36E950B9", + "created_at": "2026-02-19T15:15:17Z", + "updated_at": "2026-02-19T15:15:17Z" + }, + { + "id": "2026_02_19_weather_seasons_fr_ko_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_fr_ko_A1.json", + "language_ids": [ + 14, + 13 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 16046, + "checksum_sha256": "AB9885CAF2954FED31DA4AF858ED0BD77C0C381410B337ABF7A2472E42B249E1", + "created_at": "2026-02-19T15:15:46Z", + "updated_at": "2026-02-19T15:15:46Z" + }, + { + "id": "2026_02_19_weather_seasons_fr_pl_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_fr_pl_A1.json", + "language_ids": [ + 14, + 24 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15625, + "checksum_sha256": "C33FED5C0D2965E876F077D737768ED4880910E26957401F729C233EFB1D64E2", + "created_at": "2026-02-19T15:15:58Z", + "updated_at": "2026-02-19T15:15:58Z" + }, + { + "id": "2026_02_19_weather_seasons_fr_zh_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_fr_zh_A1.json", + "language_ids": [ + 14, + 2 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15835, + "checksum_sha256": "3AA30C134292098778C0D8194DD1162F385E3132C26E42FA5754DC304B700DB4", + "created_at": "2026-02-19T15:15:31Z", + "updated_at": "2026-02-19T15:15:31Z" + }, + { + "id": "2026_02_19_weather_seasons_it_ja_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_it_ja_A1.json", + "language_ids": [ + 20, + 21 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 16447, + "checksum_sha256": "5EB2B890319F2D48815D7CB70F08BCFCF3FAD40EB9D11B65557161639DBBA7E5", + "created_at": "2026-02-19T15:16:15Z", + "updated_at": "2026-02-19T15:16:15Z" + }, + { + "id": "2026_02_19_weather_seasons_it_ko_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_it_ko_A1.json", + "language_ids": [ + 20, + 13 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15949, + "checksum_sha256": "90DF575097DB5F7642411B4AD6FE9A733E535419159070A5206425828295D6A3", + "created_at": "2026-02-19T15:16:43Z", + "updated_at": "2026-02-19T15:16:43Z" + }, + { + "id": "2026_02_19_weather_seasons_it_pl_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_it_pl_A1.json", + "language_ids": [ + 20, + 24 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15526, + "checksum_sha256": "73F6ED03B1156EBB1319CBCC11AA0948EB69F64F8C787D90CA139C11140A6903", + "created_at": "2026-02-19T15:16:53Z", + "updated_at": "2026-02-19T15:16:53Z" + }, + { + "id": "2026_02_19_weather_seasons_it_zh_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_it_zh_A1.json", + "language_ids": [ + 20, + 2 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15867, + "checksum_sha256": "52E54449172B0A419E1AA0F5A0734F62B12E0C03C780A2464A2D7BF376DC5D51", + "created_at": "2026-02-19T15:16:28Z", + "updated_at": "2026-02-19T15:16:28Z" + }, + { + "id": "2026_02_19_weather_seasons_ja_ko_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_ja_ko_A1.json", + "language_ids": [ + 21, + 13 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 17010, + "checksum_sha256": "3C1459FB26AE60BE189C5699D20444C3B0DC68701B6F9A2CF5A1116DE216E8F6", + "created_at": "2026-02-19T15:17:36Z", + "updated_at": "2026-02-19T15:17:36Z" + }, + { + "id": "2026_02_19_weather_seasons_ja_pl_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_ja_pl_A1.json", + "language_ids": [ + 21, + 24 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 16590, + "checksum_sha256": "D093CDBF488C2AA9672514B30AFFC5598F2C4D039C795BD3F65B5A61DF43CB26", + "created_at": "2026-02-19T15:17:53Z", + "updated_at": "2026-02-19T15:17:53Z" + }, + { + "id": "2026_02_19_weather_seasons_ja_zh_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_ja_zh_A1.json", + "language_ids": [ + 21, + 2 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 16975, + "checksum_sha256": "5B515EDC6A163B59AF86586DD10B82865DF11072A6BAD9D6DB5EBD2F88D87FF5", + "created_at": "2026-02-19T15:17:14Z", + "updated_at": "2026-02-19T15:17:14Z" + }, + { + "id": "2026_02_19_weather_seasons_ko_pl_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_ko_pl_A1.json", + "language_ids": [ + 13, + 24 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 16188, + "checksum_sha256": "79E935D7AD13EA390EF4F3850C9E5E86EEBC97C36EB2FC66DF7D30CD451A4E63", + "created_at": "2026-02-19T15:18:41Z", + "updated_at": "2026-02-19T15:18:41Z" + }, + { + "id": "2026_02_19_weather_seasons_pt_de_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_pt_de_A1.json", + "language_ids": [ + 7, + 15 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15426, + "checksum_sha256": "5B7758DFA5BC0A8C419B35D8F2558DA609CFD3DAE9B349FDB11BA171B53BFE8A", + "created_at": "2026-02-19T15:12:15Z", + "updated_at": "2026-02-19T15:12:15Z" + }, + { + "id": "2026_02_19_weather_seasons_pt_fr_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_pt_fr_A1.json", + "language_ids": [ + 7, + 14 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15471, + "checksum_sha256": "4E11E68526F779E6394A32B6DC3C05E1B9CDD2862698E17CDC7037748201C04D", + "created_at": "2026-02-19T15:12:25Z", + "updated_at": "2026-02-19T15:12:25Z" + }, + { + "id": "2026_02_19_weather_seasons_pt_it_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_pt_it_A1.json", + "language_ids": [ + 7, + 20 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15453, + "checksum_sha256": "58C7861CE83AD234F417DBAFF4BF2D7FCFA00116037FE2112E0B42D3F8E4807E", + "created_at": "2026-02-19T15:12:35Z", + "updated_at": "2026-02-19T15:12:35Z" + }, + { + "id": "2026_02_19_weather_seasons_pt_ja_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_pt_ja_A1.json", + "language_ids": [ + 7, + 21 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 16403, + "checksum_sha256": "32F5833BC3B09F5C26FE691CDD8BAB36337D19C8528D9BE172E8F2B462FE3565", + "created_at": "2026-02-19T15:12:53Z", + "updated_at": "2026-02-19T15:12:53Z" + }, + { + "id": "2026_02_19_weather_seasons_pt_ko_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_pt_ko_A1.json", + "language_ids": [ + 7, + 13 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15925, + "checksum_sha256": "17382A2491F6EF114F2F33C496ADC9BAC1BE0468BB20CC86FB1D8E2A6A7E1608", + "created_at": "2026-02-19T15:13:21Z", + "updated_at": "2026-02-19T15:13:21Z" + }, + { + "id": "2026_02_19_weather_seasons_pt_pl_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_pt_pl_A1.json", + "language_ids": [ + 7, + 24 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15465, + "checksum_sha256": "86FCB40A6A9C9FE2E80F916CFEFEC32B0CDA5226758F02334055139E16089DD7", + "created_at": "2026-02-19T15:13:32Z", + "updated_at": "2026-02-19T15:13:32Z" + }, + { + "id": "2026_02_19_weather_seasons_pt_zh_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_pt_zh_A1.json", + "language_ids": [ + 7, + 2 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 15825, + "checksum_sha256": "8392370A5C092421B06087F421D267F18587C9E74D6AEE14A76BF3AA146CB6E6", + "created_at": "2026-02-19T15:13:06Z", + "updated_at": "2026-02-19T15:13:06Z" + }, + { + "id": "2026_02_19_weather_seasons_zh_ko_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_zh_ko_A1.json", + "language_ids": [ + 2, + 13 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 16488, + "checksum_sha256": "0EAB4148FEAC53A5ED33BF99D77CC9FFA264558D60E53BC67392CDC6E28436BE", + "created_at": "2026-02-19T15:18:12Z", + "updated_at": "2026-02-19T15:18:12Z" + }, + { + "id": "2026_02_19_weather_seasons_zh_pl_A1", + "name": "Weather & Seasons", + "description": "Weather conditions, climate vocabulary, and seasonal expressions for everyday conversation.", + "filename": "2026_02_19_weather_seasons_zh_pl_A1.json", + "language_ids": [ + 2, + 24 + ], + "category": "Weather & Seasons", + "item_count": 50, + "level": "A1", + "emoji": "🌤️", + "version": 1, + "size_bytes": 16021, + "checksum_sha256": "C9F8E7CB8AB380AB88CBE50351DE4AA07E9C2469B3F9085B24E06804D187BDC9", + "created_at": "2026-02-19T15:18:26Z", + "updated_at": "2026-02-19T15:18:26Z" + } + ] +} \ No newline at end of file diff --git a/polly_import_med_extra.json b/polly_import_med_extra.json new file mode 100644 index 0000000..13ccd13 --- /dev/null +++ b/polly_import_med_extra.json @@ -0,0 +1,71 @@ +{ + "type": "Category", + "exportDate": "2026-02-18T20:06:24.623Z", + "metadata": { + "itemCount": 4, + "categoryCount": 1, + "exportScope": "Category: termos médicos - extra" + }, + "category": { + "type": "TagCategory", + "id": 99999, + "name": "termos médicos - extra" + }, + "items": [ + { + "id": 100000, + "languageFirstId": 15, + "languageSecondId": 7, + "wordFirst": "Krankenwagen", + "wordSecond": "ambulância", + "createdAt": "2026-02-18T20:06:24.623Z", + "features": "{}" + }, + { + "id": 100001, + "languageFirstId": 15, + "languageSecondId": 7, + "wordFirst": "Blutdruck", + "wordSecond": "pressão arterial", + "createdAt": "2026-02-18T20:06:24.623Z", + "features": "{}" + }, + { + "id": 100002, + "languageFirstId": 15, + "languageSecondId": 7, + "wordFirst": "Rollstuhl", + "wordSecond": "cadeira de rodas", + "createdAt": "2026-02-18T20:06:24.623Z", + "features": "{}" + }, + { + "id": 100003, + "languageFirstId": 15, + "languageSecondId": 7, + "wordFirst": "Fieberthermometer", + "wordSecond": "termômetro", + "createdAt": "2026-02-18T20:06:24.623Z", + "features": "{}" + } + ], + "states": [], + "stageMappings": [ + { + "vocabularyItemId": 100000, + "stage": "NEW" + }, + { + "vocabularyItemId": 100001, + "stage": "NEW" + }, + { + "vocabularyItemId": 100002, + "stage": "NEW" + }, + { + "vocabularyItemId": 100003, + "stage": "NEW" + } + ] +} \ No newline at end of file diff --git a/prune_manifest.py b/prune_manifest.py new file mode 100644 index 0000000..f0b5b9e --- /dev/null +++ b/prune_manifest.py @@ -0,0 +1,64 @@ +""" +VocabListGenerator — Manifest cleaner +---------------------------------------- +Removes entries from vocab_manifest.json whose output files no longer +exist on disk. Reads output_dir and manifest filename from batch.yaml +(falls back to sensible defaults if batch.yaml is missing). + +Usage: + python prune_manifest.py +""" + +import os +import sys + +import yaml + +from manifest_manager import prune_missing_files, print_manifest + + +def main() -> None: + # ── Resolve paths from batch.yaml (or defaults) ────────────────────────── + script_dir = os.path.dirname(os.path.abspath(__file__)) + + batch_yaml = os.path.join(script_dir, "batch.yaml") + output_dir = "output" + manifest_file = "vocab_manifest.json" + + if os.path.isfile(batch_yaml): + try: + with open(batch_yaml, "r", encoding="utf-8") as f: + cfg = yaml.safe_load(f) or {} + settings = cfg.get("settings", {}) + output_dir = settings.get("output_dir", output_dir) + manifest_file = settings.get("manifest_filename", manifest_file) + except yaml.YAMLError as e: + print(f" WARNING: Could not parse batch.yaml ({e}), using defaults.") + + output_dir = os.path.join(script_dir, output_dir) + manifest_path = os.path.join(output_dir, manifest_file) + + # ── Run prune ───────────────────────────────────────────────────────────── + print("=" * 50) + print(" VocabListGenerator — Manifest Cleaner") + print("=" * 50) + print(f" Manifest : {manifest_path}") + print(f" Output : {output_dir}") + print() + + if not os.path.isfile(manifest_path): + print(" No manifest file found — nothing to do.") + sys.exit(0) + + removed = prune_missing_files(manifest_path, output_dir) + + if removed == 0: + print(" Manifest is already clean — no stale entries found.") + else: + print() + + print_manifest(manifest_path) + + +if __name__ == "__main__": + main()